15 references to TypeElementCollection
System.Web.Services (15)
System\Web\Services\Configuration\WebServicesSection.cs (12)
390public TypeElementCollection ServiceDescriptionFormatExtensionTypes { 391get { return (TypeElementCollection)base[this.serviceDescriptionFormatExtensionTypes]; } 395public TypeElementCollection SoapExtensionImporterTypes { 396get { return (TypeElementCollection)base[this.soapExtensionImporterTypes]; } 400public TypeElementCollection SoapExtensionReflectorTypes { 401get { return (TypeElementCollection)base[this.soapExtensionReflectorTypes]; } 428public TypeElementCollection SoapTransportImporterTypes { 429get { return (TypeElementCollection)base[this.soapTransportImporterTypes]; } 475readonly ConfigurationProperty serviceDescriptionFormatExtensionTypes = new ConfigurationProperty("serviceDescriptionFormatExtensionTypes", typeof(TypeElementCollection), null, ConfigurationPropertyOptions.None); 477readonly ConfigurationProperty soapExtensionImporterTypes = new ConfigurationProperty("soapExtensionImporterTypes", typeof(TypeElementCollection), null, ConfigurationPropertyOptions.None); 478readonly ConfigurationProperty soapExtensionReflectorTypes = new ConfigurationProperty("soapExtensionReflectorTypes", typeof(TypeElementCollection), null, ConfigurationPropertyOptions.None); 480readonly ConfigurationProperty soapTransportImporterTypes = new ConfigurationProperty("soapTransportImporterTypes", typeof(TypeElementCollection), null, ConfigurationPropertyOptions.None);
System\Web\Services\Description\SoapProtocolImporter.cs (1)
516TypeElementCollection extensionTypes = WebServicesSection.Current.SoapExtensionImporterTypes;
System\Web\Services\Description\SoapProtocolReflector.cs (2)
243TypeElementCollection extensionTypes = WebServicesSection.Current.SoapExtensionReflectorTypes; 258TypeElementCollection extensionTypes = WebServicesSection.Current.SoapExtensionReflectorTypes;