C# Class TagLib.File.LocalFileAbstraction

This class implements IFileAbstraction to provide support for accessing the local/standard file system.
This class is used as the standard file abstraction throughout the library.
Inheritance: IFileAbstraction
Mostrar archivo Open project: secred/Tachycardia

Public Methods

Method Description
CloseStream ( System stream ) : void

Closes a stream created by the current instance.

LocalFileAbstraction ( string path ) : System

Constructs and initializes a new instance of LocalFileAbstraction for a specified path in the local file system.

Method Details

CloseStream() public method

Closes a stream created by the current instance.
public CloseStream ( System stream ) : void
stream System /// A object /// created by the current instance. ///
return void

LocalFileAbstraction() public method

Constructs and initializes a new instance of LocalFileAbstraction for a specified path in the local file system.
/// is . ///
public LocalFileAbstraction ( string path ) : System
path string /// A object containing the /// path of the file to use in the new instance. ///
return System