Поделиться через


ServiceDescriptionCollection.GetMessage(XmlQualifiedName) Метод

Определение

Находит в коллекции ServiceDescriptionCollection и возвращает объект Message с заданным именем, который является членом одного из экземпляров класса ServiceDescription, содержащихся в этой коллекции.

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

Параметры

name
XmlQualifiedName

Объект XmlQualifiedName, передаваемый по ссылке, свойство Name которого также используется возвращенным объектом Message.

Возвращаемое значение

Сообщение с заданным именем.

Исключения

Заданный параметр Message не является членом ни одного из экземпляров ServiceDescription в коллекции.

Примеры

// 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)

Применяется к