8 instantiations of AddressHeaderCollection
System.ServiceModel (6)
System\ServiceModel\Channels\AddressHeaderCollection.cs (2)
21static AddressHeaderCollection emptyHeaderCollection = new AddressHeaderCollection(); 193return new AddressHeaderCollection(headerList);
System\ServiceModel\EndpointAddress.cs (4)
177Init(uri, identity, new AddressHeaderCollection(headers), null, -1, -1, -1); 264this.headers = new AddressHeaderCollection(); 788headers = new AddressHeaderCollection(headerList); 1387new AddressHeaderCollection(this.headers),
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\InternalSendMessage.cs (1)
254this.cachedEndpointHeaderCollection = new AddressHeaderCollection(this.Endpoint.Headers);
System\ServiceModel\Endpoint.cs (1)
127return new EndpointAddress(address, this.Identity, new AddressHeaderCollection(this.Headers));
38 references to AddressHeaderCollection
System.ServiceModel (35)
System\ServiceModel\Administration\EndpointInfo.cs (2)
19AddressHeaderCollection headers; 73public AddressHeaderCollection Headers
System\ServiceModel\Channels\AddressHeaderCollection.cs (5)
21static AddressHeaderCollection emptyHeaderCollection = new AddressHeaderCollection(); 51internal static AddressHeaderCollection EmptyHeaderCollection 121internal bool IsEquivalent(AddressHeaderCollection col) 171internal static AddressHeaderCollection ReadServiceParameters(XmlDictionaryReader reader) 176internal static AddressHeaderCollection ReadServiceParameters(XmlDictionaryReader reader, bool isReferenceProperty)
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (1)
415this.serviceEndpoint = new ServiceEndpoint(contractDescription, endpoint.Binding, new EndpointAddress(new Uri(address), identity, (AddressHeaderCollection)null));
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (1)
288EndpointAddress endpointAddress = new EndpointAddress(new Uri(address), identity, (AddressHeaderCollection)null);
System\ServiceModel\Configuration\AddressHeaderCollectionElement.cs (7)
35public AddressHeaderCollection Headers 39AddressHeaderCollection retVal = (AddressHeaderCollection)base[ConfigurationStrings.Headers]; 42retVal = AddressHeaderCollection.EmptyHeaderCollection; 50value = AddressHeaderCollection.EmptyHeaderCollection; 67this.Headers = AddressHeaderCollection.ReadServiceParameters(XmlDictionaryReader.CreateDictionaryReader(reader)); 90internal void InitializeFrom(AddressHeaderCollection headers)
System\ServiceModel\Configuration\Properties.cs (1)
294properties.Add(new ConfigurationProperty("headers", typeof(System.ServiceModel.Channels.AddressHeaderCollection), null, null, null, System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\EndpointAddress.cs (18)
74AddressHeaderCollection headers; 87EndpointAddress(AddressingVersion version, Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlBuffer buffer, int metadataSection, int extensionSection, int pspSection) 101Init(u, (EndpointIdentity)null, (AddressHeaderCollection)null, null, -1, -1, -1); 119public EndpointAddress(Uri uri, EndpointIdentity identity, AddressHeaderCollection headers) 134internal EndpointAddress(Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlDictionaryReader metadataReader, XmlDictionaryReader extensionReader, XmlDictionaryReader pspReader) 164public EndpointAddress(Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlDictionaryReader metadataReader, XmlDictionaryReader extensionReader) 173Init(uri, identity, (AddressHeaderCollection)null, null, -1, -1, -1); 181void Init(Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlBuffer buffer, int metadataSection, int extensionSection, int pspSection) 186void Init(AddressingVersion version, Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlBuffer buffer, int metadataSection, int extensionSection, int pspSection) 258public AddressHeaderCollection Headers 662AddressHeaderCollection headers; 749static bool ReadContentsFrom200408(XmlDictionaryReader reader, out Uri uri, out AddressHeaderCollection headers, out EndpointIdentity identity, out XmlBuffer buffer, out int metadataSection, out int extensionSection, out int pspSection) 769headers = AddressHeaderCollection.ReadServiceParameters(reader, true); 783AddressHeaderCollection tmp = AddressHeaderCollection.ReadServiceParameters(reader); 792headers = AddressHeaderCollection.ReadServiceParameters(reader); 905static bool ReadContentsFrom10(XmlDictionaryReader reader, out Uri uri, out AddressHeaderCollection headers, out EndpointIdentity identity, out XmlBuffer buffer, out int metadataSection, out int extensionSection) 919headers = AddressHeaderCollection.ReadServiceParameters(reader);
System.ServiceModel.Activities (3)
System\ServiceModel\Activities\InternalSendMessage.cs (3)
52AddressHeaderCollection cachedEndpointHeaderCollection; 249AddressHeaderCollection GetCachedEndpointHeaders() 486AddressHeaderCollection headers = null;