IServiceContractGenerationExtension 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
定義在合約產生期間呼叫的方法,可用於修改為服務合約產生的程式碼。
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.IWsdlImportExtension 會在呼叫 ContractDescription.Behaviors 或 ImportContract 期間,將自訂合約行為插入 ImportEndpoint 集合中。
方法
GenerateContract(ServiceContractGenerationContext) |
您可以實作以在合約產生處理之前修改程式碼文件物件模型。 |