ContractReference.Contract Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
ServiceDescription Pobiera obiekt reprezentujący opis usługi.
public:
property System::Web::Services::Description::ServiceDescription ^ Contract { System::Web::Services::Description::ServiceDescription ^ get(); };
public System.Web.Services.Description.ServiceDescription Contract { get; }
member this.Contract : System.Web.Services.Description.ServiceDescription
Public ReadOnly Property Contract As ServiceDescription
Wartość właściwości
ServiceDescription Obiekt reprezentujący opis usługi.
Wyjątki
ClientProtocol właściwość to null
.
Właściwość Documents elementu ClientProtocol nie zawiera dokumentu odnajdywania z adresem URL Url.
Przykłady
int main()
{
try
{
// Create the file stream.
FileStream^ discoStream = gcnew FileStream( "Service1_CS.disco",FileMode::Open );
// Create the discovery document.
DiscoveryDocument^ myDiscoveryDocument = DiscoveryDocument::Read( discoStream );
// Get the first ContractReference in the collection.
ContractReference^ myContractReference = dynamic_cast<ContractReference^>(myDiscoveryDocument->References[ 0 ]);
// Set the client protocol.
myContractReference->ClientProtocol = gcnew DiscoveryClientProtocol;
myContractReference->ClientProtocol->Credentials = CredentialCache::DefaultCredentials;
// Get the service description.
ServiceDescription^ myContract = myContractReference->Contract;
// Create the service description file.
myContract->Write( "MyService1.wsdl" );
Console::WriteLine( "The WSDL file created is MyService1.wsdl" );
discoStream->Close();
}
catch ( Exception^ ex )
{
Console::WriteLine( "Exception: {0}", ex->Message );
}
}
class MyClass1
{
static void Main()
{
try
{
// Create the file stream.
FileStream discoStream =
new FileStream("Service1_CS.disco",FileMode.Open);
// Create the discovery document.
DiscoveryDocument myDiscoveryDocument =
DiscoveryDocument.Read(discoStream);
// Get the first ContractReference in the collection.
ContractReference myContractReference =
(ContractReference)myDiscoveryDocument.References[0];
// Set the client protocol.
myContractReference.ClientProtocol = new DiscoveryClientProtocol();
myContractReference.ClientProtocol.Credentials =
CredentialCache.DefaultCredentials;
// Get the service description.
ServiceDescription myContract = myContractReference.Contract;
// Create the service description file.
myContract.Write("MyService1.wsdl");
Console.WriteLine("The WSDL file created is MyService1.wsdl");
discoStream.Close();
}
catch(Exception ex)
{
Console.WriteLine("Exception: " + ex.Message);
}
}
}
Class MyClass1
Shared Sub Main()
Try
' Create the file stream.
Dim discoStream As _
New FileStream("Service1_vb.disco", FileMode.Open)
' Create the discovery document.
Dim myDiscoveryDocument As _
DiscoveryDocument = DiscoveryDocument.Read(discoStream)
' Get the first ContractReference in the collection.
Dim myContractReference As ContractReference = _
CType(myDiscoveryDocument.References(0), ContractReference)
' Set the client protocol.
myContractReference.ClientProtocol = New DiscoveryClientProtocol()
myContractReference.ClientProtocol.Credentials = _
CredentialCache.DefaultCredentials
' Get the service description.
Dim myContract As ServiceDescription = myContractReference.Contract
' Create the service description file.
myContract.Write("MyService1.wsdl")
Console.WriteLine("The WSDL file created is MyService1.wsdl")
discoStream.Close()
Catch ex As Exception
Console.WriteLine("Exception: " + ex.Message)
End Try
End Sub
End Class
Dotyczy
Zobacz też
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.