Class OneofOptions (3.23.0)

public sealed class OneofOptions : IExtendableMessage<OneofOptions>, IMessage<OneofOptions>, IEquatable<OneofOptions>, IDeepCloneable<OneofOptions>, IBufferMessage, IMessage

Inheritance

object > OneofOptions

Namespace

Google.Protobuf.Reflection

Assembly

Google.Protobuf.dll

Constructors

OneofOptions()

public OneofOptions()

OneofOptions(OneofOptions)

public OneofOptions(OneofOptions other)
Parameter
Name Description
other OneofOptions

Fields

UninterpretedOptionFieldNumber

public const int UninterpretedOptionFieldNumber = 999

Field number for the "uninterpreted_option" field.

Field Value
Type Description
int

Properties

Descriptor

public static MessageDescriptor Descriptor { get; }
Property Value
Type Description
MessageDescriptor

Parser

public static MessageParser<OneofOptions> Parser { get; }
Property Value
Type Description
MessageParserOneofOptions

UninterpretedOption

public RepeatedField<UninterpretedOption> UninterpretedOption { get; }

The parser stores options it doesn't recognize here. See above.

Property Value
Type Description
RepeatedFieldUninterpretedOption

Methods

CalculateSize()

public int CalculateSize()

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

Returns
Type Description
int

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

ClearExtension<TValue>(Extension<OneofOptions, TValue>)

public void ClearExtension<TValue>(Extension<OneofOptions, TValue> extension)

Clears the value of the specified extension

Parameter
Name Description
extension ExtensionOneofOptions
Type Parameter
Name Description
TValue

ClearExtension<TValue>(RepeatedExtension<OneofOptions, TValue>)

public void ClearExtension<TValue>(RepeatedExtension<OneofOptions, TValue> extension)

Clears the value of the specified repeated extension

Parameter
Name Description
extension RepeatedExtensionOneofOptions
Type Parameter
Name Description
TValue

Clone()

public OneofOptions Clone()

Creates a deep clone of this object.

Returns
Type Description
OneofOptions

A deep clone of this object.

Equals(OneofOptions)

public bool Equals(OneofOptions other)
Parameter
Name Description
other OneofOptions
Returns
Type Description
bool

Equals(object)

public override bool Equals(object other)
Parameter
Name Description
other object
Returns
Type Description
bool
Overrides

GetExtension<TValue>(Extension<OneofOptions, TValue>)

public TValue GetExtension<TValue>(Extension<OneofOptions, TValue> extension)

Gets the value of the specified extension

Parameter
Name Description
extension ExtensionOneofOptions
Returns
Type Description
TValue
Type Parameter
Name Description
TValue

GetExtension<TValue>(RepeatedExtension<OneofOptions, TValue>)

public RepeatedField<TValue> GetExtension<TValue>(RepeatedExtension<OneofOptions, TValue> extension)

Gets the value of the specified repeated extension or null if the extension isn't registered in this set. For a version of this method that never returns null, use GetOrInitializeExtension<TValue>(RepeatedExtension<T, TValue>)

Parameter
Name Description
extension RepeatedExtensionOneofOptions
Returns
Type Description
RepeatedField
Type Parameter
Name Description
TValue

GetHashCode()

public override int GetHashCode()
Returns
Type Description
int
Overrides

GetOrInitializeExtension<TValue>(RepeatedExtension<OneofOptions, TValue>)

public RepeatedField<TValue> GetOrInitializeExtension<TValue>(RepeatedExtension<OneofOptions, TValue> extension)

Gets the value of the specified repeated extension, registering it if it hasn't already been registered.

Parameter
Name Description
extension RepeatedExtensionOneofOptions
Returns
Type Description
RepeatedField
Type Parameter
Name Description
TValue

HasExtension<TValue>(Extension<OneofOptions, TValue>)

public bool HasExtension<TValue>(Extension<OneofOptions, TValue> extension)

Gets whether the value of the specified extension is set

Parameter
Name Description
extension ExtensionOneofOptions
Returns
Type Description
bool
Type Parameter
Name Description
TValue

MergeFrom(CodedInputStream)

public void MergeFrom(CodedInputStream input)

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

Parameter
Name Description
input CodedInputStream
Remarks

See the user guide for precise merge semantics.

MergeFrom(OneofOptions)

public void MergeFrom(OneofOptions other)

Merges the given message into this one.

Parameter
Name Description
other OneofOptions
Remarks

See the user guide for precise merge semantics.

SetExtension<TValue>(Extension<OneofOptions, TValue>, TValue)

public void SetExtension<TValue>(Extension<OneofOptions, TValue> extension, TValue value)

Sets the value of the specified extension

Parameters
Name Description
extension ExtensionOneofOptions
value TValue
Type Parameter
Name Description
TValue

ToString()

public override string ToString()
Returns
Type Description
string
Overrides

WriteTo(CodedOutputStream)

public void WriteTo(CodedOutputStream output)

Writes the data to the given coded output stream.

Parameter
Name Description
output CodedOutputStream

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

Extension Methods