2 instantiations of WebServiceAttribute
System.Web.Services (2)
System\Web\Services\WebServiceAttribute.cs (2)
84if (attrs.Length == 0) return new WebServiceAttribute(); 89if (methodInfos.Length == 0) return new WebServiceAttribute();
11 references to WebServiceAttribute
System.Web.Services (11)
System\Web\Services\Description\ServiceDescriptionReflector.cs (2)
34WebServiceAttribute serviceAttr; 99internal WebServiceAttribute ServiceAttribute {
System\Web\Services\Description\SoapProtocolImporter.cs (1)
448CodeAttributeDeclaration webService = new CodeAttributeDeclaration(typeof(WebServiceAttribute).FullName);
System\Web\Services\Protocols\SoapServerMethod.cs (1)
53WebServiceAttribute serviceAttribute = WebServiceReflector.GetAttribute(serverType);
System\Web\Services\Protocols\SoapServerProtocol.cs (1)
70WebServiceAttribute serviceAttribute = WebServiceReflector.GetAttribute(type);
System\Web\Services\Protocols\XmlReturnReader.cs (1)
25WebServiceAttribute serviceAttribute = WebServiceReflector.GetAttribute(methodInfos);
System\Web\Services\WebServiceAttribute.cs (5)
26/// Initializes a new instance of the <see cref='System.Web.Services.WebServiceAttribute'/> class. 82internal static WebServiceAttribute GetAttribute(Type type) { 83object[] attrs = type.GetCustomAttributes(typeof(WebServiceAttribute), false); 85return (WebServiceAttribute)attrs[0]; 88internal static WebServiceAttribute GetAttribute(LogicalMethodInfo[] methodInfos) {