7 writes to CreateMarshaler
PresentationFramework (7)
MS\Internal\WindowsRuntime\Generated\WinRT\Marshalers.cs (7)
1003CreateMarshaler = (T value) => MarshalString.CreateMarshaler((string)(object)value); 1020CreateMarshaler = MarshalGeneric<T>.CreateMarshaler; 1044CreateMarshaler = (T value) => value; 1060CreateMarshaler = MarshalNonBlittable<T>.CreateMarshaler; 1080CreateMarshaler = (T value) => MarshalInterface<T>.CreateMarshaler(value); 1090CreateMarshaler = (T value) => MarshalInspectable.CreateMarshaler(value); 1101CreateMarshaler = MarshalGeneric<T>.CreateMarshaler;
3 references to CreateMarshaler
PresentationFramework (3)
MS\Internal\WindowsRuntime\Generated\WinRT\Marshalers.cs (2)
476m._marshalers[i] = Marshaler<T>.CreateMarshaler(array[i]); 1083FromManaged = (T value) => ((IObjectReference)CreateMarshaler(value)).GetRef();
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IReadOnlyList.cs (1)
391__value = Marshaler<T>.CreateMarshaler(value);