Skip to main content

Definition

Assembly: CloudNimble.BlazorEssentials.dll Namespace: CloudNimble.BlazorEssentials.Merlin Inheritance: System.Object

Syntax

CloudNimble.BlazorEssentials.Merlin.OperationStatusDisplay

Summary

An object to store display values represented by specific statuses for an Operation or OperationStep.

Constructors

.ctor

Constructor overload to set only success / failure texts.

Syntax

public OperationStatusDisplay(string success, string failure)

Parameters

NameTypeDescription
successstringInitializer for Success text.
failurestringInitializer for Failure text.

.ctor

Constructor overload to set all texts.

Syntax

public OperationStatusDisplay(string success, string failure, string inProgress, string notStarted)

Parameters

NameTypeDescription
successstringInitializer for Success text.
failurestringInitializer for Failure text.
inProgressstringInitializer for InProgress text.
notStartedstringInitializer for NotStarted text.

.ctor Inherited

Inherited from object

Syntax

public Object()

Properties

Failure

Text to display when the operation has failed.

Syntax

public string Failure { get; set; }

Property Value

Type: string

InProgress

Text to display while the operation is in progress.

Syntax

public string InProgress { get; set; }

Property Value

Type: string

NotStarted

Text to display when the operation has not started.

Syntax

public string NotStarted { get; set; }

Property Value

Type: string

Success

Text to display when the operation has succeeded.

Syntax

public string Success { get; set; }

Property Value

Type: string

Methods

Equals Inherited Virtual

Inherited from object

Syntax

public virtual bool Equals(object obj)

Parameters

NameTypeDescription
objobject?-

Returns

Type: bool

Equals Inherited

Inherited from object

Syntax

public static bool Equals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

GetHashCode Inherited Virtual

Inherited from object

Syntax

public virtual int GetHashCode()

Returns

Type: int

GetType Inherited

Inherited from object

Syntax

public System.Type GetType()

Returns

Type: System.Type

MemberwiseClone Inherited

Inherited from object

Syntax

protected internal object MemberwiseClone()

Returns

Type: object

ReferenceEquals Inherited

Inherited from object

Syntax

public static bool ReferenceEquals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

ToString Inherited Virtual

Inherited from object

Syntax

public virtual string ToString()

Returns

Type: string?