11 references to LogicalMethodTypes
System.Web.Services (11)
System\Web\Services\Protocols\HttpClientProtocol.cs (1)
33
LogicalMethodInfo[] methodInfos = LogicalMethodInfo.Create(type.GetMethods(),
LogicalMethodTypes
.Sync);
System\Web\Services\Protocols\LogicalMethodInfo.cs (7)
487
return Create(methodInfos,
LogicalMethodTypes
.Async |
LogicalMethodTypes
.Sync, null);
495
public static LogicalMethodInfo[] Create(MethodInfo[] methodInfos,
LogicalMethodTypes
types) {
499
internal static LogicalMethodInfo[] Create(MethodInfo[] methodInfos,
LogicalMethodTypes
types, Hashtable declarations) {
500
ArrayList begins = (types &
LogicalMethodTypes
.Async) != 0 ? new ArrayList() : null;
501
Hashtable ends = (types &
LogicalMethodTypes
.Async) != 0 ? new Hashtable() : null;
502
ArrayList syncs = (types &
LogicalMethodTypes
.Sync) != 0 ? new ArrayList() : null;
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
114
LogicalMethodInfo[] methodInfos = LogicalMethodInfo.Create(type.GetMethods(BindingFlags.Public | BindingFlags.Instance),
LogicalMethodTypes
.Sync);
System\Web\Services\WebMethodAttribute.cs (2)
319
return LogicalMethodInfo.Create((MethodInfo[])list.ToArray(typeof(MethodInfo)),
LogicalMethodTypes
.Async |
LogicalMethodTypes
.Sync, methodInfos);