3 implementations of IBindableVectorView
mscorlib (3)
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (2)
150IBindableVectorView // IBindableVectorView -> IBindableVectorView/IVectorView<T> 337private sealed class IVectorViewToIBindableVectorViewAdapter<T> : IBindableVectorView
system\runtime\interopservices\windowsruntime\listtobindablevectorviewadapter.cs (1)
24internal sealed class ListToBindableVectorViewAdapter : IBindableVectorView
17 references to IBindableVectorView
mscorlib (17)
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (15)
181if (target as IBindableVectorView != null) 265if (iid == typeof(IBindableVectorView).GUID) 322IBindableVectorView IBindableVector.GetView() 347object IBindableVectorView.GetAt(uint index) 353uint IBindableVectorView.Size 362bool IBindableVectorView.IndexOf(object value, out uint index) 503object IBindableVectorView.GetAt(uint index) 505IBindableVectorView bindableVectorView = GetIBindableVectorViewNoThrow(); 513uint IBindableVectorView.Size 517IBindableVectorView bindableVectorView = GetIBindableVectorViewNoThrow(); 526bool IBindableVectorView.IndexOf(object value, out uint index) 528IBindableVectorView bindableVectorView = GetIBindableVectorViewNoThrow(); 537IBindableVectorView bindableVectorView = GetIBindableVectorViewNoThrow(); 557private IBindableVectorView GetIBindableVectorViewNoThrow() 560return JitHelpers.UnsafeCast<IBindableVectorView>(_target);
system\runtime\interopservices\windowsruntime\ivector.cs (1)
93IBindableVectorView GetView();
system\runtime\interopservices\windowsruntime\listtobindablevectoradapter.cs (1)
64internal IBindableVectorView GetView()