OperationInfo.Clone Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Sodelujte z nami v storitvi GitHub
Vir za to vsebino najdete v storitvi GitHub, kjer lahko tudi ustvarite in pregledate težave in zahtevke za uveljavitev sprememb. Če želite več informacij, glejte naš vodnik za sodelavce.