4 references to GetManagedArgumentRefKindKeyword
Microsoft.Interop.ComInterfaceGenerator (2)
ComInterfaceGenerator.cs (2)
943
indexArgList = string.Join(", ", managedParams.Take(indexCount).Select(mp => $"{(mp.IsByRef ? $"{MarshallerHelpers.
GetManagedArgumentRefKindKeyword
(mp)} " : "")}{mp.InstanceIdentifier}"));
1002
writer.WriteLine($"({string.Join(", ", sigContext.ManagedParameters.Select(mp => $"{(mp.IsByRef ? $"{MarshallerHelpers.
GetManagedArgumentRefKindKeyword
(mp)} " : "")}{mp.InstanceIdentifier}"))});");
Microsoft.Interop.SourceGeneration (2)
Marshalling\MarshallingGeneratorExtensions.cs (2)
146
ValueBoundaryBehavior.ManagedIdentifier when info.IsByRef => Argument(IdentifierName(managedIdentifier)).WithRefKindKeyword(MarshallerHelpers.
GetManagedArgumentRefKindKeyword
(info)),
160
return Argument(IdentifierName(managedIdentifier)).WithRefKindKeyword(MarshallerHelpers.
GetManagedArgumentRefKindKeyword
(info));