Class NcTimeRangeType
A data type for a start and end time.
Inheritance
System.Object
NcTimeRangeType
Implements
System.IEquatable<NcTimeRangeType>
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: NiemTypes
Assembly: EidoLib.dll
Syntax
[DataContract]
public class NcTimeRangeType : IEquatable<NcTimeRangeType>
Properties
BeginTime
A start or begin time. NIEM reference is nc:BeginTime
Declaration
[DataMember(Name = "beginTime")]
public List<NiemXstime> BeginTime { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<NiemXstime> | A start or begin time. NIEM reference is nc:BeginTime |
Context
ncTimeRangeType JSON-LD context
Declaration
[DataMember(Name = "@context")]
public NcTimeRangeType.ContextEnum? Context { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<NcTimeRangeType.ContextEnum> | ncTimeRangeType JSON-LD context |
EndTime
An end time. NIEM reference is nc:EndTime
Declaration
[DataMember(Name = "endTime")]
public List<NiemXstime> EndTime { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<NiemXstime> | An end time. NIEM reference is nc:EndTime |
Methods
Equals(NcTimeRangeType)
Returns true if NcTimeRangeType instances are equal
Declaration
public bool Equals(NcTimeRangeType other)
Parameters
Type | Name | Description |
---|---|---|
NcTimeRangeType | other | Instance of NcTimeRangeType to be compared |
Returns
Type | Description |
---|---|
System.Boolean | Boolean |
Equals(Object)
Returns true if objects are equal
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | Object to be compared |
Returns
Type | Description |
---|---|
System.Boolean | Boolean |
Overrides
System.Object.Equals(System.Object)
GetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | Hash code |
Overrides
System.Object.GetHashCode()
ToJson()
Returns the JSON string presentation of the object
Declaration
public string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String presentation of the object |
Overrides
System.Object.ToString()
Operators
Equality(NcTimeRangeType, NcTimeRangeType)
Declaration
public static bool operator ==(NcTimeRangeType left, NcTimeRangeType right)
Parameters
Type | Name | Description |
---|---|---|
NcTimeRangeType | left | |
NcTimeRangeType | right |
Returns
Type | Description |
---|---|
System.Boolean |
Inequality(NcTimeRangeType, NcTimeRangeType)
Declaration
public static bool operator !=(NcTimeRangeType left, NcTimeRangeType right)
Parameters
Type | Name | Description |
---|---|---|
NcTimeRangeType | left | |
NcTimeRangeType | right |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<T>