DeleteContactResponse

Namespace: Babel.Licensing.Service.Management Assembly: Babel.Licensing.dll

DeleteContactResponse is the response message for the DeleteContactRequest.

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

Inheritance

objectDeleteContactResponse

Implements

IMessage<DeleteContactResponse>, IEquatable<DeleteContactResponse>, IDeepCloneable<DeleteContactResponse>, IBufferMessage, IMessage

Inherited Members

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

Constructors

DeleteContactResponse()

public DeleteContactResponse()

DeleteContactResponse(DeleteContactResponse)

public DeleteContactResponse(DeleteContactResponse other)

Parameters

Name
Description

Fields

CodeFieldNumber

Field number for the "code" field.

public const int CodeFieldNumber = 2

Field Value

int

MessageFieldNumber

Field number for the "message" field.

public const int MessageFieldNumber = 3

Field Value

int

SuccessFieldNumber

Field number for the "success" field.

public const int SuccessFieldNumber = 1

Field Value

int

Properties

Code

code is the status code of the operation.

public int? Code { get; set; }

Property Value

int?

Descriptor

public static MessageDescriptor Descriptor { get; }

Property Value

MessageDescriptor

Message

message is a human-readable message indicating the result of the operation.

public string Message { get; set; }

Property Value

string

Parser

public static MessageParser<DeleteContactResponse> Parser { get; }

Property Value

MessageParser<DeleteContactResponse>

Success

success indicates whether the operation was successful.

public bool Success { get; set; }

Property Value

bool

Methods

CalculateSize()

public int CalculateSize()

Returns

Name
Description

Clone()

public DeleteContactResponse Clone()

Returns

Name
Description

Equals(object)

public override bool Equals(object other)

Parameters

Name
Description

other object

Returns

Name
Description

Equals(DeleteContactResponse)

public bool Equals(DeleteContactResponse other)

Parameters

Name
Description

Returns

Name
Description

GetHashCode()

public override int GetHashCode()

Returns

Name
Description

MergeFrom(DeleteContactResponse)

public void MergeFrom(DeleteContactResponse other)

Parameters

Name
Description

MergeFrom(CodedInputStream)

public void MergeFrom(CodedInputStream input)

Parameters

Name
Description

input CodedInputStream

ToString()

public override string ToString()

Returns

Name
Description

WriteTo(CodedOutputStream)

public void WriteTo(CodedOutputStream output)

Parameters

Name
Description

output CodedOutputStream

Last updated