7 writes to CreateMarshaler
PresentationFramework (7)
MS\Internal\WindowsRuntime\Generated\WinRT\Marshalers.cs (7)
992CreateMarshaler = (T value) => MarshalString.CreateMarshaler((string)(object)value); 1009CreateMarshaler = MarshalGeneric<T>.CreateMarshaler; 1033CreateMarshaler = (T value) => value; 1049CreateMarshaler = MarshalNonBlittable<T>.CreateMarshaler; 1069CreateMarshaler = (T value) => MarshalInterface<T>.CreateMarshaler(value); 1079CreateMarshaler = (T value) => MarshalInspectable.CreateMarshaler(value); 1090CreateMarshaler = MarshalGeneric<T>.CreateMarshaler;
3 references to CreateMarshaler
PresentationFramework (3)
MS\Internal\WindowsRuntime\Generated\WinRT\Marshalers.cs (2)
465m._marshalers[i] = Marshaler<T>.CreateMarshaler(array[i]); 1072FromManaged = (T value) => ((IObjectReference)CreateMarshaler(value)).GetRef();
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IReadOnlyList.cs (1)
385__value = Marshaler<T>.CreateMarshaler(value);