ClientRuntime::Operations Property

 

Gets a collection of client operations for a client.

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

public:
property SynchronizedKeyedCollection<String^, ClientOperation^>^ Operations {
	SynchronizedKeyedCollection<String^, ClientOperation^>^ get();
}

Property Value

Type: System.Collections.Generic::SynchronizedKeyedCollection<String^, ClientOperation^>^

A synchronized collection of ClientOperation objects.

Use the Operations property to get a collection of all client operations for this client that you can use to attach extension objects that inspect or modify messages and behavior scoped to a particular operation. For details, see ClientOperation.

In the following code example an System.ServiceModel.Description::IEndpointBehavior inserts a System.ServiceModel.Dispatcher::IParameterInspector into the client runtime by adding it to each ClientOperation in the Operations property.

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

.NET Framework
Available since 3.0
Silverlight
Available since 4.0
Return to top
Show: