C# Class ZeroInstall.Store.Implementations.ManifestFileBase

Inheritance: ManifestDirectoryElement
Mostrar archivo Open project: 0install/0install-win Class Usage Examples

Public Methods

Method Description
GetHashCode ( ) : int

Protected Methods

Method Description
Equals ( ManifestFileBase other ) : bool
ManifestFileBase ( string digest, System.DateTime modifiedTime, long size, string name ) : System

Creates a new file entry.

Method Details

Equals() protected method

protected Equals ( ManifestFileBase other ) : bool
other ManifestFileBase
return bool

GetHashCode() public method

public GetHashCode ( ) : int
return int

ManifestFileBase() protected method

Creates a new file entry.
contains a newline character.
protected ManifestFileBase ( string digest, System.DateTime modifiedTime, long size, string name ) : System
digest string The digest of the content of the file calculated using the selected digest algorithm.
modifiedTime System.DateTime The time this file was last modified.
size long The size of the file in bytes.
name string The name of the file without the containing directory.
return System