SynchronizationScopeActivity Constructors
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.
Initializes a new instance of the SynchronizationScopeActivity class.
Overloads
SynchronizationScopeActivity() |
Initializes a new instance of the SynchronizationScopeActivity class. |
SynchronizationScopeActivity(String) |
Initializes a new instance of the SynchronizationScopeActivity class using the name of the activity. |
SynchronizationScopeActivity()
Initializes a new instance of the SynchronizationScopeActivity class.
public:
SynchronizationScopeActivity();
public SynchronizationScopeActivity ();
Public Sub New ()
Examples
The following example demonstrates creating a new instance of a SynchronizationScopeActivity object. This example is from the Nested Exception Handlers SDK sample. For more information, see Nested Exception Handlers Sample.
this.synchronizationScopeActivity = new System.Workflow.ComponentModel.SynchronizationScopeActivity();
Me.synchronizationScopeActivity = New System.Workflow.ComponentModel.SynchronizationScopeActivity()
Applies to
SynchronizationScopeActivity(String)
Initializes a new instance of the SynchronizationScopeActivity class using the name of the activity.
public:
SynchronizationScopeActivity(System::String ^ name);
public SynchronizationScopeActivity (string name);
new System.Workflow.ComponentModel.SynchronizationScopeActivity : string -> System.Workflow.ComponentModel.SynchronizationScopeActivity
Public Sub New (name As String)
Parameters
- name
- String
The user-defined name of the activity.