Merge pull request #1735 from jskeet/attribute-placement
Change placement of DebuggerNonUserCodeAttribute
This commit is contained in:
commit
03d9e096d9
33 changed files with 2603 additions and 287 deletions
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.Examples.AddressBook {
|
||||
|
||||
/// <summary>Holder for reflection information generated from addressbook.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class AddressbookReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -46,25 +45,29 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
/// <summary>
|
||||
/// [START messages]
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Person : pb::IMessage<Person> {
|
||||
private static readonly pb::MessageParser<Person> _parser = new pb::MessageParser<Person>(() => new Person());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Person> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.Examples.AddressBook.AddressbookReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Person() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Person(Person other) : this() {
|
||||
name_ = other.name_;
|
||||
id_ = other.id_;
|
||||
|
@ -72,6 +75,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
phones_ = other.phones_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Person Clone() {
|
||||
return new Person(this);
|
||||
}
|
||||
|
@ -79,6 +83,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
/// <summary>Field number for the "name" field.</summary>
|
||||
public const int NameFieldNumber = 1;
|
||||
private string name_ = "";
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Name {
|
||||
get { return name_; }
|
||||
set {
|
||||
|
@ -92,6 +97,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
/// <summary>
|
||||
/// Unique ID number for this person.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int Id {
|
||||
get { return id_; }
|
||||
set {
|
||||
|
@ -102,6 +108,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
/// <summary>Field number for the "email" field.</summary>
|
||||
public const int EmailFieldNumber = 3;
|
||||
private string email_ = "";
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Email {
|
||||
get { return email_; }
|
||||
set {
|
||||
|
@ -114,14 +121,17 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber> _repeated_phones_codec
|
||||
= pb::FieldCodec.ForMessage(34, global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber> phones_ = new pbc::RepeatedField<global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber> Phones {
|
||||
get { return phones_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Person);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Person other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -136,6 +146,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Name.Length != 0) hash ^= Name.GetHashCode();
|
||||
|
@ -145,10 +156,12 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Name.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -165,6 +178,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
phones_.WriteTo(output, _repeated_phones_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Name.Length != 0) {
|
||||
|
@ -180,6 +194,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Person other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -196,6 +211,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
phones_.Add(other.phones_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -225,7 +241,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
|
||||
#region Nested types
|
||||
/// <summary>Container for nested types declared in the Person message type.</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static partial class Types {
|
||||
public enum PhoneType {
|
||||
[pbr::OriginalName("MOBILE")] Mobile = 0,
|
||||
|
@ -233,30 +249,35 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
[pbr::OriginalName("WORK")] Work = 2,
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class PhoneNumber : pb::IMessage<PhoneNumber> {
|
||||
private static readonly pb::MessageParser<PhoneNumber> _parser = new pb::MessageParser<PhoneNumber>(() => new PhoneNumber());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<PhoneNumber> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.Examples.AddressBook.Person.Descriptor.NestedTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public PhoneNumber() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public PhoneNumber(PhoneNumber other) : this() {
|
||||
number_ = other.number_;
|
||||
type_ = other.type_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public PhoneNumber Clone() {
|
||||
return new PhoneNumber(this);
|
||||
}
|
||||
|
@ -264,6 +285,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
/// <summary>Field number for the "number" field.</summary>
|
||||
public const int NumberFieldNumber = 1;
|
||||
private string number_ = "";
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Number {
|
||||
get { return number_; }
|
||||
set {
|
||||
|
@ -274,6 +296,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
/// <summary>Field number for the "type" field.</summary>
|
||||
public const int TypeFieldNumber = 2;
|
||||
private global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneType type_ = 0;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneType Type {
|
||||
get { return type_; }
|
||||
set {
|
||||
|
@ -281,10 +304,12 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as PhoneNumber);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(PhoneNumber other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -297,6 +322,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Number.Length != 0) hash ^= Number.GetHashCode();
|
||||
|
@ -304,10 +330,12 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Number.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -319,6 +347,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Number.Length != 0) {
|
||||
|
@ -330,6 +359,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(PhoneNumber other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -342,6 +372,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -371,29 +402,34 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
/// <summary>
|
||||
/// Our address book file is just one of these.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class AddressBook : pb::IMessage<AddressBook> {
|
||||
private static readonly pb::MessageParser<AddressBook> _parser = new pb::MessageParser<AddressBook>(() => new AddressBook());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<AddressBook> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.Examples.AddressBook.AddressbookReflection.Descriptor.MessageTypes[1]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public AddressBook() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public AddressBook(AddressBook other) : this() {
|
||||
people_ = other.people_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public AddressBook Clone() {
|
||||
return new AddressBook(this);
|
||||
}
|
||||
|
@ -403,14 +439,17 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.Examples.AddressBook.Person> _repeated_people_codec
|
||||
= pb::FieldCodec.ForMessage(10, global::Google.Protobuf.Examples.AddressBook.Person.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.Examples.AddressBook.Person> people_ = new pbc::RepeatedField<global::Google.Protobuf.Examples.AddressBook.Person>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.Examples.AddressBook.Person> People {
|
||||
get { return people_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AddressBook);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(AddressBook other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -422,26 +461,31 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= people_.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
people_.WriteTo(output, _repeated_people_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += people_.CalculateSize(_repeated_people_codec);
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(AddressBook other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -449,6 +493,7 @@ namespace Google.Protobuf.Examples.AddressBook {
|
|||
people_.Add(other.people_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.TestProtos {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/map_unittest_proto3.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class MapUnittestProto3Reflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -175,25 +174,29 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>
|
||||
/// Tests maps.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class TestMap : pb::IMessage<TestMap> {
|
||||
private static readonly pb::MessageParser<TestMap> _parser = new pb::MessageParser<TestMap>(() => new TestMap());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<TestMap> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.MapUnittestProto3Reflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestMap() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestMap(TestMap other) : this() {
|
||||
mapInt32Int32_ = other.mapInt32Int32_.Clone();
|
||||
mapInt64Int64_ = other.mapInt64Int64_.Clone();
|
||||
|
@ -214,6 +217,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
mapInt32ForeignMessage_ = other.mapInt32ForeignMessage_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestMap Clone() {
|
||||
return new TestMap(this);
|
||||
}
|
||||
|
@ -223,6 +227,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, int>.Codec _map_mapInt32Int32_codec
|
||||
= new pbc::MapField<int, int>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForInt32(16), 10);
|
||||
private readonly pbc::MapField<int, int> mapInt32Int32_ = new pbc::MapField<int, int>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, int> MapInt32Int32 {
|
||||
get { return mapInt32Int32_; }
|
||||
}
|
||||
|
@ -232,6 +237,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<long, long>.Codec _map_mapInt64Int64_codec
|
||||
= new pbc::MapField<long, long>.Codec(pb::FieldCodec.ForInt64(8), pb::FieldCodec.ForInt64(16), 18);
|
||||
private readonly pbc::MapField<long, long> mapInt64Int64_ = new pbc::MapField<long, long>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<long, long> MapInt64Int64 {
|
||||
get { return mapInt64Int64_; }
|
||||
}
|
||||
|
@ -241,6 +247,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<uint, uint>.Codec _map_mapUint32Uint32_codec
|
||||
= new pbc::MapField<uint, uint>.Codec(pb::FieldCodec.ForUInt32(8), pb::FieldCodec.ForUInt32(16), 26);
|
||||
private readonly pbc::MapField<uint, uint> mapUint32Uint32_ = new pbc::MapField<uint, uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<uint, uint> MapUint32Uint32 {
|
||||
get { return mapUint32Uint32_; }
|
||||
}
|
||||
|
@ -250,6 +257,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<ulong, ulong>.Codec _map_mapUint64Uint64_codec
|
||||
= new pbc::MapField<ulong, ulong>.Codec(pb::FieldCodec.ForUInt64(8), pb::FieldCodec.ForUInt64(16), 34);
|
||||
private readonly pbc::MapField<ulong, ulong> mapUint64Uint64_ = new pbc::MapField<ulong, ulong>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<ulong, ulong> MapUint64Uint64 {
|
||||
get { return mapUint64Uint64_; }
|
||||
}
|
||||
|
@ -259,6 +267,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, int>.Codec _map_mapSint32Sint32_codec
|
||||
= new pbc::MapField<int, int>.Codec(pb::FieldCodec.ForSInt32(8), pb::FieldCodec.ForSInt32(16), 42);
|
||||
private readonly pbc::MapField<int, int> mapSint32Sint32_ = new pbc::MapField<int, int>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, int> MapSint32Sint32 {
|
||||
get { return mapSint32Sint32_; }
|
||||
}
|
||||
|
@ -268,6 +277,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<long, long>.Codec _map_mapSint64Sint64_codec
|
||||
= new pbc::MapField<long, long>.Codec(pb::FieldCodec.ForSInt64(8), pb::FieldCodec.ForSInt64(16), 50);
|
||||
private readonly pbc::MapField<long, long> mapSint64Sint64_ = new pbc::MapField<long, long>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<long, long> MapSint64Sint64 {
|
||||
get { return mapSint64Sint64_; }
|
||||
}
|
||||
|
@ -277,6 +287,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<uint, uint>.Codec _map_mapFixed32Fixed32_codec
|
||||
= new pbc::MapField<uint, uint>.Codec(pb::FieldCodec.ForFixed32(13), pb::FieldCodec.ForFixed32(21), 58);
|
||||
private readonly pbc::MapField<uint, uint> mapFixed32Fixed32_ = new pbc::MapField<uint, uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<uint, uint> MapFixed32Fixed32 {
|
||||
get { return mapFixed32Fixed32_; }
|
||||
}
|
||||
|
@ -286,6 +297,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<ulong, ulong>.Codec _map_mapFixed64Fixed64_codec
|
||||
= new pbc::MapField<ulong, ulong>.Codec(pb::FieldCodec.ForFixed64(9), pb::FieldCodec.ForFixed64(17), 66);
|
||||
private readonly pbc::MapField<ulong, ulong> mapFixed64Fixed64_ = new pbc::MapField<ulong, ulong>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<ulong, ulong> MapFixed64Fixed64 {
|
||||
get { return mapFixed64Fixed64_; }
|
||||
}
|
||||
|
@ -295,6 +307,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, int>.Codec _map_mapSfixed32Sfixed32_codec
|
||||
= new pbc::MapField<int, int>.Codec(pb::FieldCodec.ForSFixed32(13), pb::FieldCodec.ForSFixed32(21), 74);
|
||||
private readonly pbc::MapField<int, int> mapSfixed32Sfixed32_ = new pbc::MapField<int, int>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, int> MapSfixed32Sfixed32 {
|
||||
get { return mapSfixed32Sfixed32_; }
|
||||
}
|
||||
|
@ -304,6 +317,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<long, long>.Codec _map_mapSfixed64Sfixed64_codec
|
||||
= new pbc::MapField<long, long>.Codec(pb::FieldCodec.ForSFixed64(9), pb::FieldCodec.ForSFixed64(17), 82);
|
||||
private readonly pbc::MapField<long, long> mapSfixed64Sfixed64_ = new pbc::MapField<long, long>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<long, long> MapSfixed64Sfixed64 {
|
||||
get { return mapSfixed64Sfixed64_; }
|
||||
}
|
||||
|
@ -313,6 +327,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, float>.Codec _map_mapInt32Float_codec
|
||||
= new pbc::MapField<int, float>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForFloat(21), 90);
|
||||
private readonly pbc::MapField<int, float> mapInt32Float_ = new pbc::MapField<int, float>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, float> MapInt32Float {
|
||||
get { return mapInt32Float_; }
|
||||
}
|
||||
|
@ -322,6 +337,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, double>.Codec _map_mapInt32Double_codec
|
||||
= new pbc::MapField<int, double>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForDouble(17), 98);
|
||||
private readonly pbc::MapField<int, double> mapInt32Double_ = new pbc::MapField<int, double>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, double> MapInt32Double {
|
||||
get { return mapInt32Double_; }
|
||||
}
|
||||
|
@ -331,6 +347,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<bool, bool>.Codec _map_mapBoolBool_codec
|
||||
= new pbc::MapField<bool, bool>.Codec(pb::FieldCodec.ForBool(8), pb::FieldCodec.ForBool(16), 106);
|
||||
private readonly pbc::MapField<bool, bool> mapBoolBool_ = new pbc::MapField<bool, bool>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<bool, bool> MapBoolBool {
|
||||
get { return mapBoolBool_; }
|
||||
}
|
||||
|
@ -340,6 +357,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<string, string>.Codec _map_mapStringString_codec
|
||||
= new pbc::MapField<string, string>.Codec(pb::FieldCodec.ForString(10), pb::FieldCodec.ForString(18), 114);
|
||||
private readonly pbc::MapField<string, string> mapStringString_ = new pbc::MapField<string, string>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<string, string> MapStringString {
|
||||
get { return mapStringString_; }
|
||||
}
|
||||
|
@ -349,6 +367,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, pb::ByteString>.Codec _map_mapInt32Bytes_codec
|
||||
= new pbc::MapField<int, pb::ByteString>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForBytes(18), 122);
|
||||
private readonly pbc::MapField<int, pb::ByteString> mapInt32Bytes_ = new pbc::MapField<int, pb::ByteString>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, pb::ByteString> MapInt32Bytes {
|
||||
get { return mapInt32Bytes_; }
|
||||
}
|
||||
|
@ -358,6 +377,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.MapEnum>.Codec _map_mapInt32Enum_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.TestProtos.MapEnum>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForEnum(16, x => (int) x, x => (global::Google.Protobuf.TestProtos.MapEnum) x), 130);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.MapEnum> mapInt32Enum_ = new pbc::MapField<int, global::Google.Protobuf.TestProtos.MapEnum>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.TestProtos.MapEnum> MapInt32Enum {
|
||||
get { return mapInt32Enum_; }
|
||||
}
|
||||
|
@ -367,14 +387,17 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.ForeignMessage>.Codec _map_mapInt32ForeignMessage_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.TestProtos.ForeignMessage>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.TestProtos.ForeignMessage.Parser), 138);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.ForeignMessage> mapInt32ForeignMessage_ = new pbc::MapField<int, global::Google.Protobuf.TestProtos.ForeignMessage>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.TestProtos.ForeignMessage> MapInt32ForeignMessage {
|
||||
get { return mapInt32ForeignMessage_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as TestMap);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(TestMap other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -402,6 +425,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= MapInt32Int32.GetHashCode();
|
||||
|
@ -424,10 +448,12 @@ namespace Google.Protobuf.TestProtos {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
mapInt32Int32_.WriteTo(output, _map_mapInt32Int32_codec);
|
||||
mapInt64Int64_.WriteTo(output, _map_mapInt64Int64_codec);
|
||||
|
@ -448,6 +474,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
mapInt32ForeignMessage_.WriteTo(output, _map_mapInt32ForeignMessage_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += mapInt32Int32_.CalculateSize(_map_mapInt32Int32_codec);
|
||||
|
@ -470,6 +497,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(TestMap other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -493,6 +521,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
mapInt32ForeignMessage_.Add(other.mapInt32ForeignMessage_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -574,29 +603,34 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class TestMapSubmessage : pb::IMessage<TestMapSubmessage> {
|
||||
private static readonly pb::MessageParser<TestMapSubmessage> _parser = new pb::MessageParser<TestMapSubmessage>(() => new TestMapSubmessage());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<TestMapSubmessage> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.MapUnittestProto3Reflection.Descriptor.MessageTypes[1]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestMapSubmessage() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestMapSubmessage(TestMapSubmessage other) : this() {
|
||||
TestMap = other.testMap_ != null ? other.TestMap.Clone() : null;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestMapSubmessage Clone() {
|
||||
return new TestMapSubmessage(this);
|
||||
}
|
||||
|
@ -604,6 +638,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "test_map" field.</summary>
|
||||
public const int TestMapFieldNumber = 1;
|
||||
private global::Google.Protobuf.TestProtos.TestMap testMap_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.TestProtos.TestMap TestMap {
|
||||
get { return testMap_; }
|
||||
set {
|
||||
|
@ -611,10 +646,12 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as TestMapSubmessage);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(TestMapSubmessage other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -626,16 +663,19 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (testMap_ != null) hash ^= TestMap.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (testMap_ != null) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -643,6 +683,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (testMap_ != null) {
|
||||
|
@ -651,6 +692,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(TestMapSubmessage other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -663,6 +705,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -683,29 +726,34 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class TestMessageMap : pb::IMessage<TestMessageMap> {
|
||||
private static readonly pb::MessageParser<TestMessageMap> _parser = new pb::MessageParser<TestMessageMap>(() => new TestMessageMap());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<TestMessageMap> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.MapUnittestProto3Reflection.Descriptor.MessageTypes[2]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestMessageMap() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestMessageMap(TestMessageMap other) : this() {
|
||||
mapInt32Message_ = other.mapInt32Message_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestMessageMap Clone() {
|
||||
return new TestMessageMap(this);
|
||||
}
|
||||
|
@ -715,14 +763,17 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.TestAllTypes>.Codec _map_mapInt32Message_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.TestProtos.TestAllTypes>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.TestProtos.TestAllTypes.Parser), 10);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.TestAllTypes> mapInt32Message_ = new pbc::MapField<int, global::Google.Protobuf.TestProtos.TestAllTypes>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.TestProtos.TestAllTypes> MapInt32Message {
|
||||
get { return mapInt32Message_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as TestMessageMap);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(TestMessageMap other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -734,26 +785,31 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= MapInt32Message.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
mapInt32Message_.WriteTo(output, _map_mapInt32Message_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += mapInt32Message_.CalculateSize(_map_mapInt32Message_codec);
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(TestMessageMap other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -761,6 +817,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
mapInt32Message_.Add(other.mapInt32Message_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -781,30 +838,35 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>
|
||||
/// Two map fields share the same entry default instance.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class TestSameTypeMap : pb::IMessage<TestSameTypeMap> {
|
||||
private static readonly pb::MessageParser<TestSameTypeMap> _parser = new pb::MessageParser<TestSameTypeMap>(() => new TestSameTypeMap());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<TestSameTypeMap> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.MapUnittestProto3Reflection.Descriptor.MessageTypes[3]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestSameTypeMap() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestSameTypeMap(TestSameTypeMap other) : this() {
|
||||
map1_ = other.map1_.Clone();
|
||||
map2_ = other.map2_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestSameTypeMap Clone() {
|
||||
return new TestSameTypeMap(this);
|
||||
}
|
||||
|
@ -814,6 +876,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, int>.Codec _map_map1_codec
|
||||
= new pbc::MapField<int, int>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForInt32(16), 10);
|
||||
private readonly pbc::MapField<int, int> map1_ = new pbc::MapField<int, int>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, int> Map1 {
|
||||
get { return map1_; }
|
||||
}
|
||||
|
@ -823,14 +886,17 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, int>.Codec _map_map2_codec
|
||||
= new pbc::MapField<int, int>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForInt32(16), 18);
|
||||
private readonly pbc::MapField<int, int> map2_ = new pbc::MapField<int, int>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, int> Map2 {
|
||||
get { return map2_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as TestSameTypeMap);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(TestSameTypeMap other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -843,6 +909,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= Map1.GetHashCode();
|
||||
|
@ -850,15 +917,18 @@ namespace Google.Protobuf.TestProtos {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
map1_.WriteTo(output, _map_map1_codec);
|
||||
map2_.WriteTo(output, _map_map2_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += map1_.CalculateSize(_map_map1_codec);
|
||||
|
@ -866,6 +936,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(TestSameTypeMap other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -874,6 +945,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
map2_.Add(other.map2_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -895,25 +967,29 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class TestArenaMap : pb::IMessage<TestArenaMap> {
|
||||
private static readonly pb::MessageParser<TestArenaMap> _parser = new pb::MessageParser<TestArenaMap>(() => new TestArenaMap());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<TestArenaMap> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.MapUnittestProto3Reflection.Descriptor.MessageTypes[4]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestArenaMap() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestArenaMap(TestArenaMap other) : this() {
|
||||
mapInt32Int32_ = other.mapInt32Int32_.Clone();
|
||||
mapInt64Int64_ = other.mapInt64Int64_.Clone();
|
||||
|
@ -932,6 +1008,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
mapInt32ForeignMessage_ = other.mapInt32ForeignMessage_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestArenaMap Clone() {
|
||||
return new TestArenaMap(this);
|
||||
}
|
||||
|
@ -941,6 +1018,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, int>.Codec _map_mapInt32Int32_codec
|
||||
= new pbc::MapField<int, int>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForInt32(16), 10);
|
||||
private readonly pbc::MapField<int, int> mapInt32Int32_ = new pbc::MapField<int, int>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, int> MapInt32Int32 {
|
||||
get { return mapInt32Int32_; }
|
||||
}
|
||||
|
@ -950,6 +1028,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<long, long>.Codec _map_mapInt64Int64_codec
|
||||
= new pbc::MapField<long, long>.Codec(pb::FieldCodec.ForInt64(8), pb::FieldCodec.ForInt64(16), 18);
|
||||
private readonly pbc::MapField<long, long> mapInt64Int64_ = new pbc::MapField<long, long>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<long, long> MapInt64Int64 {
|
||||
get { return mapInt64Int64_; }
|
||||
}
|
||||
|
@ -959,6 +1038,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<uint, uint>.Codec _map_mapUint32Uint32_codec
|
||||
= new pbc::MapField<uint, uint>.Codec(pb::FieldCodec.ForUInt32(8), pb::FieldCodec.ForUInt32(16), 26);
|
||||
private readonly pbc::MapField<uint, uint> mapUint32Uint32_ = new pbc::MapField<uint, uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<uint, uint> MapUint32Uint32 {
|
||||
get { return mapUint32Uint32_; }
|
||||
}
|
||||
|
@ -968,6 +1048,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<ulong, ulong>.Codec _map_mapUint64Uint64_codec
|
||||
= new pbc::MapField<ulong, ulong>.Codec(pb::FieldCodec.ForUInt64(8), pb::FieldCodec.ForUInt64(16), 34);
|
||||
private readonly pbc::MapField<ulong, ulong> mapUint64Uint64_ = new pbc::MapField<ulong, ulong>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<ulong, ulong> MapUint64Uint64 {
|
||||
get { return mapUint64Uint64_; }
|
||||
}
|
||||
|
@ -977,6 +1058,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, int>.Codec _map_mapSint32Sint32_codec
|
||||
= new pbc::MapField<int, int>.Codec(pb::FieldCodec.ForSInt32(8), pb::FieldCodec.ForSInt32(16), 42);
|
||||
private readonly pbc::MapField<int, int> mapSint32Sint32_ = new pbc::MapField<int, int>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, int> MapSint32Sint32 {
|
||||
get { return mapSint32Sint32_; }
|
||||
}
|
||||
|
@ -986,6 +1068,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<long, long>.Codec _map_mapSint64Sint64_codec
|
||||
= new pbc::MapField<long, long>.Codec(pb::FieldCodec.ForSInt64(8), pb::FieldCodec.ForSInt64(16), 50);
|
||||
private readonly pbc::MapField<long, long> mapSint64Sint64_ = new pbc::MapField<long, long>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<long, long> MapSint64Sint64 {
|
||||
get { return mapSint64Sint64_; }
|
||||
}
|
||||
|
@ -995,6 +1078,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<uint, uint>.Codec _map_mapFixed32Fixed32_codec
|
||||
= new pbc::MapField<uint, uint>.Codec(pb::FieldCodec.ForFixed32(13), pb::FieldCodec.ForFixed32(21), 58);
|
||||
private readonly pbc::MapField<uint, uint> mapFixed32Fixed32_ = new pbc::MapField<uint, uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<uint, uint> MapFixed32Fixed32 {
|
||||
get { return mapFixed32Fixed32_; }
|
||||
}
|
||||
|
@ -1004,6 +1088,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<ulong, ulong>.Codec _map_mapFixed64Fixed64_codec
|
||||
= new pbc::MapField<ulong, ulong>.Codec(pb::FieldCodec.ForFixed64(9), pb::FieldCodec.ForFixed64(17), 66);
|
||||
private readonly pbc::MapField<ulong, ulong> mapFixed64Fixed64_ = new pbc::MapField<ulong, ulong>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<ulong, ulong> MapFixed64Fixed64 {
|
||||
get { return mapFixed64Fixed64_; }
|
||||
}
|
||||
|
@ -1013,6 +1098,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, int>.Codec _map_mapSfixed32Sfixed32_codec
|
||||
= new pbc::MapField<int, int>.Codec(pb::FieldCodec.ForSFixed32(13), pb::FieldCodec.ForSFixed32(21), 74);
|
||||
private readonly pbc::MapField<int, int> mapSfixed32Sfixed32_ = new pbc::MapField<int, int>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, int> MapSfixed32Sfixed32 {
|
||||
get { return mapSfixed32Sfixed32_; }
|
||||
}
|
||||
|
@ -1022,6 +1108,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<long, long>.Codec _map_mapSfixed64Sfixed64_codec
|
||||
= new pbc::MapField<long, long>.Codec(pb::FieldCodec.ForSFixed64(9), pb::FieldCodec.ForSFixed64(17), 82);
|
||||
private readonly pbc::MapField<long, long> mapSfixed64Sfixed64_ = new pbc::MapField<long, long>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<long, long> MapSfixed64Sfixed64 {
|
||||
get { return mapSfixed64Sfixed64_; }
|
||||
}
|
||||
|
@ -1031,6 +1118,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, float>.Codec _map_mapInt32Float_codec
|
||||
= new pbc::MapField<int, float>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForFloat(21), 90);
|
||||
private readonly pbc::MapField<int, float> mapInt32Float_ = new pbc::MapField<int, float>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, float> MapInt32Float {
|
||||
get { return mapInt32Float_; }
|
||||
}
|
||||
|
@ -1040,6 +1128,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, double>.Codec _map_mapInt32Double_codec
|
||||
= new pbc::MapField<int, double>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForDouble(17), 98);
|
||||
private readonly pbc::MapField<int, double> mapInt32Double_ = new pbc::MapField<int, double>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, double> MapInt32Double {
|
||||
get { return mapInt32Double_; }
|
||||
}
|
||||
|
@ -1049,6 +1138,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<bool, bool>.Codec _map_mapBoolBool_codec
|
||||
= new pbc::MapField<bool, bool>.Codec(pb::FieldCodec.ForBool(8), pb::FieldCodec.ForBool(16), 106);
|
||||
private readonly pbc::MapField<bool, bool> mapBoolBool_ = new pbc::MapField<bool, bool>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<bool, bool> MapBoolBool {
|
||||
get { return mapBoolBool_; }
|
||||
}
|
||||
|
@ -1058,6 +1148,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.MapEnum>.Codec _map_mapInt32Enum_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.TestProtos.MapEnum>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForEnum(16, x => (int) x, x => (global::Google.Protobuf.TestProtos.MapEnum) x), 114);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.MapEnum> mapInt32Enum_ = new pbc::MapField<int, global::Google.Protobuf.TestProtos.MapEnum>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.TestProtos.MapEnum> MapInt32Enum {
|
||||
get { return mapInt32Enum_; }
|
||||
}
|
||||
|
@ -1067,14 +1158,17 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.ForeignMessage>.Codec _map_mapInt32ForeignMessage_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.TestProtos.ForeignMessage>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.TestProtos.ForeignMessage.Parser), 122);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.ForeignMessage> mapInt32ForeignMessage_ = new pbc::MapField<int, global::Google.Protobuf.TestProtos.ForeignMessage>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.TestProtos.ForeignMessage> MapInt32ForeignMessage {
|
||||
get { return mapInt32ForeignMessage_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as TestArenaMap);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(TestArenaMap other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -1100,6 +1194,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= MapInt32Int32.GetHashCode();
|
||||
|
@ -1120,10 +1215,12 @@ namespace Google.Protobuf.TestProtos {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
mapInt32Int32_.WriteTo(output, _map_mapInt32Int32_codec);
|
||||
mapInt64Int64_.WriteTo(output, _map_mapInt64Int64_codec);
|
||||
|
@ -1142,6 +1239,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
mapInt32ForeignMessage_.WriteTo(output, _map_mapInt32ForeignMessage_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += mapInt32Int32_.CalculateSize(_map_mapInt32Int32_codec);
|
||||
|
@ -1162,6 +1260,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(TestArenaMap other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -1183,6 +1282,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
mapInt32ForeignMessage_.Add(other.mapInt32ForeignMessage_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -1260,29 +1360,34 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// Previously, message containing enum called Type cannot be used as value of
|
||||
/// map field.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class MessageContainingEnumCalledType : pb::IMessage<MessageContainingEnumCalledType> {
|
||||
private static readonly pb::MessageParser<MessageContainingEnumCalledType> _parser = new pb::MessageParser<MessageContainingEnumCalledType>(() => new MessageContainingEnumCalledType());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<MessageContainingEnumCalledType> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.MapUnittestProto3Reflection.Descriptor.MessageTypes[5]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public MessageContainingEnumCalledType() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public MessageContainingEnumCalledType(MessageContainingEnumCalledType other) : this() {
|
||||
type_ = other.type_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public MessageContainingEnumCalledType Clone() {
|
||||
return new MessageContainingEnumCalledType(this);
|
||||
}
|
||||
|
@ -1292,14 +1397,17 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.MessageContainingEnumCalledType>.Codec _map_type_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.TestProtos.MessageContainingEnumCalledType>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.TestProtos.MessageContainingEnumCalledType.Parser), 10);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.TestProtos.MessageContainingEnumCalledType> type_ = new pbc::MapField<int, global::Google.Protobuf.TestProtos.MessageContainingEnumCalledType>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.TestProtos.MessageContainingEnumCalledType> Type {
|
||||
get { return type_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as MessageContainingEnumCalledType);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(MessageContainingEnumCalledType other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -1311,26 +1419,31 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= Type.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
type_.WriteTo(output, _map_type_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += type_.CalculateSize(_map_type_codec);
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(MessageContainingEnumCalledType other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -1338,6 +1451,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
type_.Add(other.type_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -1355,7 +1469,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
#region Nested types
|
||||
/// <summary>Container for nested types declared in the MessageContainingEnumCalledType message type.</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static partial class Types {
|
||||
public enum Type {
|
||||
[pbr::OriginalName("TYPE_FOO")] Foo = 0,
|
||||
|
@ -1369,29 +1483,34 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>
|
||||
/// Previously, message cannot contain map field called "entry".
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class MessageContainingMapCalledEntry : pb::IMessage<MessageContainingMapCalledEntry> {
|
||||
private static readonly pb::MessageParser<MessageContainingMapCalledEntry> _parser = new pb::MessageParser<MessageContainingMapCalledEntry>(() => new MessageContainingMapCalledEntry());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<MessageContainingMapCalledEntry> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.MapUnittestProto3Reflection.Descriptor.MessageTypes[6]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public MessageContainingMapCalledEntry() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public MessageContainingMapCalledEntry(MessageContainingMapCalledEntry other) : this() {
|
||||
entry_ = other.entry_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public MessageContainingMapCalledEntry Clone() {
|
||||
return new MessageContainingMapCalledEntry(this);
|
||||
}
|
||||
|
@ -1401,14 +1520,17 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, int>.Codec _map_entry_codec
|
||||
= new pbc::MapField<int, int>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForInt32(16), 10);
|
||||
private readonly pbc::MapField<int, int> entry_ = new pbc::MapField<int, int>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, int> Entry {
|
||||
get { return entry_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as MessageContainingMapCalledEntry);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(MessageContainingMapCalledEntry other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -1420,26 +1542,31 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= Entry.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
entry_.WriteTo(output, _map_entry_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += entry_.CalculateSize(_map_entry_codec);
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(MessageContainingMapCalledEntry other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -1447,6 +1574,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
entry_.Add(other.entry_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.TestProtos {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/unittest_import_proto3.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class UnittestImportProto3Reflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -51,29 +50,34 @@ namespace Google.Protobuf.TestProtos {
|
|||
#endregion
|
||||
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class ImportMessage : pb::IMessage<ImportMessage> {
|
||||
private static readonly pb::MessageParser<ImportMessage> _parser = new pb::MessageParser<ImportMessage>(() => new ImportMessage());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<ImportMessage> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.UnittestImportProto3Reflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public ImportMessage() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public ImportMessage(ImportMessage other) : this() {
|
||||
d_ = other.d_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public ImportMessage Clone() {
|
||||
return new ImportMessage(this);
|
||||
}
|
||||
|
@ -81,6 +85,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "d" field.</summary>
|
||||
public const int DFieldNumber = 1;
|
||||
private int d_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int D {
|
||||
get { return d_; }
|
||||
set {
|
||||
|
@ -88,10 +93,12 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as ImportMessage);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(ImportMessage other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -103,16 +110,19 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (D != 0) hash ^= D.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (D != 0) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -120,6 +130,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (D != 0) {
|
||||
|
@ -128,6 +139,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(ImportMessage other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -137,6 +149,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.TestProtos {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/unittest_import_public_proto3.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class UnittestImportPublicProto3Reflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -37,29 +36,34 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class PublicImportMessage : pb::IMessage<PublicImportMessage> {
|
||||
private static readonly pb::MessageParser<PublicImportMessage> _parser = new pb::MessageParser<PublicImportMessage>(() => new PublicImportMessage());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<PublicImportMessage> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.UnittestImportPublicProto3Reflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public PublicImportMessage() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public PublicImportMessage(PublicImportMessage other) : this() {
|
||||
e_ = other.e_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public PublicImportMessage Clone() {
|
||||
return new PublicImportMessage(this);
|
||||
}
|
||||
|
@ -67,6 +71,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "e" field.</summary>
|
||||
public const int EFieldNumber = 1;
|
||||
private int e_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int E {
|
||||
get { return e_; }
|
||||
set {
|
||||
|
@ -74,10 +79,12 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as PublicImportMessage);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(PublicImportMessage other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -89,16 +96,19 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (E != 0) hash ^= E.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (E != 0) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -106,6 +116,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (E != 0) {
|
||||
|
@ -114,6 +125,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(PublicImportMessage other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -123,6 +135,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.TestProtos {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/unittest_well_known_types.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class UnittestWellKnownTypesReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -178,25 +177,29 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// Each wrapper type is included separately, as languages
|
||||
/// map handle different wrappers in different ways.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class TestWellKnownTypes : pb::IMessage<TestWellKnownTypes> {
|
||||
private static readonly pb::MessageParser<TestWellKnownTypes> _parser = new pb::MessageParser<TestWellKnownTypes>(() => new TestWellKnownTypes());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<TestWellKnownTypes> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.UnittestWellKnownTypesReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestWellKnownTypes() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestWellKnownTypes(TestWellKnownTypes other) : this() {
|
||||
AnyField = other.anyField_ != null ? other.AnyField.Clone() : null;
|
||||
ApiField = other.apiField_ != null ? other.ApiField.Clone() : null;
|
||||
|
@ -219,6 +222,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
ValueField = other.valueField_ != null ? other.ValueField.Clone() : null;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public TestWellKnownTypes Clone() {
|
||||
return new TestWellKnownTypes(this);
|
||||
}
|
||||
|
@ -226,6 +230,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "any_field" field.</summary>
|
||||
public const int AnyFieldFieldNumber = 1;
|
||||
private global::Google.Protobuf.WellKnownTypes.Any anyField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Any AnyField {
|
||||
get { return anyField_; }
|
||||
set {
|
||||
|
@ -236,6 +241,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "api_field" field.</summary>
|
||||
public const int ApiFieldFieldNumber = 2;
|
||||
private global::Google.Protobuf.WellKnownTypes.Api apiField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Api ApiField {
|
||||
get { return apiField_; }
|
||||
set {
|
||||
|
@ -246,6 +252,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "duration_field" field.</summary>
|
||||
public const int DurationFieldFieldNumber = 3;
|
||||
private global::Google.Protobuf.WellKnownTypes.Duration durationField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Duration DurationField {
|
||||
get { return durationField_; }
|
||||
set {
|
||||
|
@ -256,6 +263,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "empty_field" field.</summary>
|
||||
public const int EmptyFieldFieldNumber = 4;
|
||||
private global::Google.Protobuf.WellKnownTypes.Empty emptyField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Empty EmptyField {
|
||||
get { return emptyField_; }
|
||||
set {
|
||||
|
@ -266,6 +274,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "field_mask_field" field.</summary>
|
||||
public const int FieldMaskFieldFieldNumber = 5;
|
||||
private global::Google.Protobuf.WellKnownTypes.FieldMask fieldMaskField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.FieldMask FieldMaskField {
|
||||
get { return fieldMaskField_; }
|
||||
set {
|
||||
|
@ -276,6 +285,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "source_context_field" field.</summary>
|
||||
public const int SourceContextFieldFieldNumber = 6;
|
||||
private global::Google.Protobuf.WellKnownTypes.SourceContext sourceContextField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.SourceContext SourceContextField {
|
||||
get { return sourceContextField_; }
|
||||
set {
|
||||
|
@ -286,6 +296,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "struct_field" field.</summary>
|
||||
public const int StructFieldFieldNumber = 7;
|
||||
private global::Google.Protobuf.WellKnownTypes.Struct structField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Struct StructField {
|
||||
get { return structField_; }
|
||||
set {
|
||||
|
@ -296,6 +307,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "timestamp_field" field.</summary>
|
||||
public const int TimestampFieldFieldNumber = 8;
|
||||
private global::Google.Protobuf.WellKnownTypes.Timestamp timestampField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Timestamp TimestampField {
|
||||
get { return timestampField_; }
|
||||
set {
|
||||
|
@ -306,6 +318,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "type_field" field.</summary>
|
||||
public const int TypeFieldFieldNumber = 9;
|
||||
private global::Google.Protobuf.WellKnownTypes.Type typeField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Type TypeField {
|
||||
get { return typeField_; }
|
||||
set {
|
||||
|
@ -317,6 +330,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
public const int DoubleFieldFieldNumber = 10;
|
||||
private static readonly pb::FieldCodec<double?> _single_doubleField_codec = pb::FieldCodec.ForStructWrapper<double>(82);
|
||||
private double? doubleField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public double? DoubleField {
|
||||
get { return doubleField_; }
|
||||
set {
|
||||
|
@ -328,6 +342,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
public const int FloatFieldFieldNumber = 11;
|
||||
private static readonly pb::FieldCodec<float?> _single_floatField_codec = pb::FieldCodec.ForStructWrapper<float>(90);
|
||||
private float? floatField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public float? FloatField {
|
||||
get { return floatField_; }
|
||||
set {
|
||||
|
@ -339,6 +354,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
public const int Int64FieldFieldNumber = 12;
|
||||
private static readonly pb::FieldCodec<long?> _single_int64Field_codec = pb::FieldCodec.ForStructWrapper<long>(98);
|
||||
private long? int64Field_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public long? Int64Field {
|
||||
get { return int64Field_; }
|
||||
set {
|
||||
|
@ -350,6 +366,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
public const int Uint64FieldFieldNumber = 13;
|
||||
private static readonly pb::FieldCodec<ulong?> _single_uint64Field_codec = pb::FieldCodec.ForStructWrapper<ulong>(106);
|
||||
private ulong? uint64Field_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public ulong? Uint64Field {
|
||||
get { return uint64Field_; }
|
||||
set {
|
||||
|
@ -361,6 +378,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
public const int Int32FieldFieldNumber = 14;
|
||||
private static readonly pb::FieldCodec<int?> _single_int32Field_codec = pb::FieldCodec.ForStructWrapper<int>(114);
|
||||
private int? int32Field_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int? Int32Field {
|
||||
get { return int32Field_; }
|
||||
set {
|
||||
|
@ -372,6 +390,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
public const int Uint32FieldFieldNumber = 15;
|
||||
private static readonly pb::FieldCodec<uint?> _single_uint32Field_codec = pb::FieldCodec.ForStructWrapper<uint>(122);
|
||||
private uint? uint32Field_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public uint? Uint32Field {
|
||||
get { return uint32Field_; }
|
||||
set {
|
||||
|
@ -383,6 +402,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
public const int BoolFieldFieldNumber = 16;
|
||||
private static readonly pb::FieldCodec<bool?> _single_boolField_codec = pb::FieldCodec.ForStructWrapper<bool>(130);
|
||||
private bool? boolField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool? BoolField {
|
||||
get { return boolField_; }
|
||||
set {
|
||||
|
@ -394,6 +414,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
public const int StringFieldFieldNumber = 17;
|
||||
private static readonly pb::FieldCodec<string> _single_stringField_codec = pb::FieldCodec.ForClassWrapper<string>(138);
|
||||
private string stringField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string StringField {
|
||||
get { return stringField_; }
|
||||
set {
|
||||
|
@ -405,6 +426,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
public const int BytesFieldFieldNumber = 18;
|
||||
private static readonly pb::FieldCodec<pb::ByteString> _single_bytesField_codec = pb::FieldCodec.ForClassWrapper<pb::ByteString>(146);
|
||||
private pb::ByteString bytesField_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pb::ByteString BytesField {
|
||||
get { return bytesField_; }
|
||||
set {
|
||||
|
@ -418,6 +440,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>
|
||||
/// Part of struct, but useful to be able to test separately
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Value ValueField {
|
||||
get { return valueField_; }
|
||||
set {
|
||||
|
@ -425,10 +448,12 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as TestWellKnownTypes);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(TestWellKnownTypes other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -458,6 +483,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (anyField_ != null) hash ^= AnyField.GetHashCode();
|
||||
|
@ -482,10 +508,12 @@ namespace Google.Protobuf.TestProtos {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (anyField_ != null) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -556,6 +584,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (anyField_ != null) {
|
||||
|
@ -618,6 +647,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(TestWellKnownTypes other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -729,6 +759,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -878,25 +909,29 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>
|
||||
/// A repeated field for each well-known type.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class RepeatedWellKnownTypes : pb::IMessage<RepeatedWellKnownTypes> {
|
||||
private static readonly pb::MessageParser<RepeatedWellKnownTypes> _parser = new pb::MessageParser<RepeatedWellKnownTypes>(() => new RepeatedWellKnownTypes());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<RepeatedWellKnownTypes> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.UnittestWellKnownTypesReflection.Descriptor.MessageTypes[1]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public RepeatedWellKnownTypes() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public RepeatedWellKnownTypes(RepeatedWellKnownTypes other) : this() {
|
||||
anyField_ = other.anyField_.Clone();
|
||||
apiField_ = other.apiField_.Clone();
|
||||
|
@ -918,6 +953,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
bytesField_ = other.bytesField_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public RepeatedWellKnownTypes Clone() {
|
||||
return new RepeatedWellKnownTypes(this);
|
||||
}
|
||||
|
@ -927,6 +963,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.WellKnownTypes.Any> _repeated_anyField_codec
|
||||
= pb::FieldCodec.ForMessage(10, global::Google.Protobuf.WellKnownTypes.Any.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Any> anyField_ = new pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Any>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Any> AnyField {
|
||||
get { return anyField_; }
|
||||
}
|
||||
|
@ -936,6 +973,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.WellKnownTypes.Api> _repeated_apiField_codec
|
||||
= pb::FieldCodec.ForMessage(18, global::Google.Protobuf.WellKnownTypes.Api.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Api> apiField_ = new pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Api>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Api> ApiField {
|
||||
get { return apiField_; }
|
||||
}
|
||||
|
@ -945,6 +983,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.WellKnownTypes.Duration> _repeated_durationField_codec
|
||||
= pb::FieldCodec.ForMessage(26, global::Google.Protobuf.WellKnownTypes.Duration.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Duration> durationField_ = new pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Duration>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Duration> DurationField {
|
||||
get { return durationField_; }
|
||||
}
|
||||
|
@ -954,6 +993,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.WellKnownTypes.Empty> _repeated_emptyField_codec
|
||||
= pb::FieldCodec.ForMessage(34, global::Google.Protobuf.WellKnownTypes.Empty.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Empty> emptyField_ = new pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Empty>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Empty> EmptyField {
|
||||
get { return emptyField_; }
|
||||
}
|
||||
|
@ -963,6 +1003,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.WellKnownTypes.FieldMask> _repeated_fieldMaskField_codec
|
||||
= pb::FieldCodec.ForMessage(42, global::Google.Protobuf.WellKnownTypes.FieldMask.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.FieldMask> fieldMaskField_ = new pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.FieldMask>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.FieldMask> FieldMaskField {
|
||||
get { return fieldMaskField_; }
|
||||
}
|
||||
|
@ -972,6 +1013,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.WellKnownTypes.SourceContext> _repeated_sourceContextField_codec
|
||||
= pb::FieldCodec.ForMessage(50, global::Google.Protobuf.WellKnownTypes.SourceContext.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.SourceContext> sourceContextField_ = new pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.SourceContext>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.SourceContext> SourceContextField {
|
||||
get { return sourceContextField_; }
|
||||
}
|
||||
|
@ -981,6 +1023,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.WellKnownTypes.Struct> _repeated_structField_codec
|
||||
= pb::FieldCodec.ForMessage(58, global::Google.Protobuf.WellKnownTypes.Struct.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Struct> structField_ = new pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Struct>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Struct> StructField {
|
||||
get { return structField_; }
|
||||
}
|
||||
|
@ -990,6 +1033,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.WellKnownTypes.Timestamp> _repeated_timestampField_codec
|
||||
= pb::FieldCodec.ForMessage(66, global::Google.Protobuf.WellKnownTypes.Timestamp.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Timestamp> timestampField_ = new pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Timestamp>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Timestamp> TimestampField {
|
||||
get { return timestampField_; }
|
||||
}
|
||||
|
@ -999,6 +1043,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<global::Google.Protobuf.WellKnownTypes.Type> _repeated_typeField_codec
|
||||
= pb::FieldCodec.ForMessage(74, global::Google.Protobuf.WellKnownTypes.Type.Parser);
|
||||
private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Type> typeField_ = new pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Type>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Type> TypeField {
|
||||
get { return typeField_; }
|
||||
}
|
||||
|
@ -1011,6 +1056,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>
|
||||
/// These don't actually make a lot of sense, but they're not prohibited...
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<double?> DoubleField {
|
||||
get { return doubleField_; }
|
||||
}
|
||||
|
@ -1020,6 +1066,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<float?> _repeated_floatField_codec
|
||||
= pb::FieldCodec.ForStructWrapper<float>(90);
|
||||
private readonly pbc::RepeatedField<float?> floatField_ = new pbc::RepeatedField<float?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<float?> FloatField {
|
||||
get { return floatField_; }
|
||||
}
|
||||
|
@ -1029,6 +1076,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<long?> _repeated_int64Field_codec
|
||||
= pb::FieldCodec.ForStructWrapper<long>(98);
|
||||
private readonly pbc::RepeatedField<long?> int64Field_ = new pbc::RepeatedField<long?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<long?> Int64Field {
|
||||
get { return int64Field_; }
|
||||
}
|
||||
|
@ -1038,6 +1086,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<ulong?> _repeated_uint64Field_codec
|
||||
= pb::FieldCodec.ForStructWrapper<ulong>(106);
|
||||
private readonly pbc::RepeatedField<ulong?> uint64Field_ = new pbc::RepeatedField<ulong?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<ulong?> Uint64Field {
|
||||
get { return uint64Field_; }
|
||||
}
|
||||
|
@ -1047,6 +1096,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<int?> _repeated_int32Field_codec
|
||||
= pb::FieldCodec.ForStructWrapper<int>(114);
|
||||
private readonly pbc::RepeatedField<int?> int32Field_ = new pbc::RepeatedField<int?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<int?> Int32Field {
|
||||
get { return int32Field_; }
|
||||
}
|
||||
|
@ -1056,6 +1106,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<uint?> _repeated_uint32Field_codec
|
||||
= pb::FieldCodec.ForStructWrapper<uint>(122);
|
||||
private readonly pbc::RepeatedField<uint?> uint32Field_ = new pbc::RepeatedField<uint?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<uint?> Uint32Field {
|
||||
get { return uint32Field_; }
|
||||
}
|
||||
|
@ -1065,6 +1116,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<bool?> _repeated_boolField_codec
|
||||
= pb::FieldCodec.ForStructWrapper<bool>(130);
|
||||
private readonly pbc::RepeatedField<bool?> boolField_ = new pbc::RepeatedField<bool?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<bool?> BoolField {
|
||||
get { return boolField_; }
|
||||
}
|
||||
|
@ -1074,6 +1126,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<string> _repeated_stringField_codec
|
||||
= pb::FieldCodec.ForClassWrapper<string>(138);
|
||||
private readonly pbc::RepeatedField<string> stringField_ = new pbc::RepeatedField<string>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<string> StringField {
|
||||
get { return stringField_; }
|
||||
}
|
||||
|
@ -1083,14 +1136,17 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pb::FieldCodec<pb::ByteString> _repeated_bytesField_codec
|
||||
= pb::FieldCodec.ForClassWrapper<pb::ByteString>(146);
|
||||
private readonly pbc::RepeatedField<pb::ByteString> bytesField_ = new pbc::RepeatedField<pb::ByteString>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<pb::ByteString> BytesField {
|
||||
get { return bytesField_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as RepeatedWellKnownTypes);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(RepeatedWellKnownTypes other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -1119,6 +1175,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= anyField_.GetHashCode();
|
||||
|
@ -1142,10 +1199,12 @@ namespace Google.Protobuf.TestProtos {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
anyField_.WriteTo(output, _repeated_anyField_codec);
|
||||
apiField_.WriteTo(output, _repeated_apiField_codec);
|
||||
|
@ -1167,6 +1226,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
bytesField_.WriteTo(output, _repeated_bytesField_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += anyField_.CalculateSize(_repeated_anyField_codec);
|
||||
|
@ -1190,6 +1250,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(RepeatedWellKnownTypes other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -1214,6 +1275,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
bytesField_.Add(other.bytesField_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -1299,25 +1361,29 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class OneofWellKnownTypes : pb::IMessage<OneofWellKnownTypes> {
|
||||
private static readonly pb::MessageParser<OneofWellKnownTypes> _parser = new pb::MessageParser<OneofWellKnownTypes>(() => new OneofWellKnownTypes());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<OneofWellKnownTypes> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.UnittestWellKnownTypesReflection.Descriptor.MessageTypes[2]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public OneofWellKnownTypes() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public OneofWellKnownTypes(OneofWellKnownTypes other) : this() {
|
||||
switch (other.OneofFieldCase) {
|
||||
case OneofFieldOneofCase.AnyField:
|
||||
|
@ -1378,12 +1444,14 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public OneofWellKnownTypes Clone() {
|
||||
return new OneofWellKnownTypes(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "any_field" field.</summary>
|
||||
public const int AnyFieldFieldNumber = 1;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Any AnyField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.AnyField ? (global::Google.Protobuf.WellKnownTypes.Any) oneofField_ : null; }
|
||||
set {
|
||||
|
@ -1394,6 +1462,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
/// <summary>Field number for the "api_field" field.</summary>
|
||||
public const int ApiFieldFieldNumber = 2;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Api ApiField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.ApiField ? (global::Google.Protobuf.WellKnownTypes.Api) oneofField_ : null; }
|
||||
set {
|
||||
|
@ -1404,6 +1473,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
/// <summary>Field number for the "duration_field" field.</summary>
|
||||
public const int DurationFieldFieldNumber = 3;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Duration DurationField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.DurationField ? (global::Google.Protobuf.WellKnownTypes.Duration) oneofField_ : null; }
|
||||
set {
|
||||
|
@ -1414,6 +1484,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
/// <summary>Field number for the "empty_field" field.</summary>
|
||||
public const int EmptyFieldFieldNumber = 4;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Empty EmptyField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.EmptyField ? (global::Google.Protobuf.WellKnownTypes.Empty) oneofField_ : null; }
|
||||
set {
|
||||
|
@ -1424,6 +1495,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
/// <summary>Field number for the "field_mask_field" field.</summary>
|
||||
public const int FieldMaskFieldFieldNumber = 5;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.FieldMask FieldMaskField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.FieldMaskField ? (global::Google.Protobuf.WellKnownTypes.FieldMask) oneofField_ : null; }
|
||||
set {
|
||||
|
@ -1434,6 +1506,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
/// <summary>Field number for the "source_context_field" field.</summary>
|
||||
public const int SourceContextFieldFieldNumber = 6;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.SourceContext SourceContextField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.SourceContextField ? (global::Google.Protobuf.WellKnownTypes.SourceContext) oneofField_ : null; }
|
||||
set {
|
||||
|
@ -1444,6 +1517,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
/// <summary>Field number for the "struct_field" field.</summary>
|
||||
public const int StructFieldFieldNumber = 7;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Struct StructField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.StructField ? (global::Google.Protobuf.WellKnownTypes.Struct) oneofField_ : null; }
|
||||
set {
|
||||
|
@ -1454,6 +1528,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
/// <summary>Field number for the "timestamp_field" field.</summary>
|
||||
public const int TimestampFieldFieldNumber = 8;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Timestamp TimestampField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.TimestampField ? (global::Google.Protobuf.WellKnownTypes.Timestamp) oneofField_ : null; }
|
||||
set {
|
||||
|
@ -1464,6 +1539,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
/// <summary>Field number for the "type_field" field.</summary>
|
||||
public const int TypeFieldFieldNumber = 9;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Type TypeField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.TypeField ? (global::Google.Protobuf.WellKnownTypes.Type) oneofField_ : null; }
|
||||
set {
|
||||
|
@ -1475,6 +1551,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "double_field" field.</summary>
|
||||
public const int DoubleFieldFieldNumber = 10;
|
||||
private static readonly pb::FieldCodec<double?> _oneof_doubleField_codec = pb::FieldCodec.ForStructWrapper<double>(82);
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public double? DoubleField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.DoubleField ? (double?) oneofField_ : (double?) null; }
|
||||
set {
|
||||
|
@ -1486,6 +1563,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "float_field" field.</summary>
|
||||
public const int FloatFieldFieldNumber = 11;
|
||||
private static readonly pb::FieldCodec<float?> _oneof_floatField_codec = pb::FieldCodec.ForStructWrapper<float>(90);
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public float? FloatField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.FloatField ? (float?) oneofField_ : (float?) null; }
|
||||
set {
|
||||
|
@ -1497,6 +1575,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "int64_field" field.</summary>
|
||||
public const int Int64FieldFieldNumber = 12;
|
||||
private static readonly pb::FieldCodec<long?> _oneof_int64Field_codec = pb::FieldCodec.ForStructWrapper<long>(98);
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public long? Int64Field {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.Int64Field ? (long?) oneofField_ : (long?) null; }
|
||||
set {
|
||||
|
@ -1508,6 +1587,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "uint64_field" field.</summary>
|
||||
public const int Uint64FieldFieldNumber = 13;
|
||||
private static readonly pb::FieldCodec<ulong?> _oneof_uint64Field_codec = pb::FieldCodec.ForStructWrapper<ulong>(106);
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public ulong? Uint64Field {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.Uint64Field ? (ulong?) oneofField_ : (ulong?) null; }
|
||||
set {
|
||||
|
@ -1519,6 +1599,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "int32_field" field.</summary>
|
||||
public const int Int32FieldFieldNumber = 14;
|
||||
private static readonly pb::FieldCodec<int?> _oneof_int32Field_codec = pb::FieldCodec.ForStructWrapper<int>(114);
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int? Int32Field {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.Int32Field ? (int?) oneofField_ : (int?) null; }
|
||||
set {
|
||||
|
@ -1530,6 +1611,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "uint32_field" field.</summary>
|
||||
public const int Uint32FieldFieldNumber = 15;
|
||||
private static readonly pb::FieldCodec<uint?> _oneof_uint32Field_codec = pb::FieldCodec.ForStructWrapper<uint>(122);
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public uint? Uint32Field {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.Uint32Field ? (uint?) oneofField_ : (uint?) null; }
|
||||
set {
|
||||
|
@ -1541,6 +1623,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "bool_field" field.</summary>
|
||||
public const int BoolFieldFieldNumber = 16;
|
||||
private static readonly pb::FieldCodec<bool?> _oneof_boolField_codec = pb::FieldCodec.ForStructWrapper<bool>(130);
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool? BoolField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.BoolField ? (bool?) oneofField_ : (bool?) null; }
|
||||
set {
|
||||
|
@ -1552,6 +1635,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "string_field" field.</summary>
|
||||
public const int StringFieldFieldNumber = 17;
|
||||
private static readonly pb::FieldCodec<string> _oneof_stringField_codec = pb::FieldCodec.ForClassWrapper<string>(138);
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string StringField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.StringField ? (string) oneofField_ : (string) null; }
|
||||
set {
|
||||
|
@ -1563,6 +1647,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// <summary>Field number for the "bytes_field" field.</summary>
|
||||
public const int BytesFieldFieldNumber = 18;
|
||||
private static readonly pb::FieldCodec<pb::ByteString> _oneof_bytesField_codec = pb::FieldCodec.ForClassWrapper<pb::ByteString>(146);
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pb::ByteString BytesField {
|
||||
get { return oneofFieldCase_ == OneofFieldOneofCase.BytesField ? (pb::ByteString) oneofField_ : (pb::ByteString) null; }
|
||||
set {
|
||||
|
@ -1595,19 +1680,23 @@ namespace Google.Protobuf.TestProtos {
|
|||
BytesField = 18,
|
||||
}
|
||||
private OneofFieldOneofCase oneofFieldCase_ = OneofFieldOneofCase.None;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public OneofFieldOneofCase OneofFieldCase {
|
||||
get { return oneofFieldCase_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void ClearOneofField() {
|
||||
oneofFieldCase_ = OneofFieldOneofCase.None;
|
||||
oneofField_ = null;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as OneofWellKnownTypes);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(OneofWellKnownTypes other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -1637,6 +1726,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (oneofFieldCase_ == OneofFieldOneofCase.AnyField) hash ^= AnyField.GetHashCode();
|
||||
|
@ -1661,10 +1751,12 @@ namespace Google.Protobuf.TestProtos {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (oneofFieldCase_ == OneofFieldOneofCase.AnyField) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -1731,6 +1823,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (oneofFieldCase_ == OneofFieldOneofCase.AnyField) {
|
||||
|
@ -1790,6 +1883,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(OneofWellKnownTypes other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -1853,6 +1947,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -1988,25 +2083,29 @@ namespace Google.Protobuf.TestProtos {
|
|||
/// need to worry about the value part of the map being the
|
||||
/// well-known types, as messages can't be map keys.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class MapWellKnownTypes : pb::IMessage<MapWellKnownTypes> {
|
||||
private static readonly pb::MessageParser<MapWellKnownTypes> _parser = new pb::MessageParser<MapWellKnownTypes>(() => new MapWellKnownTypes());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<MapWellKnownTypes> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.TestProtos.UnittestWellKnownTypesReflection.Descriptor.MessageTypes[3]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public MapWellKnownTypes() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public MapWellKnownTypes(MapWellKnownTypes other) : this() {
|
||||
anyField_ = other.anyField_.Clone();
|
||||
apiField_ = other.apiField_.Clone();
|
||||
|
@ -2028,6 +2127,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
bytesField_ = other.bytesField_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public MapWellKnownTypes Clone() {
|
||||
return new MapWellKnownTypes(this);
|
||||
}
|
||||
|
@ -2037,6 +2137,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Any>.Codec _map_anyField_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Any>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.WellKnownTypes.Any.Parser), 10);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Any> anyField_ = new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Any>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Any> AnyField {
|
||||
get { return anyField_; }
|
||||
}
|
||||
|
@ -2046,6 +2147,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Api>.Codec _map_apiField_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Api>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.WellKnownTypes.Api.Parser), 18);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Api> apiField_ = new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Api>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Api> ApiField {
|
||||
get { return apiField_; }
|
||||
}
|
||||
|
@ -2055,6 +2157,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Duration>.Codec _map_durationField_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Duration>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.WellKnownTypes.Duration.Parser), 26);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Duration> durationField_ = new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Duration>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Duration> DurationField {
|
||||
get { return durationField_; }
|
||||
}
|
||||
|
@ -2064,6 +2167,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Empty>.Codec _map_emptyField_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Empty>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.WellKnownTypes.Empty.Parser), 34);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Empty> emptyField_ = new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Empty>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Empty> EmptyField {
|
||||
get { return emptyField_; }
|
||||
}
|
||||
|
@ -2073,6 +2177,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.FieldMask>.Codec _map_fieldMaskField_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.FieldMask>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.WellKnownTypes.FieldMask.Parser), 42);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.FieldMask> fieldMaskField_ = new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.FieldMask>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.FieldMask> FieldMaskField {
|
||||
get { return fieldMaskField_; }
|
||||
}
|
||||
|
@ -2082,6 +2187,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.SourceContext>.Codec _map_sourceContextField_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.SourceContext>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.WellKnownTypes.SourceContext.Parser), 50);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.SourceContext> sourceContextField_ = new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.SourceContext>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.SourceContext> SourceContextField {
|
||||
get { return sourceContextField_; }
|
||||
}
|
||||
|
@ -2091,6 +2197,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Struct>.Codec _map_structField_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Struct>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.WellKnownTypes.Struct.Parser), 58);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Struct> structField_ = new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Struct>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Struct> StructField {
|
||||
get { return structField_; }
|
||||
}
|
||||
|
@ -2100,6 +2207,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Timestamp>.Codec _map_timestampField_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Timestamp>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.WellKnownTypes.Timestamp.Parser), 66);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Timestamp> timestampField_ = new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Timestamp>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Timestamp> TimestampField {
|
||||
get { return timestampField_; }
|
||||
}
|
||||
|
@ -2109,6 +2217,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Type>.Codec _map_typeField_codec
|
||||
= new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Type>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForMessage(18, global::Google.Protobuf.WellKnownTypes.Type.Parser), 74);
|
||||
private readonly pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Type> typeField_ = new pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Type>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, global::Google.Protobuf.WellKnownTypes.Type> TypeField {
|
||||
get { return typeField_; }
|
||||
}
|
||||
|
@ -2118,6 +2227,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, double?>.Codec _map_doubleField_codec
|
||||
= new pbc::MapField<int, double?>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForStructWrapper<double>(18), 82);
|
||||
private readonly pbc::MapField<int, double?> doubleField_ = new pbc::MapField<int, double?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, double?> DoubleField {
|
||||
get { return doubleField_; }
|
||||
}
|
||||
|
@ -2127,6 +2237,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, float?>.Codec _map_floatField_codec
|
||||
= new pbc::MapField<int, float?>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForStructWrapper<float>(18), 90);
|
||||
private readonly pbc::MapField<int, float?> floatField_ = new pbc::MapField<int, float?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, float?> FloatField {
|
||||
get { return floatField_; }
|
||||
}
|
||||
|
@ -2136,6 +2247,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, long?>.Codec _map_int64Field_codec
|
||||
= new pbc::MapField<int, long?>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForStructWrapper<long>(18), 98);
|
||||
private readonly pbc::MapField<int, long?> int64Field_ = new pbc::MapField<int, long?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, long?> Int64Field {
|
||||
get { return int64Field_; }
|
||||
}
|
||||
|
@ -2145,6 +2257,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, ulong?>.Codec _map_uint64Field_codec
|
||||
= new pbc::MapField<int, ulong?>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForStructWrapper<ulong>(18), 106);
|
||||
private readonly pbc::MapField<int, ulong?> uint64Field_ = new pbc::MapField<int, ulong?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, ulong?> Uint64Field {
|
||||
get { return uint64Field_; }
|
||||
}
|
||||
|
@ -2154,6 +2267,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, int?>.Codec _map_int32Field_codec
|
||||
= new pbc::MapField<int, int?>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForStructWrapper<int>(18), 114);
|
||||
private readonly pbc::MapField<int, int?> int32Field_ = new pbc::MapField<int, int?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, int?> Int32Field {
|
||||
get { return int32Field_; }
|
||||
}
|
||||
|
@ -2163,6 +2277,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, uint?>.Codec _map_uint32Field_codec
|
||||
= new pbc::MapField<int, uint?>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForStructWrapper<uint>(18), 122);
|
||||
private readonly pbc::MapField<int, uint?> uint32Field_ = new pbc::MapField<int, uint?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, uint?> Uint32Field {
|
||||
get { return uint32Field_; }
|
||||
}
|
||||
|
@ -2172,6 +2287,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, bool?>.Codec _map_boolField_codec
|
||||
= new pbc::MapField<int, bool?>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForStructWrapper<bool>(18), 130);
|
||||
private readonly pbc::MapField<int, bool?> boolField_ = new pbc::MapField<int, bool?>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, bool?> BoolField {
|
||||
get { return boolField_; }
|
||||
}
|
||||
|
@ -2181,6 +2297,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, string>.Codec _map_stringField_codec
|
||||
= new pbc::MapField<int, string>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForClassWrapper<string>(18), 138);
|
||||
private readonly pbc::MapField<int, string> stringField_ = new pbc::MapField<int, string>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, string> StringField {
|
||||
get { return stringField_; }
|
||||
}
|
||||
|
@ -2190,14 +2307,17 @@ namespace Google.Protobuf.TestProtos {
|
|||
private static readonly pbc::MapField<int, pb::ByteString>.Codec _map_bytesField_codec
|
||||
= new pbc::MapField<int, pb::ByteString>.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForClassWrapper<pb::ByteString>(18), 146);
|
||||
private readonly pbc::MapField<int, pb::ByteString> bytesField_ = new pbc::MapField<int, pb::ByteString>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<int, pb::ByteString> BytesField {
|
||||
get { return bytesField_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as MapWellKnownTypes);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(MapWellKnownTypes other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -2226,6 +2346,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= AnyField.GetHashCode();
|
||||
|
@ -2249,10 +2370,12 @@ namespace Google.Protobuf.TestProtos {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
anyField_.WriteTo(output, _map_anyField_codec);
|
||||
apiField_.WriteTo(output, _map_apiField_codec);
|
||||
|
@ -2274,6 +2397,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
bytesField_.WriteTo(output, _map_bytesField_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += anyField_.CalculateSize(_map_anyField_codec);
|
||||
|
@ -2297,6 +2421,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(MapWellKnownTypes other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -2321,6 +2446,7 @@ namespace Google.Protobuf.TestProtos {
|
|||
bytesField_.Add(other.bytesField_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -51,4 +51,4 @@
|
|||
<file src="bin/ReleaseSigned/Google.Protobuf.xml" target="lib/dotnet" />
|
||||
<file src="**\*.cs" target="src" />
|
||||
</files>
|
||||
</package>
|
||||
</package>
|
File diff suppressed because it is too large
Load diff
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.WellKnownTypes {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/any.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class AnyReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -64,6 +63,16 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// foo = any.unpack(Foo.class);
|
||||
/// }
|
||||
///
|
||||
/// Example 3: Pack and unpack a message in Python.
|
||||
///
|
||||
/// foo = Foo(...)
|
||||
/// any = Any()
|
||||
/// any.Pack(foo)
|
||||
/// ...
|
||||
/// if any.Is(Foo.DESCRIPTOR):
|
||||
/// any.Unpack(foo)
|
||||
/// ...
|
||||
///
|
||||
/// The pack methods provided by protobuf library will by default use
|
||||
/// 'type.googleapis.com/full.type.name' as the type URL and the unpack
|
||||
/// methods only use the fully qualified type name after the last '/'
|
||||
|
@ -98,30 +107,35 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// "value": "1.212s"
|
||||
/// }
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Any : pb::IMessage<Any> {
|
||||
private static readonly pb::MessageParser<Any> _parser = new pb::MessageParser<Any>(() => new Any());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Any> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.AnyReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Any() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Any(Any other) : this() {
|
||||
typeUrl_ = other.typeUrl_;
|
||||
value_ = other.value_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Any Clone() {
|
||||
return new Any(this);
|
||||
}
|
||||
|
@ -133,10 +147,10 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// A URL/resource name whose content describes the type of the
|
||||
/// serialized protocol buffer message.
|
||||
///
|
||||
/// For URLs which use the schema `http`, `https`, or no schema, the
|
||||
/// For URLs which use the scheme `http`, `https`, or no scheme, the
|
||||
/// following restrictions and interpretations apply:
|
||||
///
|
||||
/// * If no schema is provided, `https` is assumed.
|
||||
/// * If no scheme is provided, `https` is assumed.
|
||||
/// * The last segment of the URL's path must represent the fully
|
||||
/// qualified name of the type (as in `path/google.protobuf.Duration`).
|
||||
/// The name should be in a canonical form (e.g., leading "." is
|
||||
|
@ -149,9 +163,10 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// on changes to types. (Use versioned type names to manage
|
||||
/// breaking changes.)
|
||||
///
|
||||
/// Schemas other than `http`, `https` (or the empty schema) might be
|
||||
/// Schemes other than `http`, `https` (or the empty scheme) might be
|
||||
/// used with implementation specific semantics.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string TypeUrl {
|
||||
get { return typeUrl_; }
|
||||
set {
|
||||
|
@ -165,6 +180,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Must be a valid serialized protocol buffer of the above specified type.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pb::ByteString Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -172,10 +188,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Any);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Any other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -188,6 +206,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (TypeUrl.Length != 0) hash ^= TypeUrl.GetHashCode();
|
||||
|
@ -195,10 +214,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (TypeUrl.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -210,6 +231,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (TypeUrl.Length != 0) {
|
||||
|
@ -221,6 +243,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Any other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -233,6 +256,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.WellKnownTypes {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/api.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class ApiReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -54,25 +53,29 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Api is a light-weight descriptor for a protocol buffer service.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Api : pb::IMessage<Api> {
|
||||
private static readonly pb::MessageParser<Api> _parser = new pb::MessageParser<Api>(() => new Api());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Api> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.ApiReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Api() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Api(Api other) : this() {
|
||||
name_ = other.name_;
|
||||
methods_ = other.methods_.Clone();
|
||||
|
@ -83,6 +86,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
syntax_ = other.syntax_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Api Clone() {
|
||||
return new Api(this);
|
||||
}
|
||||
|
@ -94,6 +98,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// The fully qualified name of this api, including package name
|
||||
/// followed by the api's simple name.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Name {
|
||||
get { return name_; }
|
||||
set {
|
||||
|
@ -109,6 +114,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The methods of this api, in unspecified order.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Method> Methods {
|
||||
get { return methods_; }
|
||||
}
|
||||
|
@ -121,6 +127,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Any metadata attached to the API.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> Options {
|
||||
get { return options_; }
|
||||
}
|
||||
|
@ -150,6 +157,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// be omitted. Zero major versions must only be used for
|
||||
/// experimental, none-GA apis.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Version {
|
||||
get { return version_; }
|
||||
set {
|
||||
|
@ -164,6 +172,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// Source context for the protocol buffer service represented by this
|
||||
/// message.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.SourceContext SourceContext {
|
||||
get { return sourceContext_; }
|
||||
set {
|
||||
|
@ -179,6 +188,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Included APIs. See [Mixin][].
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Mixin> Mixins {
|
||||
get { return mixins_; }
|
||||
}
|
||||
|
@ -189,6 +199,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The source syntax of the service.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Syntax Syntax {
|
||||
get { return syntax_; }
|
||||
set {
|
||||
|
@ -196,10 +207,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Api);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Api other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -217,6 +230,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Name.Length != 0) hash ^= Name.GetHashCode();
|
||||
|
@ -229,10 +243,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Name.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -255,6 +271,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Name.Length != 0) {
|
||||
|
@ -275,6 +292,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Api other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -299,6 +317,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -346,25 +365,29 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Method represents a method of an api.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Method : pb::IMessage<Method> {
|
||||
private static readonly pb::MessageParser<Method> _parser = new pb::MessageParser<Method>(() => new Method());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Method> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.ApiReflection.Descriptor.MessageTypes[1]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Method() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Method(Method other) : this() {
|
||||
name_ = other.name_;
|
||||
requestTypeUrl_ = other.requestTypeUrl_;
|
||||
|
@ -375,6 +398,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
syntax_ = other.syntax_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Method Clone() {
|
||||
return new Method(this);
|
||||
}
|
||||
|
@ -385,6 +409,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The simple name of this method.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Name {
|
||||
get { return name_; }
|
||||
set {
|
||||
|
@ -398,6 +423,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// A URL of the input message type.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string RequestTypeUrl {
|
||||
get { return requestTypeUrl_; }
|
||||
set {
|
||||
|
@ -411,6 +437,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// If true, the request is streamed.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool RequestStreaming {
|
||||
get { return requestStreaming_; }
|
||||
set {
|
||||
|
@ -424,6 +451,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The URL of the output message type.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string ResponseTypeUrl {
|
||||
get { return responseTypeUrl_; }
|
||||
set {
|
||||
|
@ -437,6 +465,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// If true, the response is streamed.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool ResponseStreaming {
|
||||
get { return responseStreaming_; }
|
||||
set {
|
||||
|
@ -452,6 +481,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Any metadata attached to the method.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> Options {
|
||||
get { return options_; }
|
||||
}
|
||||
|
@ -462,6 +492,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The source syntax of this method.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Syntax Syntax {
|
||||
get { return syntax_; }
|
||||
set {
|
||||
|
@ -469,10 +500,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Method);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Method other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -490,6 +523,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Name.Length != 0) hash ^= Name.GetHashCode();
|
||||
|
@ -502,10 +536,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Name.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -534,6 +570,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Name.Length != 0) {
|
||||
|
@ -558,6 +595,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Method other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -583,6 +621,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -703,30 +742,35 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// ...
|
||||
/// }
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Mixin : pb::IMessage<Mixin> {
|
||||
private static readonly pb::MessageParser<Mixin> _parser = new pb::MessageParser<Mixin>(() => new Mixin());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Mixin> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.ApiReflection.Descriptor.MessageTypes[2]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Mixin() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Mixin(Mixin other) : this() {
|
||||
name_ = other.name_;
|
||||
root_ = other.root_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Mixin Clone() {
|
||||
return new Mixin(this);
|
||||
}
|
||||
|
@ -737,6 +781,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The fully qualified name of the API which is included.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Name {
|
||||
get { return name_; }
|
||||
set {
|
||||
|
@ -751,6 +796,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// If non-empty specifies a path under which inherited HTTP paths
|
||||
/// are rooted.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Root {
|
||||
get { return root_; }
|
||||
set {
|
||||
|
@ -758,10 +804,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Mixin);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Mixin other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -774,6 +822,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Name.Length != 0) hash ^= Name.GetHashCode();
|
||||
|
@ -781,10 +830,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Name.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -796,6 +847,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Name.Length != 0) {
|
||||
|
@ -807,6 +859,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Mixin other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -819,6 +872,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.WellKnownTypes {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/duration.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class DurationReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -81,30 +80,35 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// end.nanos -= 1000000000;
|
||||
/// }
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Duration : pb::IMessage<Duration> {
|
||||
private static readonly pb::MessageParser<Duration> _parser = new pb::MessageParser<Duration>(() => new Duration());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Duration> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.DurationReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Duration() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Duration(Duration other) : this() {
|
||||
seconds_ = other.seconds_;
|
||||
nanos_ = other.nanos_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Duration Clone() {
|
||||
return new Duration(this);
|
||||
}
|
||||
|
@ -116,6 +120,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// Signed seconds of the span of time. Must be from -315,576,000,000
|
||||
/// to +315,576,000,000 inclusive.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public long Seconds {
|
||||
get { return seconds_; }
|
||||
set {
|
||||
|
@ -134,6 +139,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// of the same sign as the `seconds` field. Must be from -999,999,999
|
||||
/// to +999,999,999 inclusive.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int Nanos {
|
||||
get { return nanos_; }
|
||||
set {
|
||||
|
@ -141,10 +147,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Duration);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Duration other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -157,6 +165,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Seconds != 0L) hash ^= Seconds.GetHashCode();
|
||||
|
@ -164,10 +173,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Seconds != 0L) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -179,6 +190,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Seconds != 0L) {
|
||||
|
@ -190,6 +202,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Duration other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -202,6 +215,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.WellKnownTypes {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/empty.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class EmptyReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -49,36 +48,43 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `Empty` is empty JSON object `{}`.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Empty : pb::IMessage<Empty> {
|
||||
private static readonly pb::MessageParser<Empty> _parser = new pb::MessageParser<Empty>(() => new Empty());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Empty> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.EmptyReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Empty() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Empty(Empty other) : this() {
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Empty Clone() {
|
||||
return new Empty(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Empty);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Empty other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -89,29 +95,35 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Empty other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.WellKnownTypes {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/field_mask.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class FieldMaskReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -105,6 +104,58 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// describe the updated values, the API ignores the values of all
|
||||
/// fields not covered by the mask.
|
||||
///
|
||||
/// If a repeated field is specified for an update operation, the existing
|
||||
/// repeated values in the target resource will be overwritten by the new values.
|
||||
/// Note that a repeated field is only allowed in the last position of a field
|
||||
/// mask.
|
||||
///
|
||||
/// If a sub-message is specified in the last position of the field mask for an
|
||||
/// update operation, then the existing sub-message in the target resource is
|
||||
/// overwritten. Given the target message:
|
||||
///
|
||||
/// f {
|
||||
/// b {
|
||||
/// d : 1
|
||||
/// x : 2
|
||||
/// }
|
||||
/// c : 1
|
||||
/// }
|
||||
///
|
||||
/// And an update message:
|
||||
///
|
||||
/// f {
|
||||
/// b {
|
||||
/// d : 10
|
||||
/// }
|
||||
/// }
|
||||
///
|
||||
/// then if the field mask is:
|
||||
///
|
||||
/// paths: "f.b"
|
||||
///
|
||||
/// then the result will be:
|
||||
///
|
||||
/// f {
|
||||
/// b {
|
||||
/// d : 10
|
||||
/// }
|
||||
/// c : 1
|
||||
/// }
|
||||
///
|
||||
/// However, if the update mask was:
|
||||
///
|
||||
/// paths: "f.b.d"
|
||||
///
|
||||
/// then the result would be:
|
||||
///
|
||||
/// f {
|
||||
/// b {
|
||||
/// d : 10
|
||||
/// x : 2
|
||||
/// }
|
||||
/// c : 1
|
||||
/// }
|
||||
///
|
||||
/// In order to reset a field's value to the default, the field must
|
||||
/// be in the mask and set to the default value in the provided resource.
|
||||
/// Hence, in order to reset all fields of a resource, provide a default
|
||||
|
@ -187,29 +238,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// Note that oneof type names ("test_oneof" in this case) cannot be used in
|
||||
/// paths.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class FieldMask : pb::IMessage<FieldMask> {
|
||||
private static readonly pb::MessageParser<FieldMask> _parser = new pb::MessageParser<FieldMask>(() => new FieldMask());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<FieldMask> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.FieldMaskReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public FieldMask() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public FieldMask(FieldMask other) : this() {
|
||||
paths_ = other.paths_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public FieldMask Clone() {
|
||||
return new FieldMask(this);
|
||||
}
|
||||
|
@ -222,14 +278,17 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The set of field mask paths.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<string> Paths {
|
||||
get { return paths_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as FieldMask);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(FieldMask other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -241,26 +300,31 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= paths_.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
paths_.WriteTo(output, _repeated_paths_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += paths_.CalculateSize(_repeated_paths_codec);
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(FieldMask other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -268,6 +332,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
paths_.Add(other.paths_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.WellKnownTypes {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/source_context.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class SourceContextReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -42,29 +41,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// `SourceContext` represents information about the source of a
|
||||
/// protobuf element, like the file in which it is defined.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class SourceContext : pb::IMessage<SourceContext> {
|
||||
private static readonly pb::MessageParser<SourceContext> _parser = new pb::MessageParser<SourceContext>(() => new SourceContext());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<SourceContext> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.SourceContextReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public SourceContext() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public SourceContext(SourceContext other) : this() {
|
||||
fileName_ = other.fileName_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public SourceContext Clone() {
|
||||
return new SourceContext(this);
|
||||
}
|
||||
|
@ -74,8 +78,9 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
private string fileName_ = "";
|
||||
/// <summary>
|
||||
/// The path-qualified name of the .proto file that contained the associated
|
||||
/// protobuf element. For example: `"google/protobuf/source.proto"`.
|
||||
/// protobuf element. For example: `"google/protobuf/source_context.proto"`.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string FileName {
|
||||
get { return fileName_; }
|
||||
set {
|
||||
|
@ -83,10 +88,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as SourceContext);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(SourceContext other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -98,16 +105,19 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (FileName.Length != 0) hash ^= FileName.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (FileName.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -115,6 +125,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (FileName.Length != 0) {
|
||||
|
@ -123,6 +134,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(SourceContext other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -132,6 +144,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.WellKnownTypes {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/struct.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class StructReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -76,29 +75,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `Struct` is JSON object.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Struct : pb::IMessage<Struct> {
|
||||
private static readonly pb::MessageParser<Struct> _parser = new pb::MessageParser<Struct>(() => new Struct());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Struct> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.StructReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Struct() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Struct(Struct other) : this() {
|
||||
fields_ = other.fields_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Struct Clone() {
|
||||
return new Struct(this);
|
||||
}
|
||||
|
@ -111,14 +115,17 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Unordered map of dynamically typed values.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::MapField<string, global::Google.Protobuf.WellKnownTypes.Value> Fields {
|
||||
get { return fields_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Struct);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Struct other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -130,26 +137,31 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= Fields.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
fields_.WriteTo(output, _map_fields_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += fields_.CalculateSize(_map_fields_codec);
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Struct other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -157,6 +169,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
fields_.Add(other.fields_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -182,25 +195,29 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `Value` is JSON value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Value : pb::IMessage<Value> {
|
||||
private static readonly pb::MessageParser<Value> _parser = new pb::MessageParser<Value>(() => new Value());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Value> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.StructReflection.Descriptor.MessageTypes[1]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Value() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Value(Value other) : this() {
|
||||
switch (other.KindCase) {
|
||||
case KindOneofCase.NullValue:
|
||||
|
@ -225,6 +242,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Value Clone() {
|
||||
return new Value(this);
|
||||
}
|
||||
|
@ -234,6 +252,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Represents a null value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.NullValue NullValue {
|
||||
get { return kindCase_ == KindOneofCase.NullValue ? (global::Google.Protobuf.WellKnownTypes.NullValue) kind_ : 0; }
|
||||
set {
|
||||
|
@ -247,6 +266,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Represents a double value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public double NumberValue {
|
||||
get { return kindCase_ == KindOneofCase.NumberValue ? (double) kind_ : 0D; }
|
||||
set {
|
||||
|
@ -260,6 +280,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Represents a string value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string StringValue {
|
||||
get { return kindCase_ == KindOneofCase.StringValue ? (string) kind_ : ""; }
|
||||
set {
|
||||
|
@ -273,6 +294,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Represents a boolean value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool BoolValue {
|
||||
get { return kindCase_ == KindOneofCase.BoolValue ? (bool) kind_ : false; }
|
||||
set {
|
||||
|
@ -286,6 +308,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Represents a structured value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Struct StructValue {
|
||||
get { return kindCase_ == KindOneofCase.StructValue ? (global::Google.Protobuf.WellKnownTypes.Struct) kind_ : null; }
|
||||
set {
|
||||
|
@ -299,6 +322,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Represents a repeated `Value`.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.ListValue ListValue {
|
||||
get { return kindCase_ == KindOneofCase.ListValue ? (global::Google.Protobuf.WellKnownTypes.ListValue) kind_ : null; }
|
||||
set {
|
||||
|
@ -319,19 +343,23 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
ListValue = 6,
|
||||
}
|
||||
private KindOneofCase kindCase_ = KindOneofCase.None;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public KindOneofCase KindCase {
|
||||
get { return kindCase_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void ClearKind() {
|
||||
kindCase_ = KindOneofCase.None;
|
||||
kind_ = null;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Value);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Value other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -349,6 +377,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (kindCase_ == KindOneofCase.NullValue) hash ^= NullValue.GetHashCode();
|
||||
|
@ -361,10 +390,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (kindCase_ == KindOneofCase.NullValue) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -392,6 +423,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (kindCase_ == KindOneofCase.NullValue) {
|
||||
|
@ -415,6 +447,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Value other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -442,6 +475,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -495,29 +529,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `ListValue` is JSON array.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class ListValue : pb::IMessage<ListValue> {
|
||||
private static readonly pb::MessageParser<ListValue> _parser = new pb::MessageParser<ListValue>(() => new ListValue());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<ListValue> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.StructReflection.Descriptor.MessageTypes[2]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public ListValue() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public ListValue(ListValue other) : this() {
|
||||
values_ = other.values_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public ListValue Clone() {
|
||||
return new ListValue(this);
|
||||
}
|
||||
|
@ -530,14 +569,17 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Repeated field of dynamically typed values.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Value> Values {
|
||||
get { return values_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as ListValue);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(ListValue other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -549,26 +591,31 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= values_.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
values_.WriteTo(output, _repeated_values_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += values_.CalculateSize(_repeated_values_codec);
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(ListValue other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -576,6 +623,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
values_.Add(other.values_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.WellKnownTypes {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/timestamp.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class TimestampReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -93,30 +92,35 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// nanos = int((now - seconds) * 10**9)
|
||||
/// timestamp = Timestamp(seconds=seconds, nanos=nanos)
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Timestamp : pb::IMessage<Timestamp> {
|
||||
private static readonly pb::MessageParser<Timestamp> _parser = new pb::MessageParser<Timestamp>(() => new Timestamp());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Timestamp> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.TimestampReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Timestamp() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Timestamp(Timestamp other) : this() {
|
||||
seconds_ = other.seconds_;
|
||||
nanos_ = other.nanos_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Timestamp Clone() {
|
||||
return new Timestamp(this);
|
||||
}
|
||||
|
@ -129,6 +133,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// 1970-01-01T00:00:00Z. Must be from from 0001-01-01T00:00:00Z to
|
||||
/// 9999-12-31T23:59:59Z inclusive.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public long Seconds {
|
||||
get { return seconds_; }
|
||||
set {
|
||||
|
@ -145,6 +150,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// that count forward in time. Must be from 0 to 999,999,999
|
||||
/// inclusive.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int Nanos {
|
||||
get { return nanos_; }
|
||||
set {
|
||||
|
@ -152,10 +158,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Timestamp);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Timestamp other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -168,6 +176,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Seconds != 0L) hash ^= Seconds.GetHashCode();
|
||||
|
@ -175,10 +184,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Seconds != 0L) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -190,6 +201,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Seconds != 0L) {
|
||||
|
@ -201,6 +213,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Timestamp other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -213,6 +226,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.WellKnownTypes {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/type.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class TypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -92,25 +91,29 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// A protocol buffer message type.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Type : pb::IMessage<Type> {
|
||||
private static readonly pb::MessageParser<Type> _parser = new pb::MessageParser<Type>(() => new Type());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Type> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.TypeReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Type() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Type(Type other) : this() {
|
||||
name_ = other.name_;
|
||||
fields_ = other.fields_.Clone();
|
||||
|
@ -120,6 +123,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
syntax_ = other.syntax_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Type Clone() {
|
||||
return new Type(this);
|
||||
}
|
||||
|
@ -130,6 +134,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The fully qualified message name.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Name {
|
||||
get { return name_; }
|
||||
set {
|
||||
|
@ -145,6 +150,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The list of fields.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Field> Fields {
|
||||
get { return fields_; }
|
||||
}
|
||||
|
@ -157,6 +163,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The list of types appearing in `oneof` definitions in this type.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<string> Oneofs {
|
||||
get { return oneofs_; }
|
||||
}
|
||||
|
@ -169,6 +176,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The protocol buffer options.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> Options {
|
||||
get { return options_; }
|
||||
}
|
||||
|
@ -179,6 +187,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The source context.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.SourceContext SourceContext {
|
||||
get { return sourceContext_; }
|
||||
set {
|
||||
|
@ -192,6 +201,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The source syntax.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Syntax Syntax {
|
||||
get { return syntax_; }
|
||||
set {
|
||||
|
@ -199,10 +209,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Type);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Type other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -219,6 +231,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Name.Length != 0) hash ^= Name.GetHashCode();
|
||||
|
@ -230,10 +243,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Name.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -252,6 +267,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Name.Length != 0) {
|
||||
|
@ -269,6 +285,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Type other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -290,6 +307,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -333,25 +351,29 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// A single field of a message type.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Field : pb::IMessage<Field> {
|
||||
private static readonly pb::MessageParser<Field> _parser = new pb::MessageParser<Field>(() => new Field());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Field> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.TypeReflection.Descriptor.MessageTypes[1]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Field() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Field(Field other) : this() {
|
||||
kind_ = other.kind_;
|
||||
cardinality_ = other.cardinality_;
|
||||
|
@ -365,6 +387,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
defaultValue_ = other.defaultValue_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Field Clone() {
|
||||
return new Field(this);
|
||||
}
|
||||
|
@ -375,6 +398,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The field type.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Field.Types.Kind Kind {
|
||||
get { return kind_; }
|
||||
set {
|
||||
|
@ -388,6 +412,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The field cardinality.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Field.Types.Cardinality Cardinality {
|
||||
get { return cardinality_; }
|
||||
set {
|
||||
|
@ -401,6 +426,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The field number.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int Number {
|
||||
get { return number_; }
|
||||
set {
|
||||
|
@ -414,6 +440,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The field name.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Name {
|
||||
get { return name_; }
|
||||
set {
|
||||
|
@ -428,6 +455,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// The field type URL, without the scheme, for message or enumeration
|
||||
/// types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string TypeUrl {
|
||||
get { return typeUrl_; }
|
||||
set {
|
||||
|
@ -442,6 +470,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// The index of the field type in `Type.oneofs`, for message or enumeration
|
||||
/// types. The first type has index 1; zero means the type is not in the list.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int OneofIndex {
|
||||
get { return oneofIndex_; }
|
||||
set {
|
||||
|
@ -455,6 +484,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Whether to use alternative packed wire representation.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Packed {
|
||||
get { return packed_; }
|
||||
set {
|
||||
|
@ -470,6 +500,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The protocol buffer options.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> Options {
|
||||
get { return options_; }
|
||||
}
|
||||
|
@ -480,6 +511,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The field JSON name.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string JsonName {
|
||||
get { return jsonName_; }
|
||||
set {
|
||||
|
@ -493,6 +525,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The string value of the default value of this field. Proto2 syntax only.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string DefaultValue {
|
||||
get { return defaultValue_; }
|
||||
set {
|
||||
|
@ -500,10 +533,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Field);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Field other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -524,6 +559,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Kind != 0) hash ^= Kind.GetHashCode();
|
||||
|
@ -539,10 +575,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Kind != 0) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -583,6 +621,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Kind != 0) {
|
||||
|
@ -616,6 +655,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Field other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -650,6 +690,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -703,7 +744,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
|
||||
#region Nested types
|
||||
/// <summary>Container for nested types declared in the Field message type.</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static partial class Types {
|
||||
/// <summary>
|
||||
/// Basic field types.
|
||||
|
@ -817,25 +858,29 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Enum type definition.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Enum : pb::IMessage<Enum> {
|
||||
private static readonly pb::MessageParser<Enum> _parser = new pb::MessageParser<Enum>(() => new Enum());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Enum> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.TypeReflection.Descriptor.MessageTypes[2]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Enum() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Enum(Enum other) : this() {
|
||||
name_ = other.name_;
|
||||
enumvalue_ = other.enumvalue_.Clone();
|
||||
|
@ -844,6 +889,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
syntax_ = other.syntax_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Enum Clone() {
|
||||
return new Enum(this);
|
||||
}
|
||||
|
@ -854,6 +900,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Enum type name.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Name {
|
||||
get { return name_; }
|
||||
set {
|
||||
|
@ -869,6 +916,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Enum value definitions.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.EnumValue> Enumvalue {
|
||||
get { return enumvalue_; }
|
||||
}
|
||||
|
@ -881,6 +929,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Protocol buffer options.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> Options {
|
||||
get { return options_; }
|
||||
}
|
||||
|
@ -891,6 +940,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The source context.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.SourceContext SourceContext {
|
||||
get { return sourceContext_; }
|
||||
set {
|
||||
|
@ -904,6 +954,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The source syntax.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Syntax Syntax {
|
||||
get { return syntax_; }
|
||||
set {
|
||||
|
@ -911,10 +962,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Enum);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Enum other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -930,6 +983,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Name.Length != 0) hash ^= Name.GetHashCode();
|
||||
|
@ -940,10 +994,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Name.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -961,6 +1017,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Name.Length != 0) {
|
||||
|
@ -977,6 +1034,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Enum other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -997,6 +1055,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -1036,31 +1095,36 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Enum value definition.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class EnumValue : pb::IMessage<EnumValue> {
|
||||
private static readonly pb::MessageParser<EnumValue> _parser = new pb::MessageParser<EnumValue>(() => new EnumValue());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<EnumValue> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.TypeReflection.Descriptor.MessageTypes[3]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public EnumValue() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public EnumValue(EnumValue other) : this() {
|
||||
name_ = other.name_;
|
||||
number_ = other.number_;
|
||||
options_ = other.options_.Clone();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public EnumValue Clone() {
|
||||
return new EnumValue(this);
|
||||
}
|
||||
|
@ -1071,6 +1135,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Enum value name.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Name {
|
||||
get { return name_; }
|
||||
set {
|
||||
|
@ -1084,6 +1149,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Enum value number.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int Number {
|
||||
get { return number_; }
|
||||
set {
|
||||
|
@ -1099,14 +1165,17 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// Protocol buffer options.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> Options {
|
||||
get { return options_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as EnumValue);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(EnumValue other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -1120,6 +1189,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Name.Length != 0) hash ^= Name.GetHashCode();
|
||||
|
@ -1128,10 +1198,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Name.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -1144,6 +1216,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
options_.WriteTo(output, _repeated_options_codec);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Name.Length != 0) {
|
||||
|
@ -1156,6 +1229,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(EnumValue other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -1169,6 +1243,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
options_.Add(other.options_);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -1198,30 +1273,35 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// A protocol buffer option, which can be attached to a message, field,
|
||||
/// enumeration, etc.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Option : pb::IMessage<Option> {
|
||||
private static readonly pb::MessageParser<Option> _parser = new pb::MessageParser<Option>(() => new Option());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Option> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.TypeReflection.Descriptor.MessageTypes[4]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Option() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Option(Option other) : this() {
|
||||
name_ = other.name_;
|
||||
Value = other.value_ != null ? other.Value.Clone() : null;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Option Clone() {
|
||||
return new Option(this);
|
||||
}
|
||||
|
@ -1232,6 +1312,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The option's name. For example, `"java_package"`.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Name {
|
||||
get { return name_; }
|
||||
set {
|
||||
|
@ -1245,6 +1326,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The option's value. For example, `"com.google.protobuf"`.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::Google.Protobuf.WellKnownTypes.Any Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -1252,10 +1334,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Option);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Option other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -1268,6 +1352,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Name.Length != 0) hash ^= Name.GetHashCode();
|
||||
|
@ -1275,10 +1360,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Name.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -1290,6 +1377,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Name.Length != 0) {
|
||||
|
@ -1301,6 +1389,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Option other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -1316,6 +1405,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
|
|||
namespace Google.Protobuf.WellKnownTypes {
|
||||
|
||||
/// <summary>Holder for reflection information generated from google/protobuf/wrappers.proto</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public static partial class WrappersReflection {
|
||||
|
||||
#region Descriptor
|
||||
|
@ -56,29 +55,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `DoubleValue` is JSON number.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class DoubleValue : pb::IMessage<DoubleValue> {
|
||||
private static readonly pb::MessageParser<DoubleValue> _parser = new pb::MessageParser<DoubleValue>(() => new DoubleValue());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<DoubleValue> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public DoubleValue() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public DoubleValue(DoubleValue other) : this() {
|
||||
value_ = other.value_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public DoubleValue Clone() {
|
||||
return new DoubleValue(this);
|
||||
}
|
||||
|
@ -89,6 +93,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The double value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public double Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -96,10 +101,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as DoubleValue);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(DoubleValue other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -111,16 +118,19 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Value != 0D) hash ^= Value.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Value != 0D) {
|
||||
output.WriteRawTag(9);
|
||||
|
@ -128,6 +138,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Value != 0D) {
|
||||
|
@ -136,6 +147,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(DoubleValue other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -145,6 +157,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -167,29 +180,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `FloatValue` is JSON number.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class FloatValue : pb::IMessage<FloatValue> {
|
||||
private static readonly pb::MessageParser<FloatValue> _parser = new pb::MessageParser<FloatValue>(() => new FloatValue());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<FloatValue> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor.MessageTypes[1]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public FloatValue() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public FloatValue(FloatValue other) : this() {
|
||||
value_ = other.value_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public FloatValue Clone() {
|
||||
return new FloatValue(this);
|
||||
}
|
||||
|
@ -200,6 +218,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The float value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public float Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -207,10 +226,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as FloatValue);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(FloatValue other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -222,16 +243,19 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Value != 0F) hash ^= Value.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Value != 0F) {
|
||||
output.WriteRawTag(13);
|
||||
|
@ -239,6 +263,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Value != 0F) {
|
||||
|
@ -247,6 +272,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(FloatValue other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -256,6 +282,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -278,29 +305,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `Int64Value` is JSON string.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Int64Value : pb::IMessage<Int64Value> {
|
||||
private static readonly pb::MessageParser<Int64Value> _parser = new pb::MessageParser<Int64Value>(() => new Int64Value());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Int64Value> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor.MessageTypes[2]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Int64Value() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Int64Value(Int64Value other) : this() {
|
||||
value_ = other.value_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Int64Value Clone() {
|
||||
return new Int64Value(this);
|
||||
}
|
||||
|
@ -311,6 +343,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The int64 value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public long Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -318,10 +351,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Int64Value);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Int64Value other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -333,16 +368,19 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Value != 0L) hash ^= Value.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Value != 0L) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -350,6 +388,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Value != 0L) {
|
||||
|
@ -358,6 +397,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Int64Value other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -367,6 +407,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -389,29 +430,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `UInt64Value` is JSON string.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class UInt64Value : pb::IMessage<UInt64Value> {
|
||||
private static readonly pb::MessageParser<UInt64Value> _parser = new pb::MessageParser<UInt64Value>(() => new UInt64Value());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<UInt64Value> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor.MessageTypes[3]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public UInt64Value() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public UInt64Value(UInt64Value other) : this() {
|
||||
value_ = other.value_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public UInt64Value Clone() {
|
||||
return new UInt64Value(this);
|
||||
}
|
||||
|
@ -422,6 +468,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The uint64 value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public ulong Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -429,10 +476,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as UInt64Value);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(UInt64Value other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -444,16 +493,19 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Value != 0UL) hash ^= Value.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Value != 0UL) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -461,6 +513,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Value != 0UL) {
|
||||
|
@ -469,6 +522,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(UInt64Value other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -478,6 +532,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -500,29 +555,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `Int32Value` is JSON number.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class Int32Value : pb::IMessage<Int32Value> {
|
||||
private static readonly pb::MessageParser<Int32Value> _parser = new pb::MessageParser<Int32Value>(() => new Int32Value());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Int32Value> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor.MessageTypes[4]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Int32Value() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Int32Value(Int32Value other) : this() {
|
||||
value_ = other.value_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Int32Value Clone() {
|
||||
return new Int32Value(this);
|
||||
}
|
||||
|
@ -533,6 +593,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The int32 value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -540,10 +601,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Int32Value);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Int32Value other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -555,16 +618,19 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Value != 0) hash ^= Value.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Value != 0) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -572,6 +638,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Value != 0) {
|
||||
|
@ -580,6 +647,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Int32Value other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -589,6 +657,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -611,29 +680,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `UInt32Value` is JSON number.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class UInt32Value : pb::IMessage<UInt32Value> {
|
||||
private static readonly pb::MessageParser<UInt32Value> _parser = new pb::MessageParser<UInt32Value>(() => new UInt32Value());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<UInt32Value> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor.MessageTypes[5]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public UInt32Value() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public UInt32Value(UInt32Value other) : this() {
|
||||
value_ = other.value_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public UInt32Value Clone() {
|
||||
return new UInt32Value(this);
|
||||
}
|
||||
|
@ -644,6 +718,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The uint32 value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public uint Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -651,10 +726,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as UInt32Value);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(UInt32Value other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -666,16 +743,19 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Value != 0) hash ^= Value.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Value != 0) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -683,6 +763,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Value != 0) {
|
||||
|
@ -691,6 +772,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(UInt32Value other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -700,6 +782,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -722,29 +805,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `BoolValue` is JSON `true` and `false`.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class BoolValue : pb::IMessage<BoolValue> {
|
||||
private static readonly pb::MessageParser<BoolValue> _parser = new pb::MessageParser<BoolValue>(() => new BoolValue());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<BoolValue> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor.MessageTypes[6]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public BoolValue() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public BoolValue(BoolValue other) : this() {
|
||||
value_ = other.value_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public BoolValue Clone() {
|
||||
return new BoolValue(this);
|
||||
}
|
||||
|
@ -755,6 +843,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The bool value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -762,10 +851,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BoolValue);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(BoolValue other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -777,16 +868,19 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Value != false) hash ^= Value.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Value != false) {
|
||||
output.WriteRawTag(8);
|
||||
|
@ -794,6 +888,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Value != false) {
|
||||
|
@ -802,6 +897,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(BoolValue other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -811,6 +907,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -833,29 +930,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `StringValue` is JSON string.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class StringValue : pb::IMessage<StringValue> {
|
||||
private static readonly pb::MessageParser<StringValue> _parser = new pb::MessageParser<StringValue>(() => new StringValue());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<StringValue> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor.MessageTypes[7]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public StringValue() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public StringValue(StringValue other) : this() {
|
||||
value_ = other.value_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public StringValue Clone() {
|
||||
return new StringValue(this);
|
||||
}
|
||||
|
@ -866,6 +968,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The string value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -873,10 +976,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as StringValue);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(StringValue other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -888,16 +993,19 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Value.Length != 0) hash ^= Value.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Value.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -905,6 +1013,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Value.Length != 0) {
|
||||
|
@ -913,6 +1022,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(StringValue other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -922,6 +1032,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
@ -944,29 +1055,34 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
///
|
||||
/// The JSON representation for `BytesValue` is JSON string.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public sealed partial class BytesValue : pb::IMessage<BytesValue> {
|
||||
private static readonly pb::MessageParser<BytesValue> _parser = new pb::MessageParser<BytesValue>(() => new BytesValue());
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<BytesValue> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor.MessageTypes[8]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public BytesValue() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public BytesValue(BytesValue other) : this() {
|
||||
value_ = other.value_;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public BytesValue Clone() {
|
||||
return new BytesValue(this);
|
||||
}
|
||||
|
@ -977,6 +1093,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
/// <summary>
|
||||
/// The bytes value.
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public pb::ByteString Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
|
@ -984,10 +1101,12 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BytesValue);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(BytesValue other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
|
@ -999,16 +1118,19 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Value.Length != 0) hash ^= Value.GetHashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
if (Value.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
|
@ -1016,6 +1138,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Value.Length != 0) {
|
||||
|
@ -1024,6 +1147,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(BytesValue other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
|
@ -1033,6 +1157,7 @@ namespace Google.Protobuf.WellKnownTypes {
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
|
|
|
@ -60,7 +60,6 @@ EnumGenerator::~EnumGenerator() {
|
|||
|
||||
void EnumGenerator::Generate(io::Printer* printer) {
|
||||
WriteEnumDocComment(printer, descriptor_);
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print("$access_level$ enum $name$ {\n",
|
||||
"access_level", class_access_level(),
|
||||
"name", descriptor_->name());
|
||||
|
|
|
@ -124,12 +124,13 @@ void FieldGeneratorBase::GenerateCodecCode(io::Printer* printer) {
|
|||
void FieldGeneratorBase::AddDeprecatedFlag(io::Printer* printer) {
|
||||
if (descriptor_->options().deprecated())
|
||||
{
|
||||
printer->Print("[global::System.ObsoleteAttribute()]\n");
|
||||
printer->Print("[global::System.ObsoleteAttribute]\n");
|
||||
}
|
||||
}
|
||||
|
||||
void FieldGeneratorBase::AddPublicMemberAttributes(io::Printer* printer) {
|
||||
AddDeprecatedFlag(printer);
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
}
|
||||
|
||||
std::string FieldGeneratorBase::oneof_property_name() {
|
||||
|
|
|
@ -80,7 +80,7 @@ void MapFieldGenerator::GenerateMembers(io::Printer* printer) {
|
|||
", $tag$);\n"
|
||||
"private readonly pbc::MapField<$key_type_name$, $value_type_name$> $name$_ = new pbc::MapField<$key_type_name$, $value_type_name$>();\n");
|
||||
WritePropertyDocComment(printer, descriptor_);
|
||||
AddDeprecatedFlag(printer);
|
||||
AddPublicMemberAttributes(printer);
|
||||
printer->Print(
|
||||
variables_,
|
||||
"$access_level$ pbc::MapField<$key_type_name$, $value_type_name$> $property_name$ {\n"
|
||||
|
|
|
@ -104,9 +104,6 @@ void MessageGenerator::Generate(io::Printer* printer) {
|
|||
vars["access_level"] = class_access_level();
|
||||
|
||||
WriteMessageDocComment(printer, descriptor_);
|
||||
printer->Print(
|
||||
"[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]\n");
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"$access_level$ sealed partial class $class_name$ : pb::IMessage<$class_name$> {\n");
|
||||
|
@ -114,9 +111,13 @@ void MessageGenerator::Generate(io::Printer* printer) {
|
|||
|
||||
// All static fields and properties
|
||||
printer->Print(
|
||||
vars,
|
||||
"private static readonly pb::MessageParser<$class_name$> _parser = new pb::MessageParser<$class_name$>(() => new $class_name$());\n"
|
||||
"public static pb::MessageParser<$class_name$> Parser { get { return _parser; } }\n\n");
|
||||
vars,
|
||||
"private static readonly pb::MessageParser<$class_name$> _parser = new pb::MessageParser<$class_name$>(() => new $class_name$());\n");
|
||||
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"public static pb::MessageParser<$class_name$> Parser { get { return _parser; } }\n\n");
|
||||
|
||||
// Access the message descriptor via the relevant file descriptor or containing message descriptor.
|
||||
if (!descriptor_->containing_type()) {
|
||||
|
@ -127,18 +128,23 @@ void MessageGenerator::Generate(io::Printer* printer) {
|
|||
+ ".Descriptor.NestedTypes[" + SimpleItoa(descriptor_->index()) + "]";
|
||||
}
|
||||
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"public static pbr::MessageDescriptor Descriptor {\n"
|
||||
" get { return $descriptor_accessor$; }\n"
|
||||
"}\n"
|
||||
"\n"
|
||||
vars,
|
||||
"public static pbr::MessageDescriptor Descriptor {\n"
|
||||
" get { return $descriptor_accessor$; }\n"
|
||||
"}\n"
|
||||
"\n");
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"pbr::MessageDescriptor pb::IMessage.Descriptor {\n"
|
||||
" get { return Descriptor; }\n"
|
||||
"}\n"
|
||||
"\n");
|
||||
|
||||
// Parameterless constructor and partial OnConstruction method.
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"public $class_name$() {\n"
|
||||
|
@ -188,12 +194,18 @@ void MessageGenerator::Generate(io::Printer* printer) {
|
|||
printer->Print("}\n");
|
||||
// TODO: Should we put the oneof .proto comments here?
|
||||
// It's unclear exactly where they should go.
|
||||
printer->Print(
|
||||
vars,
|
||||
"private $property_name$OneofCase $name$Case_ = $property_name$OneofCase.None;\n"
|
||||
"public $property_name$OneofCase $property_name$Case {\n"
|
||||
" get { return $name$Case_; }\n"
|
||||
"}\n\n"
|
||||
printer->Print(
|
||||
vars,
|
||||
"private $property_name$OneofCase $name$Case_ = $property_name$OneofCase.None;\n");
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"public $property_name$OneofCase $property_name$Case {\n"
|
||||
" get { return $name$Case_; }\n"
|
||||
"}\n\n");
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"public void Clear$property_name$() {\n"
|
||||
" $name$Case_ = $property_name$OneofCase.None;\n"
|
||||
" $name$_ = null;\n"
|
||||
|
@ -210,8 +222,7 @@ void MessageGenerator::Generate(io::Printer* printer) {
|
|||
printer->Print(
|
||||
vars,
|
||||
"#region Nested types\n"
|
||||
"/// <summary>Container for nested types declared in the $class_name$ message type.</summary>\n"
|
||||
"[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]\n");
|
||||
"/// <summary>Container for nested types declared in the $class_name$ message type.</summary>\n");
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print("public static partial class Types {\n");
|
||||
printer->Indent();
|
||||
|
@ -255,6 +266,7 @@ bool MessageGenerator::HasNestedGeneratedTypes()
|
|||
|
||||
void MessageGenerator::GenerateCloningCode(io::Printer* printer) {
|
||||
map<string, string> vars;
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
vars["class_name"] = class_name();
|
||||
printer->Print(
|
||||
vars,
|
||||
|
@ -294,6 +306,7 @@ void MessageGenerator::GenerateCloningCode(io::Printer* printer) {
|
|||
printer->Outdent();
|
||||
printer->Print("}\n\n");
|
||||
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"public $class_name$ Clone() {\n"
|
||||
|
@ -309,11 +322,15 @@ void MessageGenerator::GenerateFrameworkMethods(io::Printer* printer) {
|
|||
vars["class_name"] = class_name();
|
||||
|
||||
// Equality
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"public override bool Equals(object other) {\n"
|
||||
" return Equals(other as $class_name$);\n"
|
||||
"}\n\n"
|
||||
"}\n\n");
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"public bool Equals($class_name$ other) {\n"
|
||||
" if (ReferenceEquals(other, null)) {\n"
|
||||
" return false;\n"
|
||||
|
@ -338,7 +355,8 @@ void MessageGenerator::GenerateFrameworkMethods(io::Printer* printer) {
|
|||
|
||||
// GetHashCode
|
||||
// Start with a non-zero value to easily distinguish between null and "empty" messages.
|
||||
printer->Print(
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
"public override int GetHashCode() {\n"
|
||||
" int hash = 1;\n");
|
||||
printer->Indent();
|
||||
|
@ -355,13 +373,15 @@ void MessageGenerator::GenerateFrameworkMethods(io::Printer* printer) {
|
|||
printer->Outdent();
|
||||
printer->Print("}\n\n");
|
||||
|
||||
printer->Print(
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
"public override string ToString() {\n"
|
||||
" return pb::JsonFormatter.ToDiagnosticString(this);\n"
|
||||
"}\n\n");
|
||||
}
|
||||
|
||||
void MessageGenerator::GenerateMessageSerializationMethods(io::Printer* printer) {
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
"public void WriteTo(pb::CodedOutputStream output) {\n");
|
||||
printer->Indent();
|
||||
|
@ -376,8 +396,10 @@ void MessageGenerator::GenerateMessageSerializationMethods(io::Printer* printer)
|
|||
// TODO(jonskeet): Memoize size of frozen messages?
|
||||
printer->Outdent();
|
||||
printer->Print(
|
||||
"}\n"
|
||||
"\n"
|
||||
"}\n"
|
||||
"\n");
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
"public int CalculateSize() {\n");
|
||||
printer->Indent();
|
||||
printer->Print("int size = 0;\n");
|
||||
|
@ -398,6 +420,7 @@ void MessageGenerator::GenerateMergingMethods(io::Printer* printer) {
|
|||
map<string, string> vars;
|
||||
vars["class_name"] = class_name();
|
||||
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
vars,
|
||||
"public void MergeFrom($class_name$ other) {\n");
|
||||
|
@ -434,6 +457,7 @@ void MessageGenerator::GenerateMergingMethods(io::Printer* printer) {
|
|||
}
|
||||
printer->Outdent();
|
||||
printer->Print("}\n\n");
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print("public void MergeFrom(pb::CodedInputStream input) {\n");
|
||||
printer->Indent();
|
||||
printer->Print(
|
||||
|
|
|
@ -65,7 +65,7 @@ void MessageFieldGenerator::GenerateMembers(io::Printer* printer) {
|
|||
variables_,
|
||||
"private $type_name$ $name$_;\n");
|
||||
WritePropertyDocComment(printer, descriptor_);
|
||||
AddDeprecatedFlag(printer);
|
||||
AddPublicMemberAttributes(printer);
|
||||
printer->Print(
|
||||
variables_,
|
||||
"$access_level$ $type_name$ $property_name$ {\n"
|
||||
|
@ -159,7 +159,7 @@ MessageOneofFieldGenerator::~MessageOneofFieldGenerator() {
|
|||
|
||||
void MessageOneofFieldGenerator::GenerateMembers(io::Printer* printer) {
|
||||
WritePropertyDocComment(printer, descriptor_);
|
||||
AddDeprecatedFlag(printer);
|
||||
AddPublicMemberAttributes(printer);
|
||||
printer->Print(
|
||||
variables_,
|
||||
"$access_level$ $type_name$ $property_name$ {\n"
|
||||
|
|
|
@ -71,7 +71,7 @@ void PrimitiveFieldGenerator::GenerateMembers(io::Printer* printer) {
|
|||
variables_,
|
||||
"private $type_name$ $name_def_message$;\n");
|
||||
WritePropertyDocComment(printer, descriptor_);
|
||||
AddDeprecatedFlag(printer);
|
||||
AddPublicMemberAttributes(printer);
|
||||
printer->Print(
|
||||
variables_,
|
||||
"$access_level$ $type_name$ $property_name$ {\n"
|
||||
|
@ -174,7 +174,7 @@ PrimitiveOneofFieldGenerator::~PrimitiveOneofFieldGenerator() {
|
|||
|
||||
void PrimitiveOneofFieldGenerator::GenerateMembers(io::Printer* printer) {
|
||||
WritePropertyDocComment(printer, descriptor_);
|
||||
AddDeprecatedFlag(printer);
|
||||
AddPublicMemberAttributes(printer);
|
||||
printer->Print(
|
||||
variables_,
|
||||
"$access_level$ $type_name$ $property_name$ {\n"
|
||||
|
|
|
@ -123,12 +123,9 @@ void ReflectionClassGenerator::WriteIntroduction(io::Printer* printer) {
|
|||
|
||||
printer->Print(
|
||||
"/// <summary>Holder for reflection information generated from $file_name$</summary>\n"
|
||||
"[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]\n",
|
||||
"file_name", file_->name());
|
||||
WriteGeneratedCodeAttributes(printer);
|
||||
printer->Print(
|
||||
"$access_level$ static partial class $reflection_class_name$ {\n"
|
||||
"\n",
|
||||
"file_name", file_->name(),
|
||||
"access_level", class_access_level(),
|
||||
"reflection_class_name", reflectionClassname_);
|
||||
printer->Indent();
|
||||
|
|
|
@ -64,7 +64,7 @@ void RepeatedEnumFieldGenerator::GenerateMembers(io::Printer* printer) {
|
|||
printer->Print(variables_,
|
||||
"private readonly pbc::RepeatedField<$type_name$> $name$_ = new pbc::RepeatedField<$type_name$>();\n");
|
||||
WritePropertyDocComment(printer, descriptor_);
|
||||
AddDeprecatedFlag(printer);
|
||||
AddPublicMemberAttributes(printer);
|
||||
printer->Print(
|
||||
variables_,
|
||||
"$access_level$ pbc::RepeatedField<$type_name$> $property_name$ {\n"
|
||||
|
|
|
@ -79,7 +79,7 @@ void RepeatedMessageFieldGenerator::GenerateMembers(io::Printer* printer) {
|
|||
variables_,
|
||||
"private readonly pbc::RepeatedField<$type_name$> $name$_ = new pbc::RepeatedField<$type_name$>();\n");
|
||||
WritePropertyDocComment(printer, descriptor_);
|
||||
AddDeprecatedFlag(printer);
|
||||
AddPublicMemberAttributes(printer);
|
||||
printer->Print(
|
||||
variables_,
|
||||
"$access_level$ pbc::RepeatedField<$type_name$> $property_name$ {\n"
|
||||
|
|
|
@ -64,7 +64,7 @@ void RepeatedPrimitiveFieldGenerator::GenerateMembers(io::Printer* printer) {
|
|||
printer->Print(variables_,
|
||||
"private readonly pbc::RepeatedField<$type_name$> $name$_ = new pbc::RepeatedField<$type_name$>();\n");
|
||||
WritePropertyDocComment(printer, descriptor_);
|
||||
AddDeprecatedFlag(printer);
|
||||
AddPublicMemberAttributes(printer);
|
||||
printer->Print(
|
||||
variables_,
|
||||
"$access_level$ pbc::RepeatedField<$type_name$> $property_name$ {\n"
|
||||
|
|
|
@ -56,7 +56,7 @@ SourceGeneratorBase::~SourceGeneratorBase() {
|
|||
}
|
||||
|
||||
void SourceGeneratorBase::WriteGeneratedCodeAttributes(io::Printer* printer) {
|
||||
// This hook can be used to reintroduce generated code attributes in the future.
|
||||
printer->Print("[global::System.Diagnostics.DebuggerNonUserCodeAttribute]\n");
|
||||
}
|
||||
|
||||
std::string SourceGeneratorBase::class_access_level() {
|
||||
|
|
|
@ -50,6 +50,8 @@ class SourceGeneratorBase {
|
|||
std::string class_access_level();
|
||||
const Options* options();
|
||||
|
||||
// Write any attributes used to decorate generated function members (methods and properties).
|
||||
// Should not be used to decorate types.
|
||||
void WriteGeneratedCodeAttributes(io::Printer* printer);
|
||||
|
||||
private:
|
||||
|
|
|
@ -73,7 +73,7 @@ void WrapperFieldGenerator::GenerateMembers(io::Printer* printer) {
|
|||
";\n"
|
||||
"private $type_name$ $name$_;\n");
|
||||
WritePropertyDocComment(printer, descriptor_);
|
||||
AddDeprecatedFlag(printer);
|
||||
AddPublicMemberAttributes(printer);
|
||||
printer->Print(
|
||||
variables_,
|
||||
"$access_level$ $type_name$ $property_name$ {\n"
|
||||
|
@ -169,7 +169,7 @@ void WrapperOneofFieldGenerator::GenerateMembers(io::Printer* printer) {
|
|||
GenerateCodecCode(printer);
|
||||
printer->Print(";\n");
|
||||
WritePropertyDocComment(printer, descriptor_);
|
||||
AddDeprecatedFlag(printer);
|
||||
AddPublicMemberAttributes(printer);
|
||||
printer->Print(
|
||||
variables_,
|
||||
"$access_level$ $type_name$ $property_name$ {\n"
|
||||
|
|
Loading…
Add table
Reference in a new issue