Click or drag to resize
OperationContractAttributeAsyncPattern Property
Indicates that an operation is implemented asynchronously using a Begin<methodName> and End<methodName> method pair in a service contract.

Namespace: System.ServiceModel
Assembly: CSharpXamlForHtml5.System.ServiceModel.dll (in CSharpXamlForHtml5.System.ServiceModel.dll.dll) Version: 1.0.0.0
Syntax
C#
public bool AsyncPattern { get; set; }

Return Value

Type: Boolean
true if the Begin<methodName>method is matched by an End<methodName> method and can be treated by the infrastructure as an operation that is implemented as an asynchronous method pair on the service interface; otherwise, false. The default is false.
See Also