2 implementations of Iid
System.Runtime.InteropServices (2)
System\Runtime\InteropServices\Marshalling\ComImportInteropInterfaceDetailsStrategy.cs (1)
175public Guid Iid { get; } = iid;
System\Runtime\InteropServices\Marshalling\IUnknownDerivedAttribute.cs (1)
24public Guid Iid => T.Iid;
2 references to Iid
System.Runtime.InteropServices (2)
System\Runtime\InteropServices\Marshalling\ComInterfaceMarshaller.cs (1)
24private static readonly Guid? TargetInterfaceIID = StrategyBasedComWrappers.DefaultIUnknownInterfaceDetailsStrategy.GetIUnknownDerivedDetails(typeof(T).TypeHandle)?.Iid;
System\Runtime\InteropServices\Marshalling\ComObject.cs (1)
130int hr = IUnknownStrategy.QueryInterface(_instancePointer, details.Iid, out void* ppv);