15 references to Value
System.Private.Xml (15)
System\Xml\Schema\ConstraintStruct.cs (15)
351
return this.Type.Compare(this.
Value
!, other.
Value
!) == 0;
355
Array? arr1 = this.
Value
as System.Array;
359
return atomicValues1.Length == 1 && atomicValues1.GetValue(0)!.Equals(other.
Value
);
364
return arr1.Length == 1 && arr1.GetValue(0)!.Equals(other.
Value
);
370
Array? arr2 = other.
Value
as System.Array;
374
return atomicValues2.Length == 1 && atomicValues2.GetValue(0)!.Equals(this.
Value
);
379
return arr2.Length == 1 && arr2.GetValue(0)!.Equals(this.
Value
);
384
return this.
Value
!.Equals(other.
Value
);
433
if ((_ks[i] == null) || (_ks[i].
Value
== null)) return false;
461
if (_ks[i].
Value
is Array arr)
473
for (int j = 0; j < ((Array)_ks[i].
Value
!).Length; j++)
475
_hashcode += ((Array)_ks[i].
Value
!).GetValue(j)!.GetHashCode();
481
_hashcode += _ks[i].
Value
!.GetHashCode();