C# Class GSF.Historian.Exporters.Export

Show file Open project: GridProtectionAlliance/gsf Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
Equals ( object obj ) : bool

Determines whether the current Export object is equal to obj.

Export ( ) : System

Initializes a new instance of the Export class.

FindRecord ( string instance, int identifier ) : ExportRecord

Returns the ExportRecord for the specified instance and identifier from the Records.

FindRecords ( string instance ) : IList

Returns the ExportRecords for the specified instance from the Records.

FindSetting ( string settingName ) : ExportSetting

Returns the ExportSetting for the specified settingName from the Settings.

GetHashCode ( ) : int

Returns the hash code for the current Export object.

ShouldProcess ( ) : bool

Determines if it is time to process the Export if its Type is ExportType.Intervaled.

Method Details

Equals() public method

Determines whether the current Export object is equal to obj.
public Equals ( object obj ) : bool
obj object Object against which the current object is to be compared for equality.
return bool

Export() public method

Initializes a new instance of the Export class.
public Export ( ) : System
return System

FindRecord() public method

Returns the ExportRecord for the specified instance and identifier from the Records.
public FindRecord ( string instance, int identifier ) : ExportRecord
instance string name of the to be retrieved.
identifier int of the to be retrieved.
return ExportRecord

FindRecords() public method

Returns the ExportRecords for the specified instance from the Records.
public FindRecords ( string instance ) : IList
instance string name of the s to be retrieved.
return IList

FindSetting() public method

Returns the ExportSetting for the specified settingName from the Settings.
public FindSetting ( string settingName ) : ExportSetting
settingName string of the to be retrieved.
return ExportSetting

GetHashCode() public method

Returns the hash code for the current Export object.
public GetHashCode ( ) : int
return int

ShouldProcess() public method

Determines if it is time to process the Export if its Type is ExportType.Intervaled.
public ShouldProcess ( ) : bool
return bool