Table of Contents

Class TimeSpanContainer

Namespace
CMS.MacroEngine
Assembly
CMS.MacroEngine.dll

Object encapsulating TimeSpan objects to be accessible via macro engine.

public class TimeSpanContainer : IDataContainer, ISimpleDataContainer
Inheritance
object
TimeSpanContainer
Implements
Extension Methods

Constructors

TimeSpanContainer(TimeSpan)

Creates new instance of TimeSpanContainer.

public TimeSpanContainer(TimeSpan ts)

Parameters

ts TimeSpan

TimeSpan object to be encapsulated

Properties

ColumnNames

Column names.

public List<string> ColumnNames { get; }

Property Value

List<string>

this[string]

Gets the value of the column, setter is not implemented.

public object this[string columnName] { get; set; }

Parameters

columnName string

Column name

Property Value

object

TimeSpan

Gets the encapsulated TimeSpan.

public TimeSpan TimeSpan { get; }

Property Value

TimeSpan

Methods

ContainsColumn(string)

Returns true if the object contains specified column.

public bool ContainsColumn(string columnName)

Parameters

columnName string

Column name

Returns

bool

Equals(object)

Returns true if time spans are same.

public override bool Equals(object obj)

Parameters

obj object

Object to compare with

Returns

bool

GetHashCode()

Returns hash code.

public override int GetHashCode()

Returns

int

GetValue(string)

Gets or sets the value of the column.

public object GetValue(string columnName)

Parameters

columnName string

Column name

Returns

object

SetValue(string, object)

Not implemented.

public bool SetValue(string columnName, object value)

Parameters

columnName string

Column name

value object

New value

Returns

bool

ToString()

Returns string representation of datetime.

public override string ToString()

Returns

string

ToString(string, IFormatProvider)

Formats the value of the current instance using the specified format.

public string ToString(string format, IFormatProvider formatProvider)

Parameters

format string

The format to use or a null reference to use the default format defined for the type of the System.IFormattable implementation.

formatProvider IFormatProvider

The provider to use to format the value or a null reference to obtain the numeric format information from the current locale setting of the operating system.

Returns

string

The value of the current instance in the specified format.

TryGetValue(string, out object)

Returns value of column.

public bool TryGetValue(string columnName, out object value)

Parameters

columnName string

Column name

value object

Returns the value

Returns

bool

Returns true if the operation was successful (the value was present)