OperationDescription Class

OperationDescription Class

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

A contract that characterizes an operation in terms of the messages it exchanges.

System::Object
  System.ServiceModel.Description::OperationDescription

Namespace:  System.ServiceModel.Description
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

No code example is currently available or this language may not be supported.

The OperationDescription type exposes the following members.

  NameDescription
Public methodOperationDescriptionInitializes a new instance of the OperationDescription class with a specified name and contract description.
Top

  NameDescription
Public propertyBeginMethodGets or sets the begin method of the operation.
Public propertyDeclaringContractGets or sets the contract to which the operation belongs.
Public propertyEndMethodGets or sets the end method of the operation.
Public propertyFaultsGets a collection of the descriptions of the faults associated with the operation description.
Public propertyIsOneWayGets a value that indicates whether an operation returns a reply message.
Public propertyKnownTypesGets the known types associated with the operation description.
Public propertyMessagesGets or sets the descriptions of the messages that make up the operation.
Public propertyNameGets or sets the name of the operation description.
Public propertySyncMethodGets or sets the service synchronization method of the operation description.
Top

  NameDescription
Public methodEquals(Object)Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public methodGetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Public methodToStringReturns a string that represents the current object. (Inherited from Object.)
Top

A contract is a collection of operations that specifies what the endpoint communicates to the outside world. Each operation is a message exchange: for example, a request message and an associated reply message that form a request/reply message exchange.

A ContractDescription object is used to describe contracts and their operations. Within a ContractDescription, each contract operation has a corresponding OperationDescription that describes aspects of the operation, such as whether the operation is one-way or request/reply. Each OperationDescription also describes the messages that make up the operation using a collection of MessageDescription objects. ContractDescription contains a reference to an interface that defines the contract using the programming model. This interface is marked with ServiceContractAttribute, and its methods that correspond to endpoint operations are marked with OperationContractAttribute.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Show:
© 2017 Microsoft