LogicalMethodTypes Enum

Definitie

Hiermee geeft u op hoe de XML-webservicemethode is aangeroepen.

public enum class LogicalMethodTypes
public enum LogicalMethodTypes
type LogicalMethodTypes = 
Public Enum LogicalMethodTypes
Overname
LogicalMethodTypes

Velden

Name Waarde Description
Sync 1

De XML-webservicemethode wordt synchroon aangeroepen.

Async 2

De XML-webservicemethode wordt asynchroon aangeroepen.

Voorbeelden

// Create a synchronous 'LogicalMethodInfo' instance.
array<MethodInfo^>^temparray = {myMethodInfo};
LogicalMethodInfo^ myLogicalMethodInfo = (LogicalMethodInfo::Create( temparray, LogicalMethodTypes::Sync ))[ 0 ];
// Create a synchronous 'LogicalMethodInfo' instance.
LogicalMethodInfo myLogicalMethodInfo =
   (LogicalMethodInfo.Create(new MethodInfo[] {myMethodInfo},
                             LogicalMethodTypes.Sync))[0];
' Create a synchronous 'LogicalMethodInfo' instance.
Dim myLogicalMethodInfo As LogicalMethodInfo = _
           LogicalMethodInfo.Create(New MethodInfo() {myMethodInfo}, LogicalMethodTypes.Sync)(0)

Van toepassing op

Zie ook