ExternalDataExchangeService Constructeurs

Définition

Initialise une nouvelle instance de la classe ExternalDataExchangeService.

Surcharges

ExternalDataExchangeService()

Initialise une nouvelle instance de la classe ExternalDataExchangeService.

ExternalDataExchangeService(NameValueCollection)

Initialise une nouvelle instance de la classe ExternalDataExchangeService.

ExternalDataExchangeService(String)

Initialise une nouvelle instance de la classe ExternalDataExchangeService.

ExternalDataExchangeService(ExternalDataExchangeServiceSection)

Initialise une nouvelle instance de la classe ExternalDataExchangeService.

ExternalDataExchangeService()

Initialise une nouvelle instance de la classe ExternalDataExchangeService.

public:
 ExternalDataExchangeService();
public ExternalDataExchangeService ();
Public Sub New ()

Exemples

L'exemple suivant montre comment créer une instance de la classe ExternalDataExchangeService. Cet exemple provient de l'exemple du Kit de développement logiciel Ordering State Machine (SDK). Pour plus d’informations, consultez 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

S’applique à

ExternalDataExchangeService(NameValueCollection)

Initialise une nouvelle instance de la classe ExternalDataExchangeService.

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)

Paramètres

parameters
NameValueCollection

Collection de paramètres utilisés pour configurer le service. Les valeurs autorisées sont une collection vide ou une collection qui contient uniquement la clé ConfigurationSection.

S’applique à

ExternalDataExchangeService(String)

Initialise une nouvelle instance de la classe ExternalDataExchangeService.

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)

Paramètres

configSectionName
String

Nom de la section de configuration qui contient la configuration désirée pour ce service.

S’applique à

ExternalDataExchangeService(ExternalDataExchangeServiceSection)

Initialise une nouvelle instance de la classe ExternalDataExchangeService.

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)

Paramètres

settings
ExternalDataExchangeServiceSection

Section de configuration qui contient les paramètres de ce service.

S’applique à