ServiceContractGenerationOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the contract generation options available using the ServiceContractGenerator.
This enumeration supports a bitwise combination of its member values.
public enum class ServiceContractGenerationOptions
[System.Flags]
public enum ServiceContractGenerationOptions
[<System.Flags>]
type ServiceContractGenerationOptions =
Public Enum ServiceContractGenerationOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No options specified. |
AsynchronousMethods | 1 | Generates asynchronous methods for operations in addition to synchronous versions. |
ChannelInterface | 2 | Generates an interface that derives from the contract interface and IClientChannel. |
InternalTypes | 4 | Causes all types to be marked internal. |
ClientClass | 8 | Generates a Windows Communication Foundation (WCF) client class that extends ClientBase<TChannel>. |
TypedMessages | 16 | Generate message contracts. |
EventBasedAsynchronousMethods | 32 | Generates event-based asynchronous methods for operations in addition to synchronous versions. |
TaskBasedAsynchronousMethod | 64 | Generates task based asynchronous methods for operations in addition to synchronous versions. |
Remarks
Use the ServiceContractGenerationOptions enumeration with the ServiceContractGenerator.Options property to control the generated contract code.