Duration Struct

Definition

Represents the duration of time that a Timeline is active.

public value class Duration
public struct Duration
[System.Security.SecurityCritical]
public struct Duration
type Duration = struct
[<System.Security.SecurityCritical>]
type Duration = struct
Public Structure Duration
Inheritance
Duration
Attributes

Remarks

This struct represents the .NET projection of the Windows Runtime (WinRT) Duration struct. For more information, see Duration in the UWP API reference.

Constructors

Duration(TimeSpan)

Initializes a new instance of the Duration struct with the specified TimeSpan value.

Properties

Automatic

Gets a Duration value that is automatically determined.

Forever

Gets a Duration value that represents an infinite interval.

HasTimeSpan

Gets a value that indicates if this Duration represents a TimeSpan value.

TimeSpan

Gets the TimeSpan value that this Duration represents.

Methods

Add(Duration)

Adds the value of the specified Duration to this Duration.

Compare(Duration, Duration)

Compares one Duration value to another.

Equals(Duration)

Determines whether a specified Duration is equal to this Duration.

Equals(Duration, Duration)

Determines whether two Duration values are equal.

Equals(Object)

Determines whether a specified object is equal to a Duration.

GetHashCode()

Gets a hash code for this object.

Subtract(Duration)

Subtracts the specified Duration from this Duration.

ToString()

Converts a Duration to a String representation.

Operators

Addition(Duration, Duration)

Adds two Duration values together.

Equality(Duration, Duration)

Determines whether two Duration cases are equal.

GreaterThan(Duration, Duration)

Determines if one Duration is greater than another.

GreaterThanOrEqual(Duration, Duration)

Determines whether a Duration is greater than or equal to another.

Implicit(TimeSpan to Duration)

Implicitly creates a Duration from a given TimeSpan.

Inequality(Duration, Duration)

Determines if two Duration cases are not equal.

LessThan(Duration, Duration)

Determines if a Duration is less than the value of another instance.

LessThanOrEqual(Duration, Duration)

Determines if a Duration is less than or equal to another.

Subtraction(Duration, Duration)

Subtracts the value of one Duration from another.

UnaryPlus(Duration)

Returns the specified Duration.

Applies to

See also