5 references to Sync
System.Web.Services (5)
System\Web\Services\Protocols\HttpClientProtocol.cs (1)
33LogicalMethodInfo[] methodInfos = LogicalMethodInfo.Create(type.GetMethods(), LogicalMethodTypes.Sync);
System\Web\Services\Protocols\LogicalMethodInfo.cs (2)
487return Create(methodInfos, LogicalMethodTypes.Async | LogicalMethodTypes.Sync, 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 (1)
319return LogicalMethodInfo.Create((MethodInfo[])list.ToArray(typeof(MethodInfo)), LogicalMethodTypes.Async | LogicalMethodTypes.Sync, methodInfos);