LogicalMethodTypes Enum

Definition

Anger hur XML-webbtjänstmetoden anropades.

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

Fält

Name Värde Description
Sync 1

XML-webbtjänstmetoden anropas synkront.

Async 2

XML-webbtjänstmetoden anropas asynkront.

Exempel

// 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)

Gäller för

Se även