LogicalMethodTypes Enumeration

 

Specifies how the XML Web service method was invoked.

Namespace:   System.Web.Services.Protocols
Assembly:  System.Web.Services (in System.Web.Services.dll)

public enum class LogicalMethodTypes

Member nameDescription
Async

The XML Web service method is invoked asynchronously.

Sync

The XML Web service method is invoked synchronously.

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

.NET Framework
Available since 1.1
Return to top
Show: