Class ApplicationRaw

Namespace: ArmoniK.Api.gRPC.V1.Applications
Assembly: ArmoniK.Api.Common.dll

A raw application object.

Used when a list of applications is requested.

public sealed class ApplicationRaw : IMessage<ApplicationRaw>, IEquatable<ApplicationRaw>, IDeepCloneable<ApplicationRaw>, IBufferMessage, IMessage

Inheritance

objectApplicationRaw

Implements

IMessage<ApplicationRaw>, IEquatable<ApplicationRaw>, IDeepCloneable<ApplicationRaw>, IBufferMessage, IMessage

Inherited Members

object.Equals(object), object.Equals(object, object), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object, object), object.ToString()

Constructors

ApplicationRaw()

public ApplicationRaw()

ApplicationRaw(ApplicationRaw)

public ApplicationRaw(ApplicationRaw other)

Parameters

other ApplicationRaw

Fields

NameFieldNumber

Field number for the “name” field.

public const int NameFieldNumber = 1

Field Value

int

NamespaceFieldNumber

Field number for the “namespace” field.

public const int NamespaceFieldNumber = 3

Field Value

int

ServiceFieldNumber

Field number for the “service” field.

public const int ServiceFieldNumber = 4

Field Value

int

VersionFieldNumber

Field number for the “version” field.

public const int VersionFieldNumber = 2

Field Value

int

Properties

Descriptor

public static MessageDescriptor Descriptor { get; }

Property Value

MessageDescriptor

Name

  • Application name.

public string Name { get; set; }

Property Value

string

Namespace

  • Application namespace used in the excecuted class.

public string Namespace { get; set; }

Property Value

string

Parser

public static MessageParser<ApplicationRaw> Parser { get; }

Property Value

MessageParser<ApplicationRaw>

Service

  • Application service used in the excecuted class.

public string Service { get; set; }

Property Value

string

Version

  • Application version.

public string Version { get; set; }

Property Value

string

Methods

CalculateSize()

Calculates the size of this message in Protocol Buffer wire format, in bytes.

public int CalculateSize()

Returns

int

The number of bytes required to write this message to a coded output stream.

Clone()

Creates a deep clone of this object.

public ApplicationRaw Clone()

Returns

ApplicationRaw

A deep clone of this object.

Equals(object)

public override bool Equals(object other)

Parameters

other object

Returns

bool

Equals(ApplicationRaw)

public bool Equals(ApplicationRaw other)

Parameters

other ApplicationRaw

Returns

bool

GetHashCode()

public override int GetHashCode()

Returns

int

MergeFrom(ApplicationRaw)

Merges the given message into this one.

public void MergeFrom(ApplicationRaw other)

Parameters

other ApplicationRaw

Remarks

See the user guide for precise merge semantics.

MergeFrom(CodedInputStream)

Merges the data from the specified coded input stream with the current message.

public void MergeFrom(CodedInputStream input)

Parameters

input CodedInputStream

Remarks

See the user guide for precise merge semantics.

ToString()

public override string ToString()

Returns

string

WriteTo(CodedOutputStream)

Writes the data to the given coded output stream.

public void WriteTo(CodedOutputStream output)

Parameters

output CodedOutputStream

Coded output stream to write the data to. Must not be null.