Lucene.Net.Index.IndexReader.LastModified C# (CSharp) 메소드

LastModified() 공개 정적인 메소드

Returns the time the index in the named directory was last modified. Do not use this to check whether the reader is still up-to-date, use IsCurrent() instead.
public static LastModified ( Directory directory2 ) : long
directory2 Directory
리턴 long
		public static long LastModified(Directory directory2)
		{
			return (long) ((System.Int64) new AnonymousClassFindSegmentsFile(directory2, directory2).Run());
		}