6 instantiations of AddressHeaderCollection
System.ServiceModel.Primitives (6)
System\ServiceModel\Channels\AddressHeaderCollection.cs (2)
47internal static AddressHeaderCollection EmptyHeaderCollection { get; } = new AddressHeaderCollection(); 209return new AddressHeaderCollection(headerList);
System\ServiceModel\EndpointAddress.cs (4)
155Init(uri, identity, new AddressHeaderCollection(headers), null, -1, -1, -1); 247_headers = new AddressHeaderCollection(); 712headers = new AddressHeaderCollection(headerList); 1312new AddressHeaderCollection(Headers),
21 references to AddressHeaderCollection
System.ServiceModel (1)
netstandard.cs (1)
30[assembly: TypeForwardedTo(typeof(AddressHeaderCollection))]
System.ServiceModel.Primitives (20)
System\ServiceModel\Channels\AddressHeaderCollection.cs (4)
47internal static AddressHeaderCollection EmptyHeaderCollection { get; } = new AddressHeaderCollection(); 131internal bool IsEquivalent(AddressHeaderCollection col) 187internal static AddressHeaderCollection ReadServiceParameters(XmlDictionaryReader reader) 192internal static AddressHeaderCollection ReadServiceParameters(XmlDictionaryReader reader, bool isReferenceProperty)
System\ServiceModel\EndpointAddress.cs (16)
73private AddressHeaderCollection _headers; 82private EndpointAddress(AddressingVersion version, Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlBuffer buffer, int metadataSection, int extensionSection, int pspSection) 96Init(u, (EndpointIdentity)null, (AddressHeaderCollection)null, null, -1, -1, -1); 119internal EndpointAddress(Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlDictionaryReader metadataReader, XmlDictionaryReader extensionReader, XmlDictionaryReader pspReader) 151Init(uri, identity, (AddressHeaderCollection)null, null, -1, -1, -1); 159private void Init(Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlBuffer buffer, int metadataSection, int extensionSection, int pspSection) 164private void Init(AddressingVersion version, Uri uri, EndpointIdentity identity, AddressHeaderCollection headers, XmlBuffer buffer, int metadataSection, int extensionSection, int pspSection) 241public AddressHeaderCollection Headers 580AddressHeaderCollection headers; 673private static 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) 693headers = AddressHeaderCollection.ReadServiceParameters(reader, true); 707AddressHeaderCollection tmp = AddressHeaderCollection.ReadServiceParameters(reader); 716headers = AddressHeaderCollection.ReadServiceParameters(reader); 847private static bool ReadContentsFrom10(XmlDictionaryReader reader, out Uri uri, out AddressHeaderCollection headers, out EndpointIdentity identity, out XmlBuffer buffer, out int metadataSection, out int extensionSection) 864headers = AddressHeaderCollection.ReadServiceParameters(reader);