ServiceDescriptionCollection.GetMessage(XmlQualifiedName) Metoda
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.
Wyszukuje ServiceDescriptionCollection element i zwraca Message określoną nazwę, która jest elementem członkowskim jednego z ServiceDescription wystąpień zawartych w kolekcji.
public:
System::Web::Services::Description::Message ^ GetMessage(System::Xml::XmlQualifiedName ^ name);
public System.Web.Services.Description.Message GetMessage (System.Xml.XmlQualifiedName name);
member this.GetMessage : System.Xml.XmlQualifiedName -> System.Web.Services.Description.Message
Public Function GetMessage (name As XmlQualifiedName) As Message
Parametry
- name
- XmlQualifiedName
Element XmlQualifiedName, przekazany przez odwołanie, którego Name właściwość jest współużytkowana przez zwróconą Message wartość.
Zwraca
Komunikat o określonej nazwie.
Wyjątki
Określona Message
wartość nie jest członkiem żadnych ServiceDescription wystąpień w kolekcji.
Przykłady
// Construct an XML qualified name.
XmlQualifiedName^ myXmlQualifiedName =
gcnew XmlQualifiedName( "AddSoapIn","http://tempuri2.org/" );
// Get the Message from the collection.
myCollection->GetMessage( myXmlQualifiedName );
// Construct an XML qualified name.
XmlQualifiedName myXmlQualifiedName =
new XmlQualifiedName("AddSoapIn", "http://tempuri2.org/");
// Get the Message from the collection.
Message myMessage = myCollection.GetMessage(myXmlQualifiedName);
' Construct an XML qualified name.
Dim myXmlQualifiedName As _
New XmlQualifiedName("AddSoapIn", "http://tempuri2.org/")
' Get the Message from the collection.
Dim myMessage As Message = myCollection.GetMessage(myXmlQualifiedName)