11 references to GuaranteedUnmarshal
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)
157
shape |= MarshallerShape.
GuaranteedUnmarshal
;
184
shape |= MarshallerShape.
GuaranteedUnmarshal
;
511
shape |= MarshallerShape.
GuaranteedUnmarshal
;
Marshalling\StatefulMarshallingStrategy.cs (2)
55
if (!shape.HasFlag(MarshallerShape.
GuaranteedUnmarshal
))
114
if (!shape.HasFlag(MarshallerShape.ToManaged) && !shape.HasFlag(MarshallerShape.
GuaranteedUnmarshal
))
Marshalling\StatelessMarshallingStrategy.cs (1)
33
if (!shape.HasFlag(MarshallerShape.
GuaranteedUnmarshal
))