다음을 통해 공유


ServiceDescriptionImporter.Style 속성

정의

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

ServiceDescriptionImportStyle 값 중 하나입니다. 기본값은 Client입니다.

예제

다음 예제에서는 속성의 사용을 보여 줍니다 Style .

// Generate a proxy client.
importer->Style = ServiceDescriptionImportStyle::Client;
// Generate a proxy client.
importer.Style = ServiceDescriptionImportStyle.Client;

설명

속성이 Style 설정된 ClientServiceDescriptionImporter 경우 클라이언트 프록시 클래스를 호출하여 설명된 웹 서비스의 기능을 제공하는 클라이언트 프록시 클래스를 생성합니다.

속성이 Style 설정된 ServerServiceDescriptionImporter 경우 인스턴스는 구현하지 않고 설명된 XML 웹 서비스의 기능을 나타내는 추상 클래스를 생성합니다. 그런 다음 이러한 추상 클래스에서 상속되는 클래스를 작성하여 구현하고 관련 메서드를 구현할 수 있습니다.

적용 대상