ServiceDescriptionCollection.GetMessage(XmlQualifiedName) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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)
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET