4 writes to headerTypes
System.ServiceModel (4)
System\ServiceModel\Security\MessagePartSpecification.cs (4)
27
headerTypes
= new List<XmlQualifiedName>();
107
this.
headerTypes
= new List<XmlQualifiedName>(headerTypes.Count);
148
this.
headerTypes
= noDuplicates;
175
this.
headerTypes
= new List<XmlQualifiedName>(headerTypes.Length);
20 references to headerTypes
System.ServiceModel (20)
System\ServiceModel\Security\MessagePartSpecification.cs (20)
25
if (
headerTypes
== null)
32
return new ReadOnlyCollection<XmlQualifiedName>(
headerTypes
);
36
return
headerTypes
;
43
get { return this.
headerTypes
!= null && this.
headerTypes
.Count > 0; }
88
if (this.
headerTypes
!= null)
89
this.
headerTypes
.Clear();
102
List<XmlQualifiedName> headerTypes = specification.
headerTypes
;
105
if (this.
headerTypes
== null)
113
this.
headerTypes
.Add(qname);
123
if (this.
headerTypes
!= null)
125
List<XmlQualifiedName> noDuplicates = new List<XmlQualifiedName>(
headerTypes
.Count);
126
for (int i = 0; i <
headerTypes
.Count; i++)
128
XmlQualifiedName qname =
headerTypes
[i];
178
this.
headerTypes
.Add(headerTypes[i]);
198
if (this.
headerTypes
!= null)
200
for (int i = 0; i < this.
headerTypes
.Count; i++)
202
XmlQualifiedName qname = this.
headerTypes
[i];
226
if (this.
headerTypes
!= null && this.
headerTypes
.Count > 0)