6 references to MarshalInterface
PresentationFramework (6)
MS\Internal\WindowsRuntime\Generated\WinRT\Marshalers.cs (5)
1080
CreateMarshaler = (T value) =>
MarshalInterface
<T>.CreateMarshaler(value);
1081
GetAbi = (object objRef) =>
MarshalInterface
<T>.GetAbi((IObjectReference)objRef);
1082
FromAbi = (object value) => (T)(object)
MarshalInterface
<T>.FromAbi((IntPtr)value);
1084
DisposeMarshaler = (object objRef) =>
MarshalInterface
<T>.DisposeMarshaler((IObjectReference)objRef);
1085
DisposeAbi = (object box) =>
MarshalInterface
<T>.DisposeAbi((IntPtr)box);
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (1)
136
__return_value__ =
MarshalInterface
<global::System.Collections.Generic.IEnumerator<T>>.FromManaged(__this.GetEnumerator());