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