SoapHeaderAttribute.MemberName 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SOAP 헤더 내용을 나타내는 XML Web services 클래스의 멤버를 가져오거나 설정합니다.
public:
property System::String ^ MemberName { System::String ^ get(); void set(System::String ^ value); };
public string MemberName { get; set; }
member this.MemberName : string with get, set
Public Property MemberName As String
속성 값
SOAP 헤더 내용을 나타내는 XML Web services 클래스의 멤버로, 기본값은 없습니다.
예제
다음 MyWebService
XML 웹 서비스는 형식 MyHeader
중 하나를 SoapHeader 정의합니다. XML Web services 메서드는 Hello
XML 웹 서비스 메서드에 전달된 SOAP 헤더의 MyHeader
콘텐츠를 받을 속성으로 MemberName 멤버를 지정 myHeader
합니다.
#using <System.EnterpriseServices.dll>
#using <System.Web.Services.dll>
using namespace System;
using namespace System::Web::Services;
using namespace System::Web::Services::Protocols;
// Define a SOAP header by deriving from the SoapHeader base class.
// The header contains just one string value.
public ref class MyHeader: public SoapHeader
{
public:
String^ MyValue;
};
public ref class MyWebService
{
public:
// Member variable to receive the contents of the MyHeader SOAP header.
MyHeader^ myHeader;
[WebMethod]
[SoapHeader("myHeader",Direction=SoapHeaderDirection::InOut)]
void Hello(){}
};
using System;
using System.Web.Services;
using System.Web.Services.Protocols;
// Define a SOAP header by deriving from the SoapHeader base class.
// The header contains just one string value.
public class MyHeader : SoapHeader {
public string MyValue;
}
public class MyWebService {
// Member variable to receive the contents of the MyHeader SOAP header.
public MyHeader myHeader;
[WebMethod]
[SoapHeader("myHeader", Direction=SoapHeaderDirection.InOut)]
public void Hello() {
}
}
Imports System.Web.Services
Imports System.Web.Services.Protocols
' Define a SOAP header by deriving from the SoapHeader base class.
' The header contains just one string value.
Public Class MyHeader
Inherits SoapHeader
Public MyValue As String
End Class
Public Class MyWebService
' Member variable to receive the contents of the MyHeader SOAP header.
Public myHeader As MyHeader
<WebMethod, _
SoapHeader("myHeader", Direction := SoapHeaderDirection.InOut)> _
Public Sub Hello()
End Sub
End Class
설명
XML 웹 서비스 또는 XML 웹 서비스 클라이언트는 XML 웹 서비스 클래스의 XML 웹 서비스 메서드 또는 프록시 클래스의 해당 메서드에 적용하여 SoapHeaderAttribute 처리하려는 SOAP 헤더를 지정할 수 있습니다. XML 웹 서비스 메서드가 SOAP 헤더의 내용을 수신하려면 멤버가 파생된 형식의 XML 웹 서비스 클래스에 추가됩니다 SoapHeader. 마찬가지로 XML 웹 서비스 클라이언트에서 파생 되는 프록시 클래스에 멤버를 추가 합니다 SoapHeader. 파생 SoapHeader 은 Type SOAP 헤더의 내용을 나타내며 SOAP 헤더를 수신하려는 XML 웹 서비스 또는 XML 웹 서비스 클라이언트의 개발자가 만듭니다. 클래스가 만들어 SoapHeaderAttribute 지면 XML 웹 서비스 메서드 또는 XML 웹 서비스 클라이언트 프록시 클래스의 해당 메서드에 적용하여 속성이 MemberName 있는 SOAP 헤더 콘텐츠를 받을 멤버를 지정할 수 있습니다.
XML 웹 서비스 메서드는 XML 웹 서비스 클래스 또는 XML 웹 서비스 프록시 클래스에 여러 멤버를 추가하고 XML 웹 서비스 메서드에 여러 특성을 적용하여 여러 SoapHeaderAttribute SOAP 헤더를 받을 수 있습니다.
XML Web services가 작성될 SoapUnknownHeaderSoapHeader 때 알 수 없는 SOAP 헤더를 받고 처리하려면 멤버의 형식을 지정하거나 클래스의 배열을 지정합니다.