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
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
NamespaceFieldNumber
Field number for the “namespace” field.
public const int NamespaceFieldNumber = 3
Field Value
ServiceFieldNumber
Field number for the “service” field.
public const int ServiceFieldNumber = 4
Field Value
VersionFieldNumber
Field number for the “version” field.
public const int VersionFieldNumber = 2
Field Value
Properties
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
MessageDescriptor
Name
Application name.
public string Name { get; set; }
Property Value
Namespace
Application namespace used in the excecuted class.
public string Namespace { get; set; }
Property Value
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
Version
Application version.
public string Version { get; set; }
Property Value
Methods
CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
public int CalculateSize()
Returns
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
A deep clone of this object.
Equals(object)
public override bool Equals(object other)
Parameters
other object
Returns
Equals(ApplicationRaw)
public bool Equals(ApplicationRaw other)
Parameters
other ApplicationRaw
Returns
GetHashCode()
public override int GetHashCode()
Returns
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
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.