C# Class GitSharp.Core.TreeWalk.WorkingTreeIterator.Entry

A single entry within a working directory tree.
Mostra file Open project: stschake/GitSharp

Public Methods

Method Description
EncodeName ( Encoding enc ) : void
OpenInputStream ( ) : FileStream

Obtain an input stream to Read the file content. Efficient implementations are not required. The caller will usually obtain the stream only once per entry, if at all. The input stream should not use buffering if the implementation can avoid it. The caller will buffer as necessary to perform efficient block IO operations. The caller will close the stream once complete.

ToString ( ) : string

Method Details

EncodeName() public method

public EncodeName ( Encoding enc ) : void
enc System.Text.Encoding
return void

OpenInputStream() public abstract method

Obtain an input stream to Read the file content. Efficient implementations are not required. The caller will usually obtain the stream only once per entry, if at all. The input stream should not use buffering if the implementation can avoid it. The caller will buffer as necessary to perform efficient block IO operations. The caller will close the stream once complete.
public abstract OpenInputStream ( ) : FileStream
return System.IO.FileStream

ToString() public method

public ToString ( ) : string
return string