Class SetupProgressMessage
Holds setup progress message details.
Namespace: Neon.Kube.Setup
Assembly: Neon.Kube.dll
Syntax
public class SetupProgressMessage
Properties
CancelPending
Indicates whether the setup controller has been signalled to cancel the entire operation.
Declaration
public bool CancelPending { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsError
Indicates whether the message describes an error.
Declaration
public bool IsError { get; set; }
Property Value
Type | Description |
---|---|
bool |
Node
Returns the node associated with this message, if any.
Declaration
public object Node { get; set; }
Property Value
Type | Description |
---|---|
object |
Text
Returns the message text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
string |
Verb
Returns the verb associated with this message, if any.
Declaration
public string Verb { get; set; }
Property Value
Type | Description |
---|---|
string |