ReplicatorActivity Construtores
Definição
Inicializa uma nova instância da classe ReplicatorActivity.Initializes a new instance of the ReplicatorActivity class.
Sobrecargas
| ReplicatorActivity() |
Inicializa uma nova instância da classe ReplicatorActivity.Initializes a new instance of the ReplicatorActivity class. |
| ReplicatorActivity(String) |
Inicializa uma nova instância da classe ReplicatorActivity usando o nome da atividade.Initializes a new instance of the ReplicatorActivity class using the name of the activity. |
ReplicatorActivity()
Inicializa uma nova instância da classe ReplicatorActivity.Initializes a new instance of the ReplicatorActivity class.
public:
ReplicatorActivity();
public ReplicatorActivity ();
Public Sub New ()
Exemplos
O exemplo de código a seguir mostra como criar uma nova instância da ReplicatorActivity classe.The following code example shows how to create a new instance of the ReplicatorActivity class. Este exemplo de código faz parte do exemplo do SDK do Replicator do arquivo SimpleReplicatorWorkflow.Designer.cs.This code example is part of the Replicator SDK Sample from the SimpleReplicatorWorkflow.Designer.cs file. Para obter mais informações, consulte usando o Replicator.For more information, see Using Replicator.
public sealed partial class ThrowWorkflow : SequentialWorkflowActivity
{
[System.Diagnostics.DebuggerNonUserCode()]
private void InitializeComponent()
{
this.CanModifyActivities = true;
System.Workflow.ComponentModel.ActivityBind activitybind1 = new System.Workflow.ComponentModel.ActivityBind();
this.throwActivity1 = new System.Workflow.ComponentModel.ThrowActivity();
activitybind1.Name = "ThrowWorkflow";
activitybind1.Path = "ThrownException";
//
// throwActivity1
//
this.throwActivity1.Name = "throwActivity1";
this.throwActivity1.SetBinding(System.Workflow.ComponentModel.ThrowActivity.FaultProperty, ((System.Workflow.ComponentModel.ActivityBind)(activitybind1)));
//
// ThrowWorkflow
//
this.Activities.Add(this.throwActivity1);
this.Name = "ThrowWorkflow";
this.CanModifyActivities = false;
}
private Exception thrownExceptionValue = new System.Exception("My Exception Message.");
public Exception ThrownException
{
get { return thrownExceptionValue; }
set { thrownExceptionValue = value; }
}
private ThrowActivity throwActivity1;
}
Partial Public NotInheritable Class ThrowWorkflow
Inherits SequentialWorkflowActivity
<System.Diagnostics.DebuggerNonUserCode()> _
Private Sub InitializeComponent()
Me.CanModifyActivities = True
Dim activitybind1 As New System.Workflow.ComponentModel.ActivityBind()
Me.throwActivity1 = New System.Workflow.ComponentModel.ThrowActivity()
activitybind1.Name = "ThrowWorkflow"
activitybind1.Path = "ThrownException"
'
' throwActivity1
'
Me.throwActivity1.Name = "throwActivity1"
Me.throwActivity1.SetBinding(System.Workflow.ComponentModel.ThrowActivity.FaultProperty, activitybind1)
'
' ThrowWorkflow
'
Me.Activities.Add(Me.throwActivity1)
Me.Name = "ThrowWorkflow"
Me.CanModifyActivities = False
End Sub
Private thrownExceptionValue As New System.Exception("My Exception Message.")
Public Property ThrownException() As Exception
Get
Return thrownExceptionValue
End Get
Set(ByVal value As Exception)
thrownExceptionValue = value
End Set
End Property
Private throwActivity1 As ThrowActivity
End Class
Aplica-se a
ReplicatorActivity(String)
Inicializa uma nova instância da classe ReplicatorActivity usando o nome da atividade.Initializes a new instance of the ReplicatorActivity class using the name of the activity.
public:
ReplicatorActivity(System::String ^ name);
public ReplicatorActivity (string name);
new System.Workflow.Activities.ReplicatorActivity : string -> System.Workflow.Activities.ReplicatorActivity
Public Sub New (name As String)
Parâmetros
- name
- String
O nome da atividade definido pelo usuário.The user-defined name of the activity.