System\Workflow\Activities\OperationInfoBase.cs (15)
30typeof(MethodInfo), typeof(OperationInfoBase),
36typeof(string), typeof(OperationInfoBase),
42typeof(string), typeof(OperationInfoBase),
48typeof(string), typeof(OperationInfoBase),
53get { return (string) this.GetValue(OperationInfoBase.NameProperty); }
54set { this.SetValue(OperationInfoBase.NameProperty, value); }
60get { return (string) this.GetValue(OperationInfoBase.PrincipalPermissionNameProperty); }
61set { this.SetValue(OperationInfoBase.PrincipalPermissionNameProperty, value); }
67get { return (string) this.GetValue(OperationInfoBase.PrincipalPermissionRoleProperty); }
68set { this.SetValue(OperationInfoBase.PrincipalPermissionRoleProperty, value); }
79public virtual OperationInfoBase Clone()
81OperationInfoBase clonedOperation = (OperationInfoBase) Activator.CreateInstance(this.GetType());
91OperationInfoBase operationInfo = obj as OperationInfoBase;