Lucene.Net.Store.IndexInput.IndexInput C# (CSharp) Method

IndexInput() protected method

resourceDescription should be a non-null, opaque string describing this resource; it's returned from #toString.
protected IndexInput ( string resourceDescription ) : System
resourceDescription string
return System
        protected internal IndexInput(string resourceDescription)
        {
            if (resourceDescription == null)
            {
                throw new System.ArgumentException("resourceDescription must not be null");
            }
            this.ResourceDescription = resourceDescription;
        }