4 references to AllowUnsafe
Microsoft.Interop.LibraryImportGenerator (4)
Analyzers\ConvertToLibraryImportFixer.cs (1)
39
bool allowUnsafe = selectedOptions.TryGetValue(Option.
AllowUnsafe
, out Option? allowUnsafeOption) && allowUnsafeOption is Option.Bool(true);
src\libraries\System.Runtime.InteropServices\gen\Common\ConvertToSourceGeneratedInteropFixer.cs (3)
46
public const string AllowUnsafe = nameof(
AllowUnsafe
);
135
var selectedOptions = fix.SelectedOptions.Add(Option.
AllowUnsafe
, new Option.Bool(true));
174
bool addUnsafe = options.TryGetValue(Option.
AllowUnsafe
, out Option allowUnsafeOption) && allowUnsafeOption is Option.Bool(true);