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)
84public int Skip(int celt)
8 references to Skip
System.Windows.Forms.Tests (8)
System\Windows\Forms\DataObjectTests.cs (8)
2232((HRESULT)enumerator.Skip(celt)).Should().Be(HRESULT.S_FALSE); 2236((HRESULT)enumerator.Skip(-1)).Should().Be(HRESULT.S_OK); 2256((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_OK); 2266((HRESULT)enumerator.Skip(-2)).Should().Be(HRESULT.S_OK); 2276((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_OK); 2285((HRESULT)enumerator.Skip(0)).Should().Be(HRESULT.S_FALSE); 2286((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_FALSE); 2289((HRESULT)enumerator.Skip(-4)).Should().Be(HRESULT.S_OK);