Class TimeRange
Inheritance
System.Object
TimeRange
Implements
System.IEquatable<TimeRange>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: CrashCABN.TitleConfiguration.PullIngestion
Assembly: CrashCABN.TitleConfiguration.Abstractions.dll
Syntax
public class TimeRange : IEquatable<TimeRange>
Constructors
View SourceTimeRange(Int32, Int32)
Declaration
public TimeRange(int days, int hours)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | days | |
System.Int32 | hours |
Properties
View SourceDays
Declaration
public int Days { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Hours
Declaration
public int Hours { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Operators
View SourceImplicit(TimeRange to TimeSpan)
Declaration
public static implicit operator TimeSpan(TimeRange self)
Parameters
Type | Name | Description |
---|---|---|
TimeRange | self |
Returns
Type | Description |
---|---|
System.TimeSpan |
Implicit(TimeSpan to TimeRange)
Declaration
public static implicit operator TimeRange(TimeSpan other)
Parameters
Type | Name | Description |
---|---|---|
System.TimeSpan | other |
Returns
Type | Description |
---|---|
TimeRange |
Implements
System.IEquatable<T>