Rediger

Del via


ServiceContractGenerationOptions Enum

Definition

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
ServiceContractGenerationOptions
Attributes

Fields

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.

Applies to