6 references to MarshalInterface
PresentationFramework (6)
MS\Internal\WindowsRuntime\Generated\WinRT\Marshalers.cs (5)
1080CreateMarshaler = (T value) => MarshalInterface<T>.CreateMarshaler(value); 1081GetAbi = (object objRef) => MarshalInterface<T>.GetAbi((IObjectReference)objRef); 1082FromAbi = (object value) => (T)(object)MarshalInterface<T>.FromAbi((IntPtr)value); 1084DisposeMarshaler = (object objRef) => MarshalInterface<T>.DisposeMarshaler((IObjectReference)objRef); 1085DisposeAbi = (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());