5 instantiations of ProtocolElement
System.Web.Services (5)
System\Web\Services\Configuration\ProtocolElementCollection.cs (5)
43
return new
ProtocolElement
();
104
ProtocolElement httpSoap12Element = new
ProtocolElement
(WebServiceProtocols.HttpSoap12);
105
ProtocolElement httpSoapElement = new
ProtocolElement
(WebServiceProtocols.HttpSoap);
106
ProtocolElement httpPostLocalhostElement = new
ProtocolElement
(WebServiceProtocols.HttpPostLocalhost);
107
ProtocolElement documentationElement = new
ProtocolElement
(WebServiceProtocols.Documentation);
17 references to ProtocolElement
System.Web.Services (17)
System\Web\Services\Configuration\ProtocolElementCollection.cs (16)
14
[ConfigurationCollection(typeof(
ProtocolElement
))]
17
public void Add(
ProtocolElement
element)
46
public void CopyTo(
ProtocolElement
[] array, int index)
63
ProtocolElement
configElementKey = (
ProtocolElement
)element;
67
public int IndexOf(
ProtocolElement
element)
77
public void Remove(
ProtocolElement
element)
104
ProtocolElement
httpSoap12Element = new ProtocolElement(WebServiceProtocols.HttpSoap12);
105
ProtocolElement
httpSoapElement = new ProtocolElement(WebServiceProtocols.HttpSoap);
106
ProtocolElement
httpPostLocalhostElement = new ProtocolElement(WebServiceProtocols.HttpPostLocalhost);
107
ProtocolElement
documentationElement = new ProtocolElement(WebServiceProtocols.Documentation);
115
public
ProtocolElement
this[object key]
123
ProtocolElement
retval = (
ProtocolElement
)this.BaseGet(key);
163
public
ProtocolElement
this[int index]
167
return (
ProtocolElement
)BaseGet(index);
System\Web\Services\Configuration\WebServicesSection.cs (1)
124
foreach (
ProtocolElement
element in this.Protocols) {