// Token: 0x06006479 RID: 25721 RVA: 0x00154BF8 File Offset: 0x00152DF8
        IBindableVectorView IBindableVector.GetView()
        {
            IBindableVector ibindableVectorNoThrow = this.GetIBindableVectorNoThrow();

            if (ibindableVectorNoThrow != null)
            {
                return(ibindableVectorNoThrow.GetView());
            }
            return(new ICustomPropertyProviderProxy <T1, T2> .IVectorViewToIBindableVectorViewAdapter <T1>(this.GetVectorOfT().GetView()));
        }
Exemplo n.º 2
0
        IBindableVectorView IBindableVector.GetView()
        {
            IBindableVector bindableVector = GetIBindableVectorNoThrow();

            if (bindableVector != null)
            {
                // IBindableVector -> IBindableVector
                return(bindableVector.GetView());
            }
            else
            {
                // IBindableVector -> IVector<T>
                return(new IVectorViewToIBindableVectorViewAdapter <T1>(GetVectorOfT().GetView()));
            }
        }