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