Aracılığıyla paylaş


ReportExecutionService.ServerInfoHeaderValue Özelliği

Rapor sunucusu hakkında bilgi verir.

Ad Alanı:  ReportExecution2005
Derleme:  ReportExecution2005 (ReportExecution2005 içinde.dll)

Sözdizimi

'Bildirim
Public Property ServerInfoHeaderValue As ServerInfoHeader
    Get
    Set
'Kullanım
Dim instance As ReportExecutionService
Dim value As ServerInfoHeader

value = instance.ServerInfoHeaderValue

instance.ServerInfoHeaderValue = value
public ServerInfoHeader ServerInfoHeaderValue { get; set; }
public:
property ServerInfoHeader^ ServerInfoHeaderValue {
    ServerInfoHeader^ get ();
    void set (ServerInfoHeader^ value);
}
member ServerInfoHeaderValue : ServerInfoHeader with get, set
function get ServerInfoHeaderValue () : ServerInfoHeader
function set ServerInfoHeaderValue (value : ServerInfoHeader)

Özellik Değeri

Tür: ReportExecution2005.ServerInfoHeader
A ServerInfoHeader nesnesini içeren bilgiler hakkında rapor sunucusu.

Açıklamalar

Kullanabileceğiniz ServerInfoHeaderValue döndürülen nesne tarafından bu özellik alma server sürüm ve sürüm numarası.

Örnekler

Aşağıdaki kod örneği derlemek için Raporlama Hizmetleri wsdl başvuran ve belirli ad alanları almak gerekir.Daha fazla bilgi için, bkz. Compiling and Running Code Examples.Aşağıdaki kod örneği, Web'de arama yapar hizmet ve daha sonra sunucu bilgilerini soap başlığında alır:

Imports System
Imports myNamespace.myWebserviceReference


Class Sample
    Shared Sub Main()
        ' Create proxy object and set service credentials to integrated
        Dim rs As New ReportExecutionService()
        rs.Credentials = System.Net.CredentialCache.DefaultCredentials

      ' Set the base Web service URL of the source server
      rs.Url = "https://servername/reportserver/ReportExecution2005.asmx"

        Try
            ' Set the server info header 
            rs.ServerInfoHeaderValue = New ServerInfoHeader()

            ' Make a call to the Web service
            Dim secureMethods() = rs.ListSecureMethods()

            ' Output the server version and edition to the console
            Console.WriteLine("Server version: {0}", rs.ServerInfoHeaderValue.ReportServerVersionNumber)
            Console.WriteLine("Server edition: {0}", rs.ServerInfoHeaderValue.ReportServerEdition)

        Catch e As Exception
            Console.WriteLine(e.Message)
        End Try
    End Sub 'Main
End Class 'Sample
using System;
using myNameSpace.myWebServiceReference;

class Sample
{
   static void Main()
   {
      // Create proxy object and set service credentials to integrated
      ReportExecutionService rs = new ReportExecutionService();
      rs.Credentials = System.Net.CredentialCache.DefaultCredentials;

      // Set the base Web service URL of the source server
      rs.Url = "https://servername/reportserver/ReportExecution2005.asmx";

      try
      {
         // Set the server info header 
         rs.ServerInfoHeaderValue = new ServerInfoHeader();

         // Make a call to the Web service
         string secureMethods[] = rs.ListSecureMethods();

         // Output the server version and edition to the console
         Console.WriteLine("Server version: {0}", 
            rs.ServerInfoHeaderValue.ReportServerVersionNumber);
         Console.WriteLine("Server edition: {0}", 
            rs.ServerInfoHeaderValue.ReportServerEdition);
      }

      catch (Exception e)
      {
         Console.WriteLine(e.Message);
      }
   }
}