11 references to ToManaged
Microsoft.Interop.LibraryImportGenerator (3)
Analyzers\CustomMarshallerAttributeAnalyzer.cs (3)
820
if ((shape & (MarshallerShape.
ToManaged
| MarshallerShape.GuaranteedUnmarshal)) == 0)
931
if (shape.HasFlag(MarshallerShape.
ToManaged
| MarshallerShape.GuaranteedUnmarshal))
1117
if ((shape & (MarshallerShape.
ToManaged
| MarshallerShape.GuaranteedUnmarshal)) == 0)
Microsoft.Interop.SourceGeneration (8)
ManualTypeMarshallingHelper.cs (2)
484
if (!ModeOptionallyMatchesShape(mode) && !shape.HasFlag(MarshallerShape.GuaranteedUnmarshal) && !shape.HasFlag(MarshallerShape.
ToManaged
))
580
if (mode != MarshalMode.Default && !shape.HasFlag(MarshallerShape.GuaranteedUnmarshal) && !shape.HasFlag(MarshallerShape.
ToManaged
))
MarshallerShape.cs (3)
154
shape |= MarshallerShape.
ToManaged
;
180
shape |= MarshallerShape.
ToManaged
;
515
shape |= MarshallerShape.
ToManaged
;
Marshalling\StatefulMarshallingStrategy.cs (2)
99
if (!shape.HasFlag(MarshallerShape.
ToManaged
))
114
if (!shape.HasFlag(MarshallerShape.
ToManaged
) && !shape.HasFlag(MarshallerShape.GuaranteedUnmarshal))
Marshalling\StatelessMarshallingStrategy.cs (1)
105
if (!shape.HasFlag(MarshallerShape.
ToManaged
))