// Token: 0x06006485 RID: 25733 RVA: 0x00154E08 File Offset: 0x00153008 bool IBindableVectorView.IndexOf(object value, out uint index) { IBindableVectorView ibindableVectorViewNoThrow = this.GetIBindableVectorViewNoThrow(); if (ibindableVectorViewNoThrow != null) { return(ibindableVectorViewNoThrow.IndexOf(value, out index)); } return(this.GetVectorViewOfT().IndexOf(ICustomPropertyProviderProxy <T1, T2> .ConvertTo <T2>(value), out index)); }
// Token: 0x0600647E RID: 25726 RVA: 0x00154CF0 File Offset: 0x00152EF0 void IBindableVector.Append(object value) { IBindableVector ibindableVectorNoThrow = this.GetIBindableVectorNoThrow(); if (ibindableVectorNoThrow != null) { ibindableVectorNoThrow.Append(value); return; } this.GetVectorOfT().Append(ICustomPropertyProviderProxy <T1, T2> .ConvertTo <T1>(value)); }
// Token: 0x0600647C RID: 25724 RVA: 0x00154C90 File Offset: 0x00152E90 void IBindableVector.InsertAt(uint index, object value) { IBindableVector ibindableVectorNoThrow = this.GetIBindableVectorNoThrow(); if (ibindableVectorNoThrow != null) { ibindableVectorNoThrow.InsertAt(index, value); return; } this.GetVectorOfT().InsertAt(index, ICustomPropertyProviderProxy <T1, T2> .ConvertTo <T1>(value)); }
// Token: 0x06007025 RID: 28709 RVA: 0x001812F6 File Offset: 0x0017F4F6 bool IBindableVectorView.IndexOf(object value, out uint index) { return(this._vectorView.IndexOf(ICustomPropertyProviderProxy <T1, T2> .ConvertTo <T>(value), out index)); }