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
-
objectTimeSpanContainer
- Implements
- Extension Methods
Constructors
TimeSpanContainer(TimeSpan)
Creates new instance of TimeSpanContainer.
public TimeSpanContainer(TimeSpan ts)
Parameters
ts
TimeSpanTimeSpan 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
stringColumn 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
stringColumn name
Returns
- bool
Equals(object)
Returns true if time spans are same.
public override bool Equals(object obj)
Parameters
obj
objectObject 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
stringColumn name
Returns
- object
SetValue(string, object)
Not implemented.
public bool SetValue(string columnName, object value)
Parameters
columnName
stringColumn name
value
objectNew 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
stringThe format to use or a null reference to use the default format defined for the type of the System.IFormattable implementation.
formatProvider
IFormatProviderThe 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
stringColumn name
value
objectReturns the value
Returns
- bool
Returns true if the operation was successful (the value was present)