Class GrpcVmExistsReply
Indicates whether a specific virtual machine exists..
Namespace: Neon.Kube.GrpcProto.Desktop
Assembly: Neon.Kube.GrpcProto.dll
Syntax
[DataContract]
public class GrpcVmExistsReply
Constructors
GrpcVmExistsReply()
Default constructor.
Declaration
public GrpcVmExistsReply()
GrpcVmExistsReply(bool)
Reply constructor.
Declaration
public GrpcVmExistsReply(bool exists)
Parameters
Type | Name | Description |
---|---|---|
bool | exists | Indicates whether the virtual machine exists. |
GrpcVmExistsReply(Exception)
Error constructor.
Declaration
public GrpcVmExistsReply(Exception e)
Parameters
Type | Name | Description |
---|---|---|
Exception | e | The exception. |
Properties
Error
Set to a non-null error when the request failed.
Declaration
[DataMember(Order = 1)]
public GrpcError? Error { get; set; }
Property Value
Type | Description |
---|---|
GrpcError |
Exists
true
when the virtual machine exists.
Declaration
[DataMember(Order = 2)]
public bool Exists { get; set; }
Property Value
Type | Description |
---|---|
bool |