Lucene.Net.Store.SimpleFSDirectory.SimpleFSIndexInput.SimpleFSIndexInput C# (CSharp) Method

SimpleFSIndexInput() public method

public SimpleFSIndexInput ( string resourceDesc, FileStream file, IOContext context ) : System
resourceDesc string
file FileStream
context IOContext
return System
            public SimpleFSIndexInput(string resourceDesc, FileStream file, IOContext context)
                : base(resourceDesc, context)
            {
                this.File = file;
                this.Off = 0L;
                this.End = file.Length;
            }

Same methods

SimpleFSDirectory.SimpleFSIndexInput::SimpleFSIndexInput ( string resourceDesc, FileStream file, long off, long length, int bufferSize ) : System