1 write to StubReturnType
Microsoft.Interop.SourceGeneration (1)
SignatureContext.cs (1)
95StubReturnType = method.ReturnType.AsTypeSyntax(),
10 references to StubReturnType
Microsoft.Interop.ComInterfaceGenerator (3)
ComInterfaceGenerator.cs (2)
604writer.Write($"{inheritedStub.GenerationContext.SignatureContext.StubReturnType} {inheritedStub.OriginalDeclaringInterface.Info.Type.FullTypeName}.{inheritedStub.MethodInfo.MethodName}"); 639writer.Write($"new {sigContext.StubReturnType} {shadow.MethodInfo.MethodName}");
VirtualMethodPointerStubGenerator.cs (1)
121return MethodDeclaration(stub.StubReturnType, stubMethodSyntax.Identifier)
Microsoft.Interop.JavaScript.JSImportGenerator (1)
JSImportGenerator.cs (1)
92MethodDeclarationSyntax stubMethod = MethodDeclaration(stub.SignatureContext.StubReturnType, userDeclaredMethod.Identifier)
Microsoft.Interop.LibraryImportGenerator (2)
LibraryImportGenerator.cs (2)
157return MethodDeclaration(stub.StubReturnType, userDeclaredMethod.Identifier) 354MethodDeclarationSyntax stubMethod = MethodDeclaration(stub.SignatureContext.StubReturnType, userDeclaredMethod.Identifier)
Microsoft.Interop.LibraryImportGenerator.Downlevel (2)
DownlevelLibraryImportGenerator.cs (2)
143return MethodDeclaration(stub.StubReturnType, userDeclaredMethod.Identifier) 302MethodDeclarationSyntax stubMethod = MethodDeclaration(stub.SignatureContext.StubReturnType, userDeclaredMethod.Identifier)
Microsoft.Interop.SourceGeneration (2)
SignatureContext.cs (2)
140&& StubReturnType.IsEquivalentTo(other.StubReturnType)