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