1 write to _associatedAttribute
Microsoft.ML.Data (1)
Data\DataViewTypeManager.cs (1)
236_associatedAttribute = attribute;
13 references to _associatedAttribute
Microsoft.ML.Data (13)
Data\DataViewTypeManager.cs (13)
217/// An instance of <see cref="TypeWithAttributes"/> represents an unique key of its <see cref="TargetType"/> and <see cref="_associatedAttribute"/>. 227/// The underlying type's attributes. Together with <see cref="TargetType"/>, <see cref="_associatedAttribute"/> uniquely defines 248if (_associatedAttribute == null && other._associatedAttribute == null) 250else if (_associatedAttribute == null && other._associatedAttribute != null) 252else if (_associatedAttribute != null && other._associatedAttribute == null) 256sameAttributeConfig = _associatedAttribute.Equals(other._associatedAttribute); 271if (_associatedAttribute == null) 275if (_associatedAttribute != null) 277code = Hashing.CombineHash(code, _associatedAttribute.GetHashCode());