4 writes to _headerTypes
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\MessagePartSpecification.cs (4)
25
_headerTypes
= new List<XmlQualifiedName>();
105
_headerTypes
= new List<XmlQualifiedName>(headerTypes.Count);
146
_headerTypes
= noDuplicates;
173
_headerTypes
= new List<XmlQualifiedName>(headerTypes.Length);
20 references to _headerTypes
dotnet-svcutil-lib (20)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\MessagePartSpecification.cs (20)
23
if (
_headerTypes
== null)
30
return new ReadOnlyCollection<XmlQualifiedName>(
_headerTypes
);
34
return
_headerTypes
;
41
get { return
_headerTypes
!= null &&
_headerTypes
.Count > 0; }
86
if (
_headerTypes
!= null)
87
_headerTypes
.Clear();
100
List<XmlQualifiedName> headerTypes = specification.
_headerTypes
;
103
if (
_headerTypes
== null)
111
_headerTypes
.Add(qname);
121
if (
_headerTypes
!= null)
123
List<XmlQualifiedName> noDuplicates = new List<XmlQualifiedName>(
_headerTypes
.Count);
124
for (int i = 0; i <
_headerTypes
.Count; i++)
126
XmlQualifiedName qname =
_headerTypes
[i];
176
_headerTypes
.Add(headerTypes[i]);
196
if (
_headerTypes
!= null)
198
for (int i = 0; i <
_headerTypes
.Count; i++)
200
XmlQualifiedName qname =
_headerTypes
[i];
224
if (
_headerTypes
!= null &&
_headerTypes
.Count > 0)