2 writes to attributes
dotnet-svcutil-lib (2)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ExtensionDataReader.cs (2)
582
attributes
= new AttributeData[4];
587
attributes
= newAttributes;
13 references to attributes
dotnet-svcutil-lib (13)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ExtensionDataObject.cs (3)
204
if (element.
attributes
!= null)
206
for (int i = 0; i < element.
attributes
.Length; i++)
208
AttributeData attribute = element.
attributes
[i];
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ExtensionDataReader.cs (10)
162
AttributeData attribute = _element.
attributes
[index];
178
AttributeData attribute = _element.
attributes
[i];
193
AttributeData attribute = _element.
attributes
[i];
569
AttributeData attribute =
attributes
[attributeCount];
571
attributes
[attributeCount] = attribute = new AttributeData();
581
if (
attributes
== null)
583
else if (
attributes
.Length == attributeCount)
585
AttributeData[] newAttributes = new AttributeData[
attributes
.Length * 2];
586
Array.Copy(
attributes
, 0, newAttributes, 0,
attributes
.Length);