9 writes to nanoseconds
System.Xml (9)
System\Xml\Schema\XsdDuration.cs (9)
65
this.
nanoseconds
= (uint) nanoseconds;
68
this.
nanoseconds
|= NegativeBit;
112
this.
nanoseconds
= (uint) (ticksPos % 10000000) * 100;
114
this.
nanoseconds
|= NegativeBit;
148
this.
nanoseconds
= (uint)result.Nanoseconds;
150
this.
nanoseconds
|= NegativeBit;
466
result.
nanoseconds
= NegativeBit;
469
result.
nanoseconds
= 0;
574
result.
nanoseconds
|= (uint) value;
2 references to nanoseconds
System.Xml (2)
System\Xml\Schema\XsdDuration.cs (2)
159
get { return (this.
nanoseconds
& NegativeBit) != 0; }
208
get { return (int) (this.
nanoseconds
& ~NegativeBit); }