2 implementations of Interface
System.Private.Windows.Core (1)
Windows\Win32\System\Com\ComManagedStream.cs (1)
8internal sealed unsafe class ComManagedStream : IStream.Interface, IManagedWrapper<IStream, ISequentialStream>
System.Windows.Forms.Primitives.Tests (1)
Windows\Win32\GlobalInterfaceTableTests.cs (1)
37internal class MyStream : IStream.Interface, IManagedWrapper<IStream, ISequentialStream>
28 references to Interface
System.Private.Windows.Core (25)
Windows.Win32.IStream.g.cs (11)
62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 87 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 112 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 151 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 185 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 222 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 259 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 289 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 325 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 371 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 412 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object);
Windows.Win32.System_Com_IStream_Extensions.g.cs (2)
23 /// <inheritdoc cref="winmdroot.System.Com.IStream.Interface.Stat(winmdroot.System.Com.STATSTG*, uint)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT Stat(this winmdroot.System.Com.IStream.Interface @this, out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag)
Windows\Win32\System\Com\ComManagedStream.cs (12)
46HRESULT IStream.Interface.Clone(IStream** ppstm) 60HRESULT IStream.Interface.Commit(uint grfCommitFlags) 69HRESULT IStream.Interface.CopyTo(IStream* pstm, ulong cb, ulong* pcbRead, ulong* pcbWritten) 88((IStream.Interface)this).Read(b, read, &read); 130HRESULT IStream.Interface.Read(void* pv, uint cb, uint* pcbRead) 133HRESULT IStream.Interface.Seek(long dlibMove, SeekOrigin dwOrigin, ulong* plibNewPosition) 185HRESULT IStream.Interface.SetSize(ulong libNewSize) 191HRESULT IStream.Interface.Stat(STATSTG* pstatstg, uint grfStatFlag) 221HRESULT IStream.Interface.LockRegion(ulong libOffset, ulong cb, uint dwLockType) => HRESULT.STG_E_INVALIDFUNCTION; 224HRESULT IStream.Interface.Revert() => HRESULT.S_OK; 227HRESULT IStream.Interface.UnlockRegion(ulong libOffset, ulong cb, uint dwLockType) => HRESULT.STG_E_INVALIDFUNCTION; 247HRESULT IStream.Interface.Write(void* pv, uint cb, uint* pcbWritten)
System.Windows.Forms (2)
System\Windows\Forms\Controls\ImageList\ImageList.NativeImageList.cs (1)
21public unsafe NativeImageList(IStream.Interface pstm)
System\Windows\Forms\Input\Cursor.cs (1)
399private unsafe void LoadPicture(IStream.Interface stream, string paramName)
System.Windows.Forms.Tests (1)
System\Windows\Forms\DragDropFormatTests.cs (1)
46IStream.Interface iStream = new ComManagedStream(memoryStream);