public bool Equals(PropertyToken obj) { if (ReferenceEquals(null, obj)) return false; if (ReferenceEquals(this, obj)) return true; return Equals(obj.ParentTypeName, ParentTypeName) && Equals(obj.PropertyName, PropertyName); }
public static string HeaderTextFor(PropertyToken property) { return HeaderFor(property).Heading; }
public LocalizedHeader HeaderFor(PropertyToken property) { return new LocalizedHeader() { Heading = property.PropertyName }; }
public static LocalizedHeader HeaderFor(PropertyToken property) { return _providerSource().HeaderFor(property); }