3 references to InheritedMethods
Microsoft.Interop.ComInterfaceGenerator (3)
ComInterfaceGenerator.cs (3)
565
var shadowImplementations = interfaceGroup.
InheritedMethods
.Where(m => !m.IsExternallyDefined).Select(m => (Method: m, ManagedToUnmanagedStub: m.ManagedToUnmanagedStub))
570
var inheritedStubs = interfaceGroup.
InheritedMethods
.Where(m => !m.IsExternallyDefined).Select(m => m.UnreachableExceptionStub);
663
foreach (ComMethodContext inheritedMethod in interfaceMethods.
InheritedMethods
)