OperationInfo.Clone Method

Definition

Creates a copy of the object.

public:
 override System::Workflow::Activities::OperationInfoBase ^ Clone();
public override System.Workflow.Activities.OperationInfoBase Clone ();
override this.Clone : unit -> System.Workflow.Activities.OperationInfoBase
Public Overrides Function Clone () As OperationInfoBase

Returns

The copy of the OperationInfo object.

Examples

The following example demonstrates how to use the Clone method.

OperationInfo info1 = new OperationInfo();
OperationInfo info2 = (OperationInfo)info1.Clone();
Dim info1 As New OperationInfo()
Dim info2 As OperationInfo = CType(info1.Clone(), OperationInfo)

Remarks

This method creates a deep copy of the OperationInfo object, with the same ContractName, IsOneWay, Parameters, and ProtectionLevel values.

Applies to