8 references to StringMarshallingCustomType
Microsoft.Interop.ComInterfaceGenerator (2)
ComInterfaceInfo.cs (2)
200
if (attrInfo.IsUserDefined.HasFlag(InteropAttributeMember.StringMarshalling) || attrInfo.IsUserDefined.HasFlag(InteropAttributeMember.
StringMarshallingCustomType
))
237
if ((baseAttr.IsUserDefined.HasFlag(InteropAttributeMember.StringMarshalling) || baseAttr.IsUserDefined.HasFlag(InteropAttributeMember.
StringMarshallingCustomType
))
Microsoft.Interop.LibraryImportGenerator (3)
LibraryImportGenerator.cs (3)
401
if (pinvokeData.IsUserDefined.HasFlag(InteropAttributeMember.
StringMarshallingCustomType
))
408
$"{nameof(TypeNames.LibraryImportAttribute)}{Type.Delimiter}{nameof(InteropAttributeMember.
StringMarshallingCustomType
)}");
411
pinvokeData = pinvokeData with { IsUserDefined = pinvokeData.IsUserDefined & ~InteropAttributeMember.
StringMarshallingCustomType
};
Microsoft.Interop.LibraryImportGenerator.Downlevel (1)
DownlevelLibraryImportGeneratorHelpers.cs (1)
26
else if (interopAttributeData.IsUserDefined.HasFlag(InteropAttributeMember.
StringMarshallingCustomType
))
Microsoft.Interop.SourceGeneration (2)
DefaultMarshallingInfoParser.cs (1)
46
else if (interopAttributeData.IsUserDefined.HasFlag(InteropAttributeMember.
StringMarshallingCustomType
))
InteropAttributeData.cs (1)
84
userDefinedValues |= InteropAttributeMember.
StringMarshallingCustomType
;