// // System.Windows.Forms.IFileReaderService.cs // // Author: // William Lamb (wdlamb@notwires.com) // Dennis Hayes (dennish@raytek.com) // // (C) 2002 Ximian, Inc. http://www.ximian.com // using System.IO; namespace System.Windows.Forms { public interface IFileReaderService { // There is no documentation for this interface's members! // Only a note saying that it supports the .NET infrastructure // and is not intended to be used directly from your code. // The following method had its own listing in the documentation; // I don't know what other methods and properties there may be. Stream OpenFileFromSource(string relativePath); } }