1 implementation of IBindableVector
mscorlib (1)
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (1)
149
IBindableVector
, // IBindableVector -> IBindableVector/IVector<T>
51 references to IBindableVector
mscorlib (51)
system\runtime\interopservices\windowsruntime\bindablevectortocollectionadapter.cs (4)
41
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
103
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
system\runtime\interopservices\windowsruntime\bindablevectortolistadapter.cs (22)
43
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
54
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
62
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
78
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
88
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
112
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
135
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
143
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
166
IBindableVector
_this = JitHelpers.UnsafeCast<
IBindableVector
>(this);
172
private static object GetAt(
IBindableVector
_this, uint index)
190
private static void SetAt(
IBindableVector
_this, uint index, object value)
208
private static void InsertAtHelper(
IBindableVector
_this, uint index, object item)
226
private static void RemoveAtHelper(
IBindableVector
_this, uint index)
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (23)
258
if (iid == typeof(
IBindableVector
).GUID)
287
object
IBindableVector
.GetAt(uint index)
289
IBindableVector
bindableVector = GetIBindableVectorNoThrow();
303
uint
IBindableVector
.Size
307
IBindableVector
bindableVector = GetIBindableVectorNoThrow();
322
IBindableVectorView
IBindableVector
.GetView()
324
IBindableVector
bindableVector = GetIBindableVectorNoThrow();
375
bool
IBindableVector
.IndexOf(object value, out uint index)
377
IBindableVector
bindableVector = GetIBindableVectorNoThrow();
390
void
IBindableVector
.SetAt(uint index, object value)
392
IBindableVector
bindableVector = GetIBindableVectorNoThrow();
405
void
IBindableVector
.InsertAt(uint index, object value)
407
IBindableVector
bindableVector = GetIBindableVectorNoThrow();
420
void
IBindableVector
.RemoveAt(uint index)
422
IBindableVector
bindableVector = GetIBindableVectorNoThrow();
435
void
IBindableVector
.Append(object value)
437
IBindableVector
bindableVector = GetIBindableVectorNoThrow();
450
void
IBindableVector
.RemoveAtEnd()
452
IBindableVector
bindableVector = GetIBindableVectorNoThrow();
465
void
IBindableVector
.Clear()
467
IBindableVector
bindableVector = GetIBindableVectorNoThrow();
481
private
IBindableVector
GetIBindableVectorNoThrow()
484
return JitHelpers.UnsafeCast<
IBindableVector
>(_target);
system\stubhelpers.cs (2)
706
newItemsIP = Marshal.GetComInterfaceForObject(newItems, typeof(
IBindableVector
));
708
oldItemsIP = Marshal.GetComInterfaceForObject(oldItems, typeof(
IBindableVector
));