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