C# Class SharpOS.Kernel.Vfs.NodeBase

Provides a default implementation for INodes. A filesystem implementation may choose to derive from BasicNode to receive a default implementation of the interface.
Inheritance: IVfsNode
Afficher le fichier Open project: sharpos/SharpOS

Méthodes publiques

Méthode Description
Create ( string name, VfsNodeType type, object settings ) : IVfsNode
Delete ( IVfsNode child, SharpOS.Kernel.Vfs.DirectoryEntry entry ) : void
Lookup ( string name ) : IVfsNode
Open ( FileAccess access, FileShare sharing ) : object

Méthodes protégées

Méthode Description
NodeBase ( IFileSystem fs, VfsNodeType type ) : System

Method Details

Create() public abstract méthode

public abstract Create ( string name, VfsNodeType type, object settings ) : IVfsNode
name string
type VfsNodeType
settings object
Résultat IVfsNode

Delete() public abstract méthode

public abstract Delete ( IVfsNode child, SharpOS.Kernel.Vfs.DirectoryEntry entry ) : void
child IVfsNode
entry SharpOS.Kernel.Vfs.DirectoryEntry
Résultat void

Lookup() public méthode

public Lookup ( string name ) : IVfsNode
name string
Résultat IVfsNode

NodeBase() protected méthode

protected NodeBase ( IFileSystem fs, VfsNodeType type ) : System
fs IFileSystem
type VfsNodeType
Résultat System

Open() public abstract méthode

public abstract Open ( FileAccess access, FileShare sharing ) : object
access FileAccess
sharing FileShare
Résultat object