1 write to StubReturnType
Microsoft.Interop.SourceGeneration (1)
SignatureContext.cs (1)
95StubReturnType = method.ReturnType.AsTypeSyntax(),
13 references to StubReturnType
Microsoft.Interop.ComInterfaceGenerator (6)
ComInterfaceGenerator.cs (4)
698writer.Write($"{inheritedStub.GenerationContext.SignatureContext.StubReturnType} {inheritedStub.OriginalDeclaringInterface.Info.Type.FullTypeName}.{inheritedStub.MethodInfo.MethodName}"); 834valueType = genCtx.SignatureContext.StubReturnType; 930: sigContext.StubReturnType; 999writer.Write($"new {sigContext.StubReturnType} {shadow.MethodInfo.MethodName}");
VirtualMethodPointerStubGenerator.cs (2)
137return MethodDeclaration(stub.StubReturnType, stubMethodSyntax.Identifier) 170valueType = methodStub.SignatureContext.StubReturnType;
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)
226&& StubReturnType.IsEquivalentTo(other.StubReturnType)