ExternalDataExchangeService 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 ExternalDataExchangeService class.
Overloads
ExternalDataExchangeService() |
Initializes a new instance of the ExternalDataExchangeService class. |
ExternalDataExchangeService(NameValueCollection) |
Initializes a new instance of the ExternalDataExchangeService class. |
ExternalDataExchangeService(String) |
Initializes a new instance of the ExternalDataExchangeService class. |
ExternalDataExchangeService(ExternalDataExchangeServiceSection) |
Initializes a new instance of the ExternalDataExchangeService class. |
ExternalDataExchangeService()
Initializes a new instance of the ExternalDataExchangeService class.
public:
ExternalDataExchangeService();
public ExternalDataExchangeService ();
Public Sub New ()
Examples
The following example shows how to create an instance of the ExternalDataExchangeService class. This example is from the Ordering State Machine SDK sample. For more information, see Ordering State Machine Sample.
string IWorkflowCompilerOptionsService.RootNamespace
{
get
{
return string.Empty;
}
}
Public ReadOnly Property RootNamespace() As String Implements IWorkflowCompilerOptionsService.RootNamespace
Get
Return String.Empty
End Get
End Property
Applies to
ExternalDataExchangeService(NameValueCollection)
Initializes a new instance of the ExternalDataExchangeService class.
public:
ExternalDataExchangeService(System::Collections::Specialized::NameValueCollection ^ parameters);
public ExternalDataExchangeService (System.Collections.Specialized.NameValueCollection parameters);
new System.Workflow.Activities.ExternalDataExchangeService : System.Collections.Specialized.NameValueCollection -> System.Workflow.Activities.ExternalDataExchangeService
Public Sub New (parameters As NameValueCollection)
Parameters
- parameters
- NameValueCollection
A collection of parameters used to configure the service. The allowed values are an empty collection or a collection that contains only the ConfigurationSection
key.
Applies to
ExternalDataExchangeService(String)
Initializes a new instance of the ExternalDataExchangeService class.
public:
ExternalDataExchangeService(System::String ^ configSectionName);
public ExternalDataExchangeService (string configSectionName);
new System.Workflow.Activities.ExternalDataExchangeService : string -> System.Workflow.Activities.ExternalDataExchangeService
Public Sub New (configSectionName As String)
Parameters
- configSectionName
- String
The name of the configuration section that contains this service's desired configuration.
Applies to
ExternalDataExchangeService(ExternalDataExchangeServiceSection)
Initializes a new instance of the ExternalDataExchangeService class.
public:
ExternalDataExchangeService(System::Workflow::Activities::ExternalDataExchangeServiceSection ^ settings);
public ExternalDataExchangeService (System.Workflow.Activities.ExternalDataExchangeServiceSection settings);
new System.Workflow.Activities.ExternalDataExchangeService : System.Workflow.Activities.ExternalDataExchangeServiceSection -> System.Workflow.Activities.ExternalDataExchangeService
Public Sub New (settings As ExternalDataExchangeServiceSection)
Parameters
- settings
- ExternalDataExchangeServiceSection
The configuration section that contains settings for this service.