  | FileSystemClientOpenFile Method | 
            Opens the specified file on the file system for reading.
            
Namespace: Ookii.Jumbo.Dfs.FileSystemAssembly: Ookii.Jumbo.Dfs (in Ookii.Jumbo.Dfs.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic abstract Stream OpenFile(
	string path
)
Public MustOverride Function OpenFile ( 
	path As String
) As Stream
public:
virtual Stream^ OpenFile(
	String^ path
) abstract
abstract OpenFile : 
        path : string -> Stream Parameters
- path  String
 - The path of the file.
 
Return Value
StreamA 
Stream that can be used to read the contents of the file.
See Also