diff --git a/csharp/src/AddressBook/Addressbook.cs b/csharp/src/AddressBook/Addressbook.cs
index 362e1cb6a2..8e691ad413 100644
--- a/csharp/src/AddressBook/Addressbook.cs
+++ b/csharp/src/AddressBook/Addressbook.cs
@@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
namespace Google.Protobuf.Examples.AddressBook {
/// Holder for reflection information generated from addressbook.proto
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static partial class AddressbookReflection {
#region Descriptor
@@ -46,25 +45,29 @@ namespace Google.Protobuf.Examples.AddressBook {
///
/// [START messages]
///
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public sealed partial class Person : pb::IMessage {
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Person());
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pb::MessageParser 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 {
/// Field number for the "name" field.
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 {
///
/// Unique ID number for this person.
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int Id {
get { return id_; }
set {
@@ -102,6 +108,7 @@ namespace Google.Protobuf.Examples.AddressBook {
/// Field number for the "email" field.
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 _repeated_phones_codec
= pb::FieldCodec.ForMessage(34, global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber.Parser);
private readonly pbc::RepeatedField phones_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField 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
/// Container for nested types declared in the Person message type.
- [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 {
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new PhoneNumber());
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pb::MessageParser 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 {
/// Field number for the "number" field.
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 {
/// Field number for the "type" field.
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 {
///
/// Our address book file is just one of these.
///
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public sealed partial class AddressBook : pb::IMessage {
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new AddressBook());
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pb::MessageParser 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 _repeated_people_codec
= pb::FieldCodec.ForMessage(10, global::Google.Protobuf.Examples.AddressBook.Person.Parser);
private readonly pbc::RepeatedField people_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField 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) {
diff --git a/csharp/src/Google.Protobuf.Conformance/Conformance.cs b/csharp/src/Google.Protobuf.Conformance/Conformance.cs
index 1674a6734f..5fcbff7cd1 100644
--- a/csharp/src/Google.Protobuf.Conformance/Conformance.cs
+++ b/csharp/src/Google.Protobuf.Conformance/Conformance.cs
@@ -10,7 +10,6 @@ using scg = global::System.Collections.Generic;
namespace Conformance {
/// Holder for reflection information generated from conformance.proto
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static partial class ConformanceReflection {
#region Descriptor
@@ -220,25 +219,29 @@ namespace Conformance {
/// 2. parse the protobuf or JSON payload in "payload" (which may fail)
/// 3. if the parse succeeded, serialize the message in the requested format.
///
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public sealed partial class ConformanceRequest : pb::IMessage {
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ConformanceRequest());
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pb::MessageParser Parser { get { return _parser; } }
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pbr::MessageDescriptor Descriptor {
get { return global::Conformance.ConformanceReflection.Descriptor.MessageTypes[0]; }
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public ConformanceRequest() {
OnConstruction();
}
partial void OnConstruction();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public ConformanceRequest(ConformanceRequest other) : this() {
requestedOutputFormat_ = other.requestedOutputFormat_;
switch (other.PayloadCase) {
@@ -252,12 +255,14 @@ namespace Conformance {
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public ConformanceRequest Clone() {
return new ConformanceRequest(this);
}
/// Field number for the "protobuf_payload" field.
public const int ProtobufPayloadFieldNumber = 1;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pb::ByteString ProtobufPayload {
get { return payloadCase_ == PayloadOneofCase.ProtobufPayload ? (pb::ByteString) payload_ : pb::ByteString.Empty; }
set {
@@ -268,6 +273,7 @@ namespace Conformance {
/// Field number for the "json_payload" field.
public const int JsonPayloadFieldNumber = 2;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string JsonPayload {
get { return payloadCase_ == PayloadOneofCase.JsonPayload ? (string) payload_ : ""; }
set {
@@ -282,6 +288,7 @@ namespace Conformance {
///
/// Which format should the testee serialize its message to?
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public global::Conformance.WireFormat RequestedOutputFormat {
get { return requestedOutputFormat_; }
set {
@@ -297,19 +304,23 @@ namespace Conformance {
JsonPayload = 2,
}
private PayloadOneofCase payloadCase_ = PayloadOneofCase.None;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public PayloadOneofCase PayloadCase {
get { return payloadCase_; }
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void ClearPayload() {
payloadCase_ = PayloadOneofCase.None;
payload_ = null;
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override bool Equals(object other) {
return Equals(other as ConformanceRequest);
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool Equals(ConformanceRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -324,6 +335,7 @@ namespace Conformance {
return true;
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override int GetHashCode() {
int hash = 1;
if (payloadCase_ == PayloadOneofCase.ProtobufPayload) hash ^= ProtobufPayload.GetHashCode();
@@ -333,10 +345,12 @@ namespace Conformance {
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 (payloadCase_ == PayloadOneofCase.ProtobufPayload) {
output.WriteRawTag(10);
@@ -352,6 +366,7 @@ namespace Conformance {
}
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int CalculateSize() {
int size = 0;
if (payloadCase_ == PayloadOneofCase.ProtobufPayload) {
@@ -366,6 +381,7 @@ namespace Conformance {
return size;
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(ConformanceRequest other) {
if (other == null) {
return;
@@ -384,6 +400,7 @@ namespace Conformance {
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(pb::CodedInputStream input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
@@ -412,25 +429,29 @@ namespace Conformance {
///
/// Represents a single test case's output.
///
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public sealed partial class ConformanceResponse : pb::IMessage {
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ConformanceResponse());
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pb::MessageParser Parser { get { return _parser; } }
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pbr::MessageDescriptor Descriptor {
get { return global::Conformance.ConformanceReflection.Descriptor.MessageTypes[1]; }
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public ConformanceResponse() {
OnConstruction();
}
partial void OnConstruction();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public ConformanceResponse(ConformanceResponse other) : this() {
switch (other.ResultCase) {
case ResultOneofCase.ParseError:
@@ -455,6 +476,7 @@ namespace Conformance {
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public ConformanceResponse Clone() {
return new ConformanceResponse(this);
}
@@ -468,6 +490,7 @@ namespace Conformance {
/// Setting this string does not necessarily mean the testee failed the
/// test. Some of the test cases are intentionally invalid input.
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string ParseError {
get { return resultCase_ == ResultOneofCase.ParseError ? (string) result_ : ""; }
set {
@@ -483,6 +506,7 @@ namespace Conformance {
/// serializing it to the requested output format, set the error message in
/// this field.
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string SerializeError {
get { return resultCase_ == ResultOneofCase.SerializeError ? (string) result_ : ""; }
set {
@@ -498,6 +522,7 @@ namespace Conformance {
/// indicate that the test failed. The string can provide more information
/// about the failure.
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string RuntimeError {
get { return resultCase_ == ResultOneofCase.RuntimeError ? (string) result_ : ""; }
set {
@@ -512,6 +537,7 @@ namespace Conformance {
/// If the input was successfully parsed and the requested output was
/// protobuf, serialize it to protobuf and set it in this field.
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pb::ByteString ProtobufPayload {
get { return resultCase_ == ResultOneofCase.ProtobufPayload ? (pb::ByteString) result_ : pb::ByteString.Empty; }
set {
@@ -526,6 +552,7 @@ namespace Conformance {
/// If the input was successfully parsed and the requested output was JSON,
/// serialize to JSON and set it in this field.
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string JsonPayload {
get { return resultCase_ == ResultOneofCase.JsonPayload ? (string) result_ : ""; }
set {
@@ -540,6 +567,7 @@ namespace Conformance {
/// For when the testee skipped the test, likely because a certain feature
/// wasn't supported, like JSON input/output.
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string Skipped {
get { return resultCase_ == ResultOneofCase.Skipped ? (string) result_ : ""; }
set {
@@ -560,19 +588,23 @@ namespace Conformance {
Skipped = 5,
}
private ResultOneofCase resultCase_ = ResultOneofCase.None;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public ResultOneofCase ResultCase {
get { return resultCase_; }
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void ClearResult() {
resultCase_ = ResultOneofCase.None;
result_ = null;
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override bool Equals(object other) {
return Equals(other as ConformanceResponse);
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool Equals(ConformanceResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -590,6 +622,7 @@ namespace Conformance {
return true;
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override int GetHashCode() {
int hash = 1;
if (resultCase_ == ResultOneofCase.ParseError) hash ^= ParseError.GetHashCode();
@@ -602,10 +635,12 @@ namespace Conformance {
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 (resultCase_ == ResultOneofCase.ParseError) {
output.WriteRawTag(10);
@@ -633,6 +668,7 @@ namespace Conformance {
}
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int CalculateSize() {
int size = 0;
if (resultCase_ == ResultOneofCase.ParseError) {
@@ -656,6 +692,7 @@ namespace Conformance {
return size;
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(ConformanceResponse other) {
if (other == null) {
return;
@@ -683,6 +720,7 @@ namespace Conformance {
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(pb::CodedInputStream input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
@@ -724,25 +762,29 @@ namespace Conformance {
/// This proto includes every type of field in both singular and repeated
/// forms.
///
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public sealed partial class TestAllTypes : pb::IMessage {
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestAllTypes());
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pb::MessageParser Parser { get { return _parser; } }
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pbr::MessageDescriptor Descriptor {
get { return global::Conformance.ConformanceReflection.Descriptor.MessageTypes[2]; }
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public TestAllTypes() {
OnConstruction();
}
partial void OnConstruction();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public TestAllTypes(TestAllTypes other) : this() {
optionalInt32_ = other.optionalInt32_;
optionalInt64_ = other.optionalInt64_;
@@ -865,6 +907,7 @@ namespace Conformance {
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public TestAllTypes Clone() {
return new TestAllTypes(this);
}
@@ -875,6 +918,7 @@ namespace Conformance {
///
/// Singular
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int OptionalInt32 {
get { return optionalInt32_; }
set {
@@ -885,6 +929,7 @@ namespace Conformance {
/// Field number for the "optional_int64" field.
public const int OptionalInt64FieldNumber = 2;
private long optionalInt64_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public long OptionalInt64 {
get { return optionalInt64_; }
set {
@@ -895,6 +940,7 @@ namespace Conformance {
/// Field number for the "optional_uint32" field.
public const int OptionalUint32FieldNumber = 3;
private uint optionalUint32_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public uint OptionalUint32 {
get { return optionalUint32_; }
set {
@@ -905,6 +951,7 @@ namespace Conformance {
/// Field number for the "optional_uint64" field.
public const int OptionalUint64FieldNumber = 4;
private ulong optionalUint64_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public ulong OptionalUint64 {
get { return optionalUint64_; }
set {
@@ -915,6 +962,7 @@ namespace Conformance {
/// Field number for the "optional_sint32" field.
public const int OptionalSint32FieldNumber = 5;
private int optionalSint32_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int OptionalSint32 {
get { return optionalSint32_; }
set {
@@ -925,6 +973,7 @@ namespace Conformance {
/// Field number for the "optional_sint64" field.
public const int OptionalSint64FieldNumber = 6;
private long optionalSint64_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public long OptionalSint64 {
get { return optionalSint64_; }
set {
@@ -935,6 +984,7 @@ namespace Conformance {
/// Field number for the "optional_fixed32" field.
public const int OptionalFixed32FieldNumber = 7;
private uint optionalFixed32_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public uint OptionalFixed32 {
get { return optionalFixed32_; }
set {
@@ -945,6 +995,7 @@ namespace Conformance {
/// Field number for the "optional_fixed64" field.
public const int OptionalFixed64FieldNumber = 8;
private ulong optionalFixed64_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public ulong OptionalFixed64 {
get { return optionalFixed64_; }
set {
@@ -955,6 +1006,7 @@ namespace Conformance {
/// Field number for the "optional_sfixed32" field.
public const int OptionalSfixed32FieldNumber = 9;
private int optionalSfixed32_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int OptionalSfixed32 {
get { return optionalSfixed32_; }
set {
@@ -965,6 +1017,7 @@ namespace Conformance {
/// Field number for the "optional_sfixed64" field.
public const int OptionalSfixed64FieldNumber = 10;
private long optionalSfixed64_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public long OptionalSfixed64 {
get { return optionalSfixed64_; }
set {
@@ -975,6 +1028,7 @@ namespace Conformance {
/// Field number for the "optional_float" field.
public const int OptionalFloatFieldNumber = 11;
private float optionalFloat_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public float OptionalFloat {
get { return optionalFloat_; }
set {
@@ -985,6 +1039,7 @@ namespace Conformance {
/// Field number for the "optional_double" field.
public const int OptionalDoubleFieldNumber = 12;
private double optionalDouble_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public double OptionalDouble {
get { return optionalDouble_; }
set {
@@ -995,6 +1050,7 @@ namespace Conformance {
/// Field number for the "optional_bool" field.
public const int OptionalBoolFieldNumber = 13;
private bool optionalBool_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool OptionalBool {
get { return optionalBool_; }
set {
@@ -1005,6 +1061,7 @@ namespace Conformance {
/// Field number for the "optional_string" field.
public const int OptionalStringFieldNumber = 14;
private string optionalString_ = "";
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string OptionalString {
get { return optionalString_; }
set {
@@ -1015,6 +1072,7 @@ namespace Conformance {
/// Field number for the "optional_bytes" field.
public const int OptionalBytesFieldNumber = 15;
private pb::ByteString optionalBytes_ = pb::ByteString.Empty;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pb::ByteString OptionalBytes {
get { return optionalBytes_; }
set {
@@ -1025,6 +1083,7 @@ namespace Conformance {
/// Field number for the "optional_nested_message" field.
public const int OptionalNestedMessageFieldNumber = 18;
private global::Conformance.TestAllTypes.Types.NestedMessage optionalNestedMessage_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public global::Conformance.TestAllTypes.Types.NestedMessage OptionalNestedMessage {
get { return optionalNestedMessage_; }
set {
@@ -1035,6 +1094,7 @@ namespace Conformance {
/// Field number for the "optional_foreign_message" field.
public const int OptionalForeignMessageFieldNumber = 19;
private global::Conformance.ForeignMessage optionalForeignMessage_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public global::Conformance.ForeignMessage OptionalForeignMessage {
get { return optionalForeignMessage_; }
set {
@@ -1045,6 +1105,7 @@ namespace Conformance {
/// Field number for the "optional_nested_enum" field.
public const int OptionalNestedEnumFieldNumber = 21;
private global::Conformance.TestAllTypes.Types.NestedEnum optionalNestedEnum_ = 0;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public global::Conformance.TestAllTypes.Types.NestedEnum OptionalNestedEnum {
get { return optionalNestedEnum_; }
set {
@@ -1055,6 +1116,7 @@ namespace Conformance {
/// Field number for the "optional_foreign_enum" field.
public const int OptionalForeignEnumFieldNumber = 22;
private global::Conformance.ForeignEnum optionalForeignEnum_ = 0;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public global::Conformance.ForeignEnum OptionalForeignEnum {
get { return optionalForeignEnum_; }
set {
@@ -1065,6 +1127,7 @@ namespace Conformance {
/// Field number for the "optional_string_piece" field.
public const int OptionalStringPieceFieldNumber = 24;
private string optionalStringPiece_ = "";
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string OptionalStringPiece {
get { return optionalStringPiece_; }
set {
@@ -1075,6 +1138,7 @@ namespace Conformance {
/// Field number for the "optional_cord" field.
public const int OptionalCordFieldNumber = 25;
private string optionalCord_ = "";
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string OptionalCord {
get { return optionalCord_; }
set {
@@ -1085,6 +1149,7 @@ namespace Conformance {
/// Field number for the "recursive_message" field.
public const int RecursiveMessageFieldNumber = 27;
private global::Conformance.TestAllTypes recursiveMessage_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public global::Conformance.TestAllTypes RecursiveMessage {
get { return recursiveMessage_; }
set {
@@ -1100,6 +1165,7 @@ namespace Conformance {
///
/// Repeated
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedInt32 {
get { return repeatedInt32_; }
}
@@ -1109,6 +1175,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedInt64_codec
= pb::FieldCodec.ForInt64(258);
private readonly pbc::RepeatedField repeatedInt64_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedInt64 {
get { return repeatedInt64_; }
}
@@ -1118,6 +1185,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedUint32_codec
= pb::FieldCodec.ForUInt32(266);
private readonly pbc::RepeatedField repeatedUint32_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedUint32 {
get { return repeatedUint32_; }
}
@@ -1127,6 +1195,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedUint64_codec
= pb::FieldCodec.ForUInt64(274);
private readonly pbc::RepeatedField repeatedUint64_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedUint64 {
get { return repeatedUint64_; }
}
@@ -1136,6 +1205,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedSint32_codec
= pb::FieldCodec.ForSInt32(282);
private readonly pbc::RepeatedField repeatedSint32_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedSint32 {
get { return repeatedSint32_; }
}
@@ -1145,6 +1215,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedSint64_codec
= pb::FieldCodec.ForSInt64(290);
private readonly pbc::RepeatedField repeatedSint64_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedSint64 {
get { return repeatedSint64_; }
}
@@ -1154,6 +1225,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedFixed32_codec
= pb::FieldCodec.ForFixed32(298);
private readonly pbc::RepeatedField repeatedFixed32_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedFixed32 {
get { return repeatedFixed32_; }
}
@@ -1163,6 +1235,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedFixed64_codec
= pb::FieldCodec.ForFixed64(306);
private readonly pbc::RepeatedField repeatedFixed64_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedFixed64 {
get { return repeatedFixed64_; }
}
@@ -1172,6 +1245,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedSfixed32_codec
= pb::FieldCodec.ForSFixed32(314);
private readonly pbc::RepeatedField repeatedSfixed32_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedSfixed32 {
get { return repeatedSfixed32_; }
}
@@ -1181,6 +1255,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedSfixed64_codec
= pb::FieldCodec.ForSFixed64(322);
private readonly pbc::RepeatedField repeatedSfixed64_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedSfixed64 {
get { return repeatedSfixed64_; }
}
@@ -1190,6 +1265,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedFloat_codec
= pb::FieldCodec.ForFloat(330);
private readonly pbc::RepeatedField repeatedFloat_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedFloat {
get { return repeatedFloat_; }
}
@@ -1199,6 +1275,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedDouble_codec
= pb::FieldCodec.ForDouble(338);
private readonly pbc::RepeatedField repeatedDouble_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedDouble {
get { return repeatedDouble_; }
}
@@ -1208,6 +1285,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedBool_codec
= pb::FieldCodec.ForBool(346);
private readonly pbc::RepeatedField repeatedBool_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedBool {
get { return repeatedBool_; }
}
@@ -1217,6 +1295,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedString_codec
= pb::FieldCodec.ForString(354);
private readonly pbc::RepeatedField repeatedString_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedString {
get { return repeatedString_; }
}
@@ -1226,6 +1305,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedBytes_codec
= pb::FieldCodec.ForBytes(362);
private readonly pbc::RepeatedField repeatedBytes_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedBytes {
get { return repeatedBytes_; }
}
@@ -1235,6 +1315,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedNestedMessage_codec
= pb::FieldCodec.ForMessage(386, global::Conformance.TestAllTypes.Types.NestedMessage.Parser);
private readonly pbc::RepeatedField repeatedNestedMessage_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedNestedMessage {
get { return repeatedNestedMessage_; }
}
@@ -1244,6 +1325,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedForeignMessage_codec
= pb::FieldCodec.ForMessage(394, global::Conformance.ForeignMessage.Parser);
private readonly pbc::RepeatedField repeatedForeignMessage_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedForeignMessage {
get { return repeatedForeignMessage_; }
}
@@ -1253,6 +1335,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedNestedEnum_codec
= pb::FieldCodec.ForEnum(410, x => (int) x, x => (global::Conformance.TestAllTypes.Types.NestedEnum) x);
private readonly pbc::RepeatedField repeatedNestedEnum_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedNestedEnum {
get { return repeatedNestedEnum_; }
}
@@ -1262,6 +1345,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedForeignEnum_codec
= pb::FieldCodec.ForEnum(418, x => (int) x, x => (global::Conformance.ForeignEnum) x);
private readonly pbc::RepeatedField repeatedForeignEnum_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedForeignEnum {
get { return repeatedForeignEnum_; }
}
@@ -1271,6 +1355,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedStringPiece_codec
= pb::FieldCodec.ForString(434);
private readonly pbc::RepeatedField repeatedStringPiece_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedStringPiece {
get { return repeatedStringPiece_; }
}
@@ -1280,6 +1365,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedCord_codec
= pb::FieldCodec.ForString(442);
private readonly pbc::RepeatedField repeatedCord_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedCord {
get { return repeatedCord_; }
}
@@ -1292,6 +1378,7 @@ namespace Conformance {
///
/// Map
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapInt32Int32 {
get { return mapInt32Int32_; }
}
@@ -1301,6 +1388,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapInt64Int64_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForInt64(8), pb::FieldCodec.ForInt64(16), 458);
private readonly pbc::MapField mapInt64Int64_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapInt64Int64 {
get { return mapInt64Int64_; }
}
@@ -1310,6 +1398,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapUint32Uint32_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForUInt32(8), pb::FieldCodec.ForUInt32(16), 466);
private readonly pbc::MapField mapUint32Uint32_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapUint32Uint32 {
get { return mapUint32Uint32_; }
}
@@ -1319,6 +1408,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapUint64Uint64_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForUInt64(8), pb::FieldCodec.ForUInt64(16), 474);
private readonly pbc::MapField mapUint64Uint64_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapUint64Uint64 {
get { return mapUint64Uint64_; }
}
@@ -1328,6 +1418,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapSint32Sint32_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForSInt32(8), pb::FieldCodec.ForSInt32(16), 482);
private readonly pbc::MapField mapSint32Sint32_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapSint32Sint32 {
get { return mapSint32Sint32_; }
}
@@ -1337,6 +1428,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapSint64Sint64_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForSInt64(8), pb::FieldCodec.ForSInt64(16), 490);
private readonly pbc::MapField mapSint64Sint64_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapSint64Sint64 {
get { return mapSint64Sint64_; }
}
@@ -1346,6 +1438,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapFixed32Fixed32_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForFixed32(13), pb::FieldCodec.ForFixed32(21), 498);
private readonly pbc::MapField mapFixed32Fixed32_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapFixed32Fixed32 {
get { return mapFixed32Fixed32_; }
}
@@ -1355,6 +1448,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapFixed64Fixed64_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForFixed64(9), pb::FieldCodec.ForFixed64(17), 506);
private readonly pbc::MapField mapFixed64Fixed64_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapFixed64Fixed64 {
get { return mapFixed64Fixed64_; }
}
@@ -1364,6 +1458,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapSfixed32Sfixed32_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForSFixed32(13), pb::FieldCodec.ForSFixed32(21), 514);
private readonly pbc::MapField mapSfixed32Sfixed32_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapSfixed32Sfixed32 {
get { return mapSfixed32Sfixed32_; }
}
@@ -1373,6 +1468,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapSfixed64Sfixed64_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForSFixed64(9), pb::FieldCodec.ForSFixed64(17), 522);
private readonly pbc::MapField mapSfixed64Sfixed64_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapSfixed64Sfixed64 {
get { return mapSfixed64Sfixed64_; }
}
@@ -1382,6 +1478,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapInt32Float_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForFloat(21), 530);
private readonly pbc::MapField mapInt32Float_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapInt32Float {
get { return mapInt32Float_; }
}
@@ -1391,6 +1488,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapInt32Double_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForInt32(8), pb::FieldCodec.ForDouble(17), 538);
private readonly pbc::MapField mapInt32Double_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapInt32Double {
get { return mapInt32Double_; }
}
@@ -1400,6 +1498,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapBoolBool_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForBool(8), pb::FieldCodec.ForBool(16), 546);
private readonly pbc::MapField mapBoolBool_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapBoolBool {
get { return mapBoolBool_; }
}
@@ -1409,6 +1508,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapStringString_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForString(10), pb::FieldCodec.ForString(18), 554);
private readonly pbc::MapField mapStringString_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapStringString {
get { return mapStringString_; }
}
@@ -1418,6 +1518,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapStringBytes_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForString(10), pb::FieldCodec.ForBytes(18), 562);
private readonly pbc::MapField mapStringBytes_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapStringBytes {
get { return mapStringBytes_; }
}
@@ -1427,6 +1528,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapStringNestedMessage_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForString(10), pb::FieldCodec.ForMessage(18, global::Conformance.TestAllTypes.Types.NestedMessage.Parser), 570);
private readonly pbc::MapField mapStringNestedMessage_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapStringNestedMessage {
get { return mapStringNestedMessage_; }
}
@@ -1436,6 +1538,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapStringForeignMessage_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForString(10), pb::FieldCodec.ForMessage(18, global::Conformance.ForeignMessage.Parser), 578);
private readonly pbc::MapField mapStringForeignMessage_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapStringForeignMessage {
get { return mapStringForeignMessage_; }
}
@@ -1445,6 +1548,7 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapStringNestedEnum_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForString(10), pb::FieldCodec.ForEnum(16, x => (int) x, x => (global::Conformance.TestAllTypes.Types.NestedEnum) x), 586);
private readonly pbc::MapField mapStringNestedEnum_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapStringNestedEnum {
get { return mapStringNestedEnum_; }
}
@@ -1454,12 +1558,14 @@ namespace Conformance {
private static readonly pbc::MapField.Codec _map_mapStringForeignEnum_codec
= new pbc::MapField.Codec(pb::FieldCodec.ForString(10), pb::FieldCodec.ForEnum(16, x => (int) x, x => (global::Conformance.ForeignEnum) x), 594);
private readonly pbc::MapField mapStringForeignEnum_ = new pbc::MapField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::MapField MapStringForeignEnum {
get { return mapStringForeignEnum_; }
}
/// Field number for the "oneof_uint32" field.
public const int OneofUint32FieldNumber = 111;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public uint OneofUint32 {
get { return oneofFieldCase_ == OneofFieldOneofCase.OneofUint32 ? (uint) oneofField_ : 0; }
set {
@@ -1470,6 +1576,7 @@ namespace Conformance {
/// Field number for the "oneof_nested_message" field.
public const int OneofNestedMessageFieldNumber = 112;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public global::Conformance.TestAllTypes.Types.NestedMessage OneofNestedMessage {
get { return oneofFieldCase_ == OneofFieldOneofCase.OneofNestedMessage ? (global::Conformance.TestAllTypes.Types.NestedMessage) oneofField_ : null; }
set {
@@ -1480,6 +1587,7 @@ namespace Conformance {
/// Field number for the "oneof_string" field.
public const int OneofStringFieldNumber = 113;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string OneofString {
get { return oneofFieldCase_ == OneofFieldOneofCase.OneofString ? (string) oneofField_ : ""; }
set {
@@ -1490,6 +1598,7 @@ namespace Conformance {
/// Field number for the "oneof_bytes" field.
public const int OneofBytesFieldNumber = 114;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pb::ByteString OneofBytes {
get { return oneofFieldCase_ == OneofFieldOneofCase.OneofBytes ? (pb::ByteString) oneofField_ : pb::ByteString.Empty; }
set {
@@ -1505,6 +1614,7 @@ namespace Conformance {
///
/// Well-known types
///
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool? OptionalBoolWrapper {
get { return optionalBoolWrapper_; }
set {
@@ -1516,6 +1626,7 @@ namespace Conformance {
public const int OptionalInt32WrapperFieldNumber = 202;
private static readonly pb::FieldCodec _single_optionalInt32Wrapper_codec = pb::FieldCodec.ForStructWrapper(1618);
private int? optionalInt32Wrapper_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int? OptionalInt32Wrapper {
get { return optionalInt32Wrapper_; }
set {
@@ -1527,6 +1638,7 @@ namespace Conformance {
public const int OptionalInt64WrapperFieldNumber = 203;
private static readonly pb::FieldCodec _single_optionalInt64Wrapper_codec = pb::FieldCodec.ForStructWrapper(1626);
private long? optionalInt64Wrapper_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public long? OptionalInt64Wrapper {
get { return optionalInt64Wrapper_; }
set {
@@ -1538,6 +1650,7 @@ namespace Conformance {
public const int OptionalUint32WrapperFieldNumber = 204;
private static readonly pb::FieldCodec _single_optionalUint32Wrapper_codec = pb::FieldCodec.ForStructWrapper(1634);
private uint? optionalUint32Wrapper_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public uint? OptionalUint32Wrapper {
get { return optionalUint32Wrapper_; }
set {
@@ -1549,6 +1662,7 @@ namespace Conformance {
public const int OptionalUint64WrapperFieldNumber = 205;
private static readonly pb::FieldCodec _single_optionalUint64Wrapper_codec = pb::FieldCodec.ForStructWrapper(1642);
private ulong? optionalUint64Wrapper_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public ulong? OptionalUint64Wrapper {
get { return optionalUint64Wrapper_; }
set {
@@ -1560,6 +1674,7 @@ namespace Conformance {
public const int OptionalFloatWrapperFieldNumber = 206;
private static readonly pb::FieldCodec _single_optionalFloatWrapper_codec = pb::FieldCodec.ForStructWrapper(1650);
private float? optionalFloatWrapper_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public float? OptionalFloatWrapper {
get { return optionalFloatWrapper_; }
set {
@@ -1571,6 +1686,7 @@ namespace Conformance {
public const int OptionalDoubleWrapperFieldNumber = 207;
private static readonly pb::FieldCodec _single_optionalDoubleWrapper_codec = pb::FieldCodec.ForStructWrapper(1658);
private double? optionalDoubleWrapper_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public double? OptionalDoubleWrapper {
get { return optionalDoubleWrapper_; }
set {
@@ -1582,6 +1698,7 @@ namespace Conformance {
public const int OptionalStringWrapperFieldNumber = 208;
private static readonly pb::FieldCodec _single_optionalStringWrapper_codec = pb::FieldCodec.ForClassWrapper(1666);
private string optionalStringWrapper_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string OptionalStringWrapper {
get { return optionalStringWrapper_; }
set {
@@ -1593,6 +1710,7 @@ namespace Conformance {
public const int OptionalBytesWrapperFieldNumber = 209;
private static readonly pb::FieldCodec _single_optionalBytesWrapper_codec = pb::FieldCodec.ForClassWrapper(1674);
private pb::ByteString optionalBytesWrapper_;
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pb::ByteString OptionalBytesWrapper {
get { return optionalBytesWrapper_; }
set {
@@ -1605,6 +1723,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedBoolWrapper_codec
= pb::FieldCodec.ForStructWrapper(1690);
private readonly pbc::RepeatedField repeatedBoolWrapper_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedBoolWrapper {
get { return repeatedBoolWrapper_; }
}
@@ -1614,6 +1733,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedInt32Wrapper_codec
= pb::FieldCodec.ForStructWrapper(1698);
private readonly pbc::RepeatedField repeatedInt32Wrapper_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedInt32Wrapper {
get { return repeatedInt32Wrapper_; }
}
@@ -1623,6 +1743,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedInt64Wrapper_codec
= pb::FieldCodec.ForStructWrapper(1706);
private readonly pbc::RepeatedField repeatedInt64Wrapper_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedInt64Wrapper {
get { return repeatedInt64Wrapper_; }
}
@@ -1632,6 +1753,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedUint32Wrapper_codec
= pb::FieldCodec.ForStructWrapper(1714);
private readonly pbc::RepeatedField repeatedUint32Wrapper_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedUint32Wrapper {
get { return repeatedUint32Wrapper_; }
}
@@ -1641,6 +1763,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedUint64Wrapper_codec
= pb::FieldCodec.ForStructWrapper(1722);
private readonly pbc::RepeatedField repeatedUint64Wrapper_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedUint64Wrapper {
get { return repeatedUint64Wrapper_; }
}
@@ -1650,6 +1773,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedFloatWrapper_codec
= pb::FieldCodec.ForStructWrapper(1730);
private readonly pbc::RepeatedField repeatedFloatWrapper_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField RepeatedFloatWrapper {
get { return repeatedFloatWrapper_; }
}
@@ -1659,6 +1783,7 @@ namespace Conformance {
private static readonly pb::FieldCodec _repeated_repeatedDoubleWrapper_codec
= pb::FieldCodec.ForStructWrapper(1738);
private readonly pbc::RepeatedField repeatedDoubleWrapper_ = new pbc::RepeatedField();
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField