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