OperationContractGenerationContext Class
Passed to the IOperationContractGenerationExtension::GenerateOperation method to enable the modification of an operation contract and its context prior to generating code.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | BeginMethod | Gets the System.CodeDom::CodeMemberMethod for the asynchronous begin operation. |
![]() | Contract | Gets the code generation context for the service contract. |
![]() | DeclaringType | Gets the declaring type for the current operation. |
![]() | EndMethod | Gets the asynchronous end operation declaration. |
![]() | IsAsync | Gets a value that indicates whether asynchronous methods are generated for the current operation. |
![]() | IsTask | Gets a value that indicates whether a task is generated for the current operation. |
![]() | Operation | Gets the System.ServiceModel.Description::OperationDescription for the current operation. |
![]() | ServiceContractGenerator | Gets the System.ServiceModel.Description::ServiceContractGenerator that generates the current operation. |
![]() | SyncMethod | Gets the System.CodeDom::CodeMemberMethod for the synchronous operation. |
![]() | TaskMethod | Gets the System.CodeDom::CodeMemberMethod for the task operation. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
Use the OperationContractGenerationContext object passed to the IOperationContractGenerationExtension::GenerateOperation method to modify the code document object model prior to the generation of code. Typically, the System.ServiceModel.Description::IOperationContractGenerationExtension interface is implemented on a custom System.ServiceModel.Description::IWsdlImportExtension implementation that is used to import custom WSDL elements or otherwise modify the code at the service or operation level. To modify the code at the service level, see System.ServiceModel.Description::IServiceContractGenerationExtension.
The following example shows the use of the OperationContractGenerationContext object passed to the IOperationContractGenerationExtension::GenerateOperation method to add code comments extracted from custom WSDL elements.
public void GenerateOperation(OperationContractGenerationContext context) { context.SyncMethod.Comments.AddRange(Formatter.FormatComments(commentText)); Console.WriteLine("In generate operation."); }
The following code example shows the resulting code comments.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


