Show / Hide Table of Contents

Class Corev1EventSeries

EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.

Inheritance
object
Corev1EventSeries
Implements
IEquatable<Corev1EventSeries>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record Corev1EventSeries : IEquatable<Corev1EventSeries>

Constructors

Corev1EventSeries()

Declaration
public Corev1EventSeries()

Corev1EventSeries(Corev1EventSeries)

Declaration
protected Corev1EventSeries(Corev1EventSeries original)
Parameters
Type Name Description
Corev1EventSeries original

Properties

Count

Number of occurrences in this series up to the last heartbeat time

Declaration
[JsonPropertyName("count")]
public int? Count { get; set; }
Property Value
Type Description
int?

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type

LastObservedTime

Time of the last occurrence observed

Declaration
[JsonPropertyName("lastObservedTime")]
public DateTime? LastObservedTime { get; set; }
Property Value
Type Description
DateTime?

Methods

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)

Equals(Corev1EventSeries?)

Declaration
public virtual bool Equals(Corev1EventSeries? other)
Parameters
Type Name Description
Corev1EventSeries other
Returns
Type Description
bool

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

operator ==(Corev1EventSeries?, Corev1EventSeries?)

Declaration
public static bool operator ==(Corev1EventSeries? left, Corev1EventSeries? right)
Parameters
Type Name Description
Corev1EventSeries left
Corev1EventSeries right
Returns
Type Description
bool

operator !=(Corev1EventSeries?, Corev1EventSeries?)

Declaration
public static bool operator !=(Corev1EventSeries? left, Corev1EventSeries? right)
Parameters
Type Name Description
Corev1EventSeries left
Corev1EventSeries right
Returns
Type Description
bool

Implements

IEquatable<T>
In this article
Back to top Generated by DocFX