2 implementations of Skip
PresentationCore (1)
System\Windows\dataobject.cs (1)
2316public int Skip(int celt)
System.Private.Windows.Core (1)
System\Private\Windows\Ole\FormatEnumerator.cs (1)
86public int Skip(int celt)
8 references to Skip
System.Windows.Forms.Tests (8)
System\Windows\Forms\DataObjectTests.cs (8)
2231((HRESULT)enumerator.Skip(celt)).Should().Be(HRESULT.S_FALSE); 2235((HRESULT)enumerator.Skip(-1)).Should().Be(HRESULT.S_OK); 2255((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_OK); 2265((HRESULT)enumerator.Skip(-2)).Should().Be(HRESULT.S_OK); 2275((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_OK); 2284((HRESULT)enumerator.Skip(0)).Should().Be(HRESULT.S_FALSE); 2285((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_FALSE); 2288((HRESULT)enumerator.Skip(-4)).Should().Be(HRESULT.S_OK);