2 implementations of Skip
PresentationCore (1)
System\Windows\dataobject.cs (1)
2342public int Skip(int celt)
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObject.FormatEnumerator.cs (1)
88public int Skip(int celt)
8 references to Skip
System.Windows.Forms.Tests (8)
System\Windows\Forms\DataObjectTests.cs (8)
2151((HRESULT)enumerator.Skip(celt)).Should().Be(HRESULT.S_FALSE); 2155((HRESULT)enumerator.Skip(-1)).Should().Be(HRESULT.S_OK); 2175((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_OK); 2185((HRESULT)enumerator.Skip(-2)).Should().Be(HRESULT.S_OK); 2195((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_OK); 2204((HRESULT)enumerator.Skip(0)).Should().Be(HRESULT.S_FALSE); 2205((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_FALSE); 2208((HRESULT)enumerator.Skip(-4)).Should().Be(HRESULT.S_OK);