// Token: 0x0600183F RID: 6207 RVA: 0x00074B11 File Offset: 0x00072D11 internal void CopyValue(BindingBase.Feature id, BindingBase clone) { if (this.HasValue(id)) { clone.SetValue(id, this.GetValue(id, null)); } }
// Token: 0x0600183D RID: 6205 RVA: 0x00074ADE File Offset: 0x00072CDE internal void SetValue(BindingBase.Feature id, object value, object defaultValue) { if (object.Equals(value, defaultValue)) { this._values.ClearValue((int)id); return; } this._values.SetValue((int)id, value); }
// Token: 0x0600183E RID: 6206 RVA: 0x00074B03 File Offset: 0x00072D03 internal void ClearValue(BindingBase.Feature id) { this._values.ClearValue((int)id); }
// Token: 0x0600183C RID: 6204 RVA: 0x00074ACF File Offset: 0x00072CCF internal void SetValue(BindingBase.Feature id, object value) { this._values.SetValue((int)id, value); }
// Token: 0x0600183B RID: 6203 RVA: 0x00074AC0 File Offset: 0x00072CC0 internal object GetValue(BindingBase.Feature id, object defaultValue) { return(this._values.GetValue((int)id, defaultValue)); }
// Token: 0x0600183A RID: 6202 RVA: 0x00074AB2 File Offset: 0x00072CB2 internal bool HasValue(BindingBase.Feature id) { return(this._values.HasValue((int)id)); }