15 references to Value
System.Xml (15)
System\Xml\Schema\ConstraintStruct.cs (15)
307return this.Type.Compare(this.Value, other.Value) == 0; 310Array arr1 = this.Value as System.Array; 313return atomicValues1.Length == 1 && atomicValues1.GetValue(0).Equals(other.Value); 316return arr1.Length == 1 && arr1.GetValue(0).Equals(other.Value); 321Array arr2 = other.Value as System.Array; 324return atomicValues2.Length == 1 && atomicValues2.GetValue(0).Equals(this.Value); 327return arr2.Length == 1 && arr2.GetValue(0).Equals(this.Value); 331return this.Value.Equals(other.Value); 377if ((this.ks[i] == null) || (this.ks[i].Value == null)) return false; 399 Array arr = this.ks[i].Value as System.Array; 408 for (int j = 0 ; j < ((Array) this.ks[i].Value).Length ; j ++) { 409 hashcode += ((Array) this.ks[i].Value).GetValue(j).GetHashCode(); 414 hashcode += this.ks[i].Value.GetHashCode();