ExternalDataExchangeService.AddService(Object) Method

Definition

Adds the specified service to the ExternalDataExchangeService.

public:
 void AddService(System::Object ^ service);
public:
 virtual void AddService(System::Object ^ service);
public void AddService (object service);
public virtual void AddService (object service);
member this.AddService : obj -> unit
abstract member AddService : obj -> unit
override this.AddService : obj -> unit
Public Sub AddService (service As Object)
Public Overridable Sub AddService (service As Object)

Parameters

service
Object

An object that represents the service to add.

Exceptions

service is a null reference (Nothing in Visual Basic).

The external run-time container was not found.

Examples

The following example shows how to add a service to an ExternalDataExchangeService object. 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