6 references to MarshalInterface
PresentationFramework (6)
MS\Internal\WindowsRuntime\Generated\WinRT\Marshalers.cs (5)
1069
CreateMarshaler = (T value) =>
MarshalInterface
<T>.CreateMarshaler(value);
1070
GetAbi = (object objRef) =>
MarshalInterface
<T>.GetAbi((IObjectReference)objRef);
1071
FromAbi = (object value) => (T)(object)
MarshalInterface
<T>.FromAbi((IntPtr)value);
1073
DisposeMarshaler = (object objRef) =>
MarshalInterface
<T>.DisposeMarshaler((IObjectReference)objRef);
1074
DisposeAbi = (object box) =>
MarshalInterface
<T>.DisposeAbi((IntPtr)box);
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (1)
130
__return_value__ =
MarshalInterface
<global::System.Collections.Generic.IEnumerator<T>>.FromManaged(__this.GetEnumerator());