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