ReportingService2005.ListSecureMethods 메서드

Returns a list of SOAP methods that require a secure connection when invoked.

네임스페이스:  ReportService2005
어셈블리:  ReportService2005(ReportService2005.dll)

구문

‘선언
Public Function ListSecureMethods As String()
‘사용 방법
Dim instance As ReportingService2005 
Dim returnValue As String()

returnValue = instance.ListSecureMethods()
public string[] ListSecureMethods()
public:
array<String^>^ ListSecureMethods()
member ListSecureMethods : unit -> string[] 
public function ListSecureMethods() : String[]

반환 값

유형: array<System.String[]
An array of String objects containing the names of methods that require a secure connection.

주의

The table below shows header and permissions information on this operation.

SOAP Headers

(Out) ServerInfoHeaderValue

Required Permissions

None

The SecureConnectionLevel setting for the report server determines the list of SOAP methods that are returned by the ListSecureMethods method. For more information, see 보안 웹 서비스 메서드 사용.

To compile this code example, you must reference the Reporting Services WSDL and import certain namespaces. For more information, see Compiling and Running Code Examples. The following code example uses the ListSecureMethods method to retrieve the methods that currently require a secure connection:

Imports System

Class Sample
   Public Shared Sub Main()
      Dim rs As New ReportingService2005()
      rs.Credentials = System.Net.CredentialCache.DefaultCredentials

      Dim methods As String() = rs.ListSecureMethods()

      If Not (methods Is Nothing) Then
         Dim method As String
         For Each method In  methods
            Console.WriteLine(method)
         Next method
      End If
   End Sub 'Main
End Class 'Sample
using System;

class Sample
{
   public static void Main()
   {
      ReportingService2005 rs = new ReportingService2005();
      rs.Credentials = System.Net.CredentialCache.DefaultCredentials;

      string[] methods = rs.ListSecureMethods();

      if (methods != null)
      {
         foreach (string method in methods)
         {
            Console.WriteLine(method);
         }
      }
   }
}

The SecureConnectionLevel configuration file setting determines the list of methods that are returned.

참고 항목

참조

ReportingService2005 클래스

ReportService2005 네임스페이스