ServiceDescriptionImporter.Style 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ServiceDescriptions 값을 가져올 때 생성되는 코드 스타일(클라이언트 또는 서버)을 결정하는 값을 가져오거나 설정합니다.
public:
property System::Web::Services::Description::ServiceDescriptionImportStyle Style { System::Web::Services::Description::ServiceDescriptionImportStyle get(); void set(System::Web::Services::Description::ServiceDescriptionImportStyle value); };
public System.Web.Services.Description.ServiceDescriptionImportStyle Style { get; set; }
member this.Style : System.Web.Services.Description.ServiceDescriptionImportStyle with get, set
Public Property Style As ServiceDescriptionImportStyle
속성 값
ServiceDescriptionImportStyle 값 중 하나입니다. 기본값은 Client입니다.
예제
다음 예제에서는 속성의 사용을 보여 줍니다 Style .
// Generate a proxy client.
importer->Style = ServiceDescriptionImportStyle::Client;
// Generate a proxy client.
importer.Style = ServiceDescriptionImportStyle.Client;
설명
속성이 Style 설정된 ClientServiceDescriptionImporter 경우 클라이언트 프록시 클래스를 호출하여 설명된 웹 서비스의 기능을 제공하는 클라이언트 프록시 클래스를 생성합니다.
속성이 Style 설정된 ServerServiceDescriptionImporter 경우 인스턴스는 구현하지 않고 설명된 XML 웹 서비스의 기능을 나타내는 추상 클래스를 생성합니다. 그런 다음 이러한 추상 클래스에서 상속되는 클래스를 작성하여 구현하고 관련 메서드를 구현할 수 있습니다.