다음을 통해 공유


IServiceContractGenerationExtension 인터페이스

정의

계약 생성 중에 호출되고, 서비스 계약에 대해 생성된 코드를 수정하는 데 사용할 수 있는 메서드를 정의합니다.

public interface class IServiceContractGenerationExtension
public interface IServiceContractGenerationExtension
type IServiceContractGenerationExtension = interface
Public Interface IServiceContractGenerationExtension

예제

다음 코드 예제에서는 IServiceContractGenerationExtension를 호출하는 동안 ContractDescription.Behaviors 속성에 ImportContract을 추가하는 방법을 보여 줍니다.

  public void ImportContract(WsdlImporter importer, WsdlContractConversionContext context)
  {
Console.Write("ImportContract");
      // Contract Documentation
      if (context.WsdlPortType.Documentation != null)
      {
  context.Contract.Behaviors.Add(new WsdlDocumentationImporter(context.WsdlPortType.Documentation));
      }
      // Operation Documentation
      foreach (Operation operation in context.WsdlPortType.Operations)
      {
          if (operation.Documentation != null)
          {
              OperationDescription operationDescription = context.Contract.Operations.Find(operation.Name);
              if (operationDescription != null)
              {
      operationDescription.Behaviors.Add(new WsdlDocumentationImporter(operation.Documentation));
              }
          }
      }
  }

다음 코드 예제에서는 서비스 계약에 대해 생성된 코드에 주석을 추가하는 GenerateContract를 구현하는 방법을 보여 줍니다.

public void GenerateContract(ServiceContractGenerationContext context)
{
  Console.WriteLine("In generate contract.");
  context.ContractType.Comments.AddRange(Formatter.FormatComments(commentText));
}

다음 코드 예제에서는 서비스 계약에 대해 생성된 주석을 보여 줍니다.

/// From WSDL Documentation:
///
/// <summary>The string for the Name data member.</summary>
///
[System.Runtime.Serialization.DataMemberAttribute()]
public string Name
{
    get
    {
        return this.NameField;
    }
    set
    {
        this.NameField = value;
    }
}

'''From WSDL Documentation:
'''
'''<summary>The string for the Name data member.</summary> 
'''
<System.Runtime.Serialization.DataMemberAttribute()>  _
Public Property Name() As String
    Get
        Return Me.NameField
    End Get
    Set
        Me.NameField = value
    End Set
End Property

설명

계약 동작(IServiceContractGenerationExtension 형식)에 대해 System.ServiceModel.Description.IContractBehavior 인터페이스를 구현하면 계약 또는 엔드포인트가 코드로 컴파일될 때 생성되는 코드를 수정할 수 있습니다.

일반적으로 사용자 지정 System.ServiceModel.Description.IWsdlImportExtensionContractDescription.Behaviors 또는 ImportContract를 호출하는 중에 ImportEndpoint 컬렉션에 사용자 지정 계약 동작을 삽입합니다.

메서드

GenerateContract(ServiceContractGenerationContext)

계약 생성 프로세스에 앞서 코드 문서 개체 모델을 수정하려면 구현합니다.

적용 대상