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

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.

ClientClass 8

Generates a Windows Communication Foundation (WCF) client class that extends ClientBase<TChannel>.

EventBasedAsynchronousMethods 32

Generates event-based asynchronous methods for operations in addition to synchronous versions.

InternalTypes 4

Causes all types to be marked internal.

None 0

No options specified.

TaskBasedAsynchronousMethod 64

Generates task based asynchronous methods for operations in addition to synchronous versions.

TypedMessages 16

Generate message contracts.

Remarks

Use the ServiceContractGenerationOptions enumeration with the ServiceContractGenerator.Options property to control the generated contract code.

Applies to