KFS.FileSystems.NTFS.NTFSFileStream.GetRuns C# (CSharp) Method

GetRuns() public method

Gets a list of the on-disk runs of this NTFSFileStream. Returns null if resident.
public GetRuns ( ) : IEnumerable
return IEnumerable
		public IEnumerable<IRun> GetRuns() {
			return _nonResident ? new ReadOnlyCollection<IRun>(_runs) : null;
		}

Usage Example

Beispiel #1
0
 /// <summary>
 /// Gets a list of the on-disk runs of this NTFSFile. Returns null if resident.
 /// </summary>
 public IEnumerable <IRun> GetRuns()
 {
     return(_stream.GetRuns());
 }