Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
7ee85c4e
Commit
7ee85c4e
authored
May 28, 2009
by
Jon Skeet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added field constant generation
parent
d33bff04
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
422 additions
and
2 deletions
+422
-2
AddressBookProtos.cs
src/AddressBook/AddressBookProtos.cs
+7
-0
ExtensionGenerator.cs
src/ProtoGen/ExtensionGenerator.cs
+1
-0
MessageGenerator.cs
src/ProtoGen/MessageGenerator.cs
+2
-1
SourceGeneratorBase.cs
src/ProtoGen/SourceGeneratorBase.cs
+4
-0
GeneratedMessageTest.cs
src/ProtocolBuffers.Test/GeneratedMessageTest.cs
+27
-0
UnitTestCustomOptionsProtoFile.cs
...Buffers.Test/TestProtos/UnitTestCustomOptionsProtoFile.cs
+43
-0
UnitTestEmbedOptimizeForProtoFile.cs
...fers.Test/TestProtos/UnitTestEmbedOptimizeForProtoFile.cs
+2
-0
UnitTestImportProtoFile.cs
...rotocolBuffers.Test/TestProtos/UnitTestImportProtoFile.cs
+1
-0
UnitTestMessageSetProtoFile.cs
...colBuffers.Test/TestProtos/UnitTestMessageSetProtoFile.cs
+8
-0
UnitTestOptimizeForProtoFile.cs
...olBuffers.Test/TestProtos/UnitTestOptimizeForProtoFile.cs
+6
-0
UnitTestProtoFile.cs
src/ProtocolBuffers.Test/TestProtos/UnitTestProtoFile.cs
+247
-0
CSharpOptions.cs
src/ProtocolBuffers/DescriptorProtos/CSharpOptions.cs
+8
-0
DescriptorProtoFile.cs
src/ProtocolBuffers/DescriptorProtos/DescriptorProtoFile.cs
+62
-0
todo.txt
todo.txt
+4
-1
No files found.
src/AddressBook/AddressBookProtos.cs
View file @
7ee85c4e
...
@@ -100,6 +100,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
...
@@ -100,6 +100,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
get
{
return
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
AddressBookProtos
.
internal__static_tutorial_Person_PhoneNumber__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
AddressBookProtos
.
internal__static_tutorial_Person_PhoneNumber__FieldAccessorTable
;
}
}
}
public
const
int
NumberFieldNumber
=
1
;
private
bool
hasNumber
;
private
bool
hasNumber
;
private
string
number_
=
""
;
private
string
number_
=
""
;
public
bool
HasNumber
{
public
bool
HasNumber
{
...
@@ -109,6 +110,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
...
@@ -109,6 +110,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
get
{
return
number_
;
}
get
{
return
number_
;
}
}
}
public
const
int
TypeFieldNumber
=
2
;
private
bool
hasType
;
private
bool
hasType
;
private
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
.
Types
.
PhoneType
type_
=
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
.
Types
.
PhoneType
.
HOME
;
private
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
.
Types
.
PhoneType
type_
=
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
.
Types
.
PhoneType
.
HOME
;
public
bool
HasType
{
public
bool
HasType
{
...
@@ -332,6 +334,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
...
@@ -332,6 +334,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
}
}
#
endregion
#
endregion
public
const
int
NameFieldNumber
=
1
;
private
bool
hasName
;
private
bool
hasName
;
private
string
name_
=
""
;
private
string
name_
=
""
;
public
bool
HasName
{
public
bool
HasName
{
...
@@ -341,6 +344,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
...
@@ -341,6 +344,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
get
{
return
name_
;
}
get
{
return
name_
;
}
}
}
public
const
int
IdFieldNumber
=
2
;
private
bool
hasId
;
private
bool
hasId
;
private
int
id_
=
0
;
private
int
id_
=
0
;
public
bool
HasId
{
public
bool
HasId
{
...
@@ -350,6 +354,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
...
@@ -350,6 +354,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
get
{
return
id_
;
}
get
{
return
id_
;
}
}
}
public
const
int
EmailFieldNumber
=
3
;
private
bool
hasEmail
;
private
bool
hasEmail
;
private
string
email_
=
""
;
private
string
email_
=
""
;
public
bool
HasEmail
{
public
bool
HasEmail
{
...
@@ -359,6 +364,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
...
@@ -359,6 +364,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
get
{
return
email_
;
}
get
{
return
email_
;
}
}
}
public
const
int
PhoneFieldNumber
=
4
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
.
Types
.
PhoneNumber
>
phone_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
.
Types
.
PhoneNumber
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
.
Types
.
PhoneNumber
>
phone_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
.
Types
.
PhoneNumber
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
.
Types
.
PhoneNumber
>
PhoneList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
.
Types
.
PhoneNumber
>
PhoneList
{
get
{
return
phone_
;
}
get
{
return
phone_
;
}
...
@@ -685,6 +691,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
...
@@ -685,6 +691,7 @@ namespace Google.ProtocolBuffers.Examples.AddressBook {
get
{
return
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
AddressBookProtos
.
internal__static_tutorial_AddressBook__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
AddressBookProtos
.
internal__static_tutorial_AddressBook__FieldAccessorTable
;
}
}
}
public
const
int
PersonFieldNumber
=
1
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
>
person_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
>
person_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
>
PersonList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
Examples
.
AddressBook
.
Person
>
PersonList
{
get
{
return
person_
;
}
get
{
return
person_
;
}
...
...
src/ProtoGen/ExtensionGenerator.cs
View file @
7ee85c4e
...
@@ -24,6 +24,7 @@ namespace Google.ProtocolBuffers.ProtoGen {
...
@@ -24,6 +24,7 @@ namespace Google.ProtocolBuffers.ProtoGen {
break
;
break
;
}
}
writer
.
WriteLine
(
"public const int {0} = {1};"
,
GetFieldConstantName
(
Descriptor
),
Descriptor
.
FieldNumber
);
if
(
Descriptor
.
IsRepeated
)
{
if
(
Descriptor
.
IsRepeated
)
{
writer
.
WriteLine
(
"{0} static readonly"
,
ClassAccessLevel
);
writer
.
WriteLine
(
"{0} static readonly"
,
ClassAccessLevel
);
writer
.
WriteLine
(
" pb::GeneratedExtensionBase<scg::IList<{0}>> {1} ="
,
type
,
name
);
writer
.
WriteLine
(
" pb::GeneratedExtensionBase<scg::IList<{0}>> {1} ="
,
type
,
name
);
...
...
src/ProtoGen/MessageGenerator.cs
View file @
7ee85c4e
...
@@ -107,6 +107,7 @@ namespace Google.ProtocolBuffers.ProtoGen {
...
@@ -107,6 +107,7 @@ namespace Google.ProtocolBuffers.ProtoGen {
foreach
(
FieldDescriptor
fieldDescriptor
in
Descriptor
.
Fields
)
{
foreach
(
FieldDescriptor
fieldDescriptor
in
Descriptor
.
Fields
)
{
// Rats: we lose the debug comment here :(
// Rats: we lose the debug comment here :(
writer
.
WriteLine
(
"public const int {0} = {1};"
,
GetFieldConstantName
(
fieldDescriptor
),
fieldDescriptor
.
FieldNumber
);
SourceGenerators
.
CreateFieldGenerator
(
fieldDescriptor
).
GenerateMembers
(
writer
);
SourceGenerators
.
CreateFieldGenerator
(
fieldDescriptor
).
GenerateMembers
(
writer
);
writer
.
WriteLine
();
writer
.
WriteLine
();
}
}
...
@@ -186,7 +187,7 @@ namespace Google.ProtocolBuffers.ProtoGen {
...
@@ -186,7 +187,7 @@ namespace Google.ProtocolBuffers.ProtoGen {
writer
.
WriteLine
();
writer
.
WriteLine
();
}
}
private
void
GenerateSerializeOneField
(
TextGenerator
writer
,
FieldDescriptor
fieldDescriptor
)
{
private
static
void
GenerateSerializeOneField
(
TextGenerator
writer
,
FieldDescriptor
fieldDescriptor
)
{
SourceGenerators
.
CreateFieldGenerator
(
fieldDescriptor
).
GenerateSerializationCode
(
writer
);
SourceGenerators
.
CreateFieldGenerator
(
fieldDescriptor
).
GenerateSerializationCode
(
writer
);
}
}
...
...
src/ProtoGen/SourceGeneratorBase.cs
View file @
7ee85c4e
...
@@ -30,6 +30,10 @@ namespace Google.ProtocolBuffers.ProtoGen {
...
@@ -30,6 +30,10 @@ namespace Google.ProtocolBuffers.ProtoGen {
}
}
}
}
internal
static
string
GetFieldConstantName
(
FieldDescriptor
field
)
{
return
NameHelpers
.
UnderscoresToPascalCase
(
GetFieldName
(
field
))
+
"FieldNumber"
;
}
private
static
string
ToCSharpName
(
string
name
,
FileDescriptor
file
)
{
private
static
string
ToCSharpName
(
string
name
,
FileDescriptor
file
)
{
string
result
=
file
.
CSharpOptions
.
Namespace
;
string
result
=
file
.
CSharpOptions
.
Namespace
;
if
(
file
.
CSharpOptions
.
NestClasses
)
{
if
(
file
.
CSharpOptions
.
NestClasses
)
{
...
...
src/ProtocolBuffers.Test/GeneratedMessageTest.cs
View file @
7ee85c4e
...
@@ -397,5 +397,32 @@ namespace Google.ProtocolBuffers {
...
@@ -397,5 +397,32 @@ namespace Google.ProtocolBuffers {
TestAllTypes
message
=
builder
.
Build
();
TestAllTypes
message
=
builder
.
Build
();
TestUtil
.
AssertAllFieldsSet
(
message
.
ToBuilder
().
Build
());
TestUtil
.
AssertAllFieldsSet
(
message
.
ToBuilder
().
Build
());
}
}
[
Test
]
public
void
FieldConstantValues
()
{
Assert
.
AreEqual
(
TestAllTypes
.
Types
.
NestedMessage
.
BbFieldNumber
,
1
);
Assert
.
AreEqual
(
TestAllTypes
.
OptionalInt32FieldNumber
,
1
);
Assert
.
AreEqual
(
TestAllTypes
.
OptionalGroupFieldNumber
,
16
);
Assert
.
AreEqual
(
TestAllTypes
.
OptionalNestedMessageFieldNumber
,
18
);
Assert
.
AreEqual
(
TestAllTypes
.
OptionalNestedEnumFieldNumber
,
21
);
Assert
.
AreEqual
(
TestAllTypes
.
RepeatedInt32FieldNumber
,
31
);
Assert
.
AreEqual
(
TestAllTypes
.
RepeatedGroupFieldNumber
,
46
);
Assert
.
AreEqual
(
TestAllTypes
.
RepeatedNestedMessageFieldNumber
,
48
);
Assert
.
AreEqual
(
TestAllTypes
.
RepeatedNestedEnumFieldNumber
,
51
);
}
[
Test
]
public
void
ExtensionConstantValues
()
{
Assert
.
AreEqual
(
TestRequired
.
SingleFieldNumber
,
1000
);
Assert
.
AreEqual
(
TestRequired
.
MultiFieldNumber
,
1001
);
Assert
.
AreEqual
(
UnitTestProtoFile
.
OptionalInt32ExtensionFieldNumber
,
1
);
Assert
.
AreEqual
(
UnitTestProtoFile
.
OptionalGroupExtensionFieldNumber
,
16
);
Assert
.
AreEqual
(
UnitTestProtoFile
.
OptionalNestedMessageExtensionFieldNumber
,
18
);
Assert
.
AreEqual
(
UnitTestProtoFile
.
OptionalNestedEnumExtensionFieldNumber
,
21
);
Assert
.
AreEqual
(
UnitTestProtoFile
.
RepeatedInt32ExtensionFieldNumber
,
31
);
Assert
.
AreEqual
(
UnitTestProtoFile
.
RepeatedGroupExtensionFieldNumber
,
46
);
Assert
.
AreEqual
(
UnitTestProtoFile
.
RepeatedNestedMessageExtensionFieldNumber
,
48
);
Assert
.
AreEqual
(
UnitTestProtoFile
.
RepeatedNestedEnumExtensionFieldNumber
,
51
);
}
}
}
}
}
src/ProtocolBuffers.Test/TestProtos/UnitTestCustomOptionsProtoFile.cs
View file @
7ee85c4e
...
@@ -115,68 +115,100 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -115,68 +115,100 @@ namespace Google.ProtocolBuffers.TestProtos {
#
endregion
#
endregion
#
region
Extensions
#
region
Extensions
public
const
int
FileOpt1FieldNumber
=
7736974
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
FileOpt1
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
FileOpt1
=
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
public
const
int
MessageOpt1FieldNumber
=
7739036
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
MessageOpt1
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
MessageOpt1
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
1
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
1
]);
public
const
int
FieldOpt1FieldNumber
=
7740936
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
FieldOpt1
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
FieldOpt1
=
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
2
]);
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
2
]);
public
const
int
FieldOpt2FieldNumber
=
7753913
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
FieldOpt2
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
FieldOpt2
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
3
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
3
]);
public
const
int
EnumOpt1FieldNumber
=
7753576
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
EnumOpt1
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
EnumOpt1
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
4
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
4
]);
public
const
int
ServiceOpt1FieldNumber
=
7887650
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
ServiceOpt1
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
ServiceOpt1
=
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
5
]);
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
5
]);
public
const
int
MethodOpt1FieldNumber
=
7890860
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
MethodOpt1
>
MethodOpt1
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
MethodOpt1
>
MethodOpt1
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
MethodOpt1
>.
CreateInstance
(
Descriptor
.
Extensions
[
6
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
MethodOpt1
>.
CreateInstance
(
Descriptor
.
Extensions
[
6
]);
public
const
int
BoolOptFieldNumber
=
7706090
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
bool
>
BoolOpt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
bool
>
BoolOpt
=
pb
::
GeneratedSingleExtension
<
bool
>.
CreateInstance
(
Descriptor
.
Extensions
[
7
]);
pb
::
GeneratedSingleExtension
<
bool
>.
CreateInstance
(
Descriptor
.
Extensions
[
7
]);
public
const
int
Int32OptFieldNumber
=
7705709
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
Int32Opt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
Int32Opt
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
8
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
8
]);
public
const
int
Int64OptFieldNumber
=
7705542
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
Int64Opt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
Int64Opt
=
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
9
]);
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
9
]);
public
const
int
Uint32OptFieldNumber
=
7704880
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
Uint32Opt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
Uint32Opt
=
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
10
]);
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
10
]);
public
const
int
Uint64OptFieldNumber
=
7702367
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
Uint64Opt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
Uint64Opt
=
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
11
]);
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
11
]);
public
const
int
Sint32OptFieldNumber
=
7701568
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
Sint32Opt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
Sint32Opt
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
12
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
12
]);
public
const
int
Sint64OptFieldNumber
=
7700863
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
Sint64Opt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
Sint64Opt
=
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
13
]);
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
13
]);
public
const
int
Fixed32OptFieldNumber
=
7700307
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
Fixed32Opt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
Fixed32Opt
=
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
14
]);
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
14
]);
public
const
int
Fixed64OptFieldNumber
=
7700194
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
Fixed64Opt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
Fixed64Opt
=
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
15
]);
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
15
]);
public
const
int
Sfixed32OptFieldNumber
=
7698645
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
Sfixed32Opt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
Sfixed32Opt
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
16
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
16
]);
public
const
int
Sfixed64OptFieldNumber
=
7685475
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
Sfixed64Opt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
Sfixed64Opt
=
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
17
]);
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
17
]);
public
const
int
FloatOptFieldNumber
=
7675390
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
float
>
FloatOpt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
float
>
FloatOpt
=
pb
::
GeneratedSingleExtension
<
float
>.
CreateInstance
(
Descriptor
.
Extensions
[
18
]);
pb
::
GeneratedSingleExtension
<
float
>.
CreateInstance
(
Descriptor
.
Extensions
[
18
]);
public
const
int
DoubleOptFieldNumber
=
7673293
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
double
>
DoubleOpt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
double
>
DoubleOpt
=
pb
::
GeneratedSingleExtension
<
double
>.
CreateInstance
(
Descriptor
.
Extensions
[
19
]);
pb
::
GeneratedSingleExtension
<
double
>.
CreateInstance
(
Descriptor
.
Extensions
[
19
]);
public
const
int
StringOptFieldNumber
=
7673285
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
StringOpt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
StringOpt
=
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
20
]);
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
20
]);
public
const
int
BytesOptFieldNumber
=
7673238
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
pb
::
ByteString
>
BytesOpt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
pb
::
ByteString
>
BytesOpt
=
pb
::
GeneratedSingleExtension
<
pb
::
ByteString
>.
CreateInstance
(
Descriptor
.
Extensions
[
21
]);
pb
::
GeneratedSingleExtension
<
pb
::
ByteString
>.
CreateInstance
(
Descriptor
.
Extensions
[
21
]);
public
const
int
EnumOptFieldNumber
=
7673233
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
DummyMessageContainingEnum
.
Types
.
TestEnumType
>
EnumOpt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
DummyMessageContainingEnum
.
Types
.
TestEnumType
>
EnumOpt
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
DummyMessageContainingEnum
.
Types
.
TestEnumType
>.
CreateInstance
(
Descriptor
.
Extensions
[
22
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
DummyMessageContainingEnum
.
Types
.
TestEnumType
>.
CreateInstance
(
Descriptor
.
Extensions
[
22
]);
public
const
int
MessageTypeOptFieldNumber
=
7665967
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
DummyMessageInvalidAsOptionType
>
MessageTypeOpt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
DummyMessageInvalidAsOptionType
>
MessageTypeOpt
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
DummyMessageInvalidAsOptionType
>.
CreateInstance
(
Descriptor
.
Extensions
[
23
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
DummyMessageInvalidAsOptionType
>.
CreateInstance
(
Descriptor
.
Extensions
[
23
]);
public
const
int
QuuxFieldNumber
=
7663707
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
Quux
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
Quux
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
24
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
24
]);
public
const
int
CorgeFieldNumber
=
7663442
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
>
Corge
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
>
Corge
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
>.
CreateInstance
(
Descriptor
.
Extensions
[
25
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
>.
CreateInstance
(
Descriptor
.
Extensions
[
25
]);
public
const
int
GraultFieldNumber
=
7650927
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
Grault
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
Grault
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
26
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
26
]);
public
const
int
GarplyFieldNumber
=
7649992
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
>
Garply
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
>
Garply
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
>.
CreateInstance
(
Descriptor
.
Extensions
[
27
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
>.
CreateInstance
(
Descriptor
.
Extensions
[
27
]);
public
const
int
ComplexOpt1FieldNumber
=
7646756
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
>
ComplexOpt1
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
>
ComplexOpt1
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
>.
CreateInstance
(
Descriptor
.
Extensions
[
28
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
>.
CreateInstance
(
Descriptor
.
Extensions
[
28
]);
public
const
int
ComplexOpt2FieldNumber
=
7636949
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
>
ComplexOpt2
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
>
ComplexOpt2
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
>.
CreateInstance
(
Descriptor
.
Extensions
[
29
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
>.
CreateInstance
(
Descriptor
.
Extensions
[
29
]);
public
const
int
ComplexOpt3FieldNumber
=
7636463
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
>
ComplexOpt3
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
>
ComplexOpt3
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
>.
CreateInstance
(
Descriptor
.
Extensions
[
30
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
>.
CreateInstance
(
Descriptor
.
Extensions
[
30
]);
public
const
int
ComplexOpt6FieldNumber
=
7595468
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOpt6
>
ComplexOpt6
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOpt6
>
ComplexOpt6
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOpt6
>.
CreateInstance
(
Descriptor
.
Extensions
[
31
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOpt6
>.
CreateInstance
(
Descriptor
.
Extensions
[
31
]);
#
endregion
#
endregion
...
@@ -310,6 +342,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -310,6 +342,7 @@ namespace Google.ProtocolBuffers.TestProtos {
}
}
#
endregion
#
endregion
public
const
int
Field1FieldNumber
=
1
;
private
bool
hasField1
;
private
bool
hasField1
;
private
string
field1_
=
""
;
private
string
field1_
=
""
;
public
bool
HasField1
{
public
bool
HasField1
{
...
@@ -1258,6 +1291,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1258,6 +1291,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestCustomOptionsProtoFile
.
internal__static_protobuf_unittest_ComplexOptionType1__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestCustomOptionsProtoFile
.
internal__static_protobuf_unittest_ComplexOptionType1__FieldAccessorTable
;
}
}
}
public
const
int
FooFieldNumber
=
1
;
private
bool
hasFoo
;
private
bool
hasFoo
;
private
int
foo_
=
0
;
private
int
foo_
=
0
;
public
bool
HasFoo
{
public
bool
HasFoo
{
...
@@ -1400,8 +1434,10 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1400,8 +1434,10 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestCustomOptionsProtoFile
.
internal__static_protobuf_unittest_ComplexOptionType2_ComplexOptionType4__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestCustomOptionsProtoFile
.
internal__static_protobuf_unittest_ComplexOptionType2_ComplexOptionType4__FieldAccessorTable
;
}
}
}
public
const
int
ComplexOpt4FieldNumber
=
7633546
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
.
Types
.
ComplexOptionType4
>
ComplexOpt4
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
.
Types
.
ComplexOptionType4
>
ComplexOpt4
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
.
Types
.
ComplexOptionType4
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
.
Types
.
ComplexOptionType4
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
public
const
int
WaldoFieldNumber
=
1
;
private
bool
hasWaldo
;
private
bool
hasWaldo
;
private
int
waldo_
=
0
;
private
int
waldo_
=
0
;
public
bool
HasWaldo
{
public
bool
HasWaldo
{
...
@@ -1501,6 +1537,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1501,6 +1537,7 @@ namespace Google.ProtocolBuffers.TestProtos {
}
}
#
endregion
#
endregion
public
const
int
BarFieldNumber
=
1
;
private
bool
hasBar
;
private
bool
hasBar
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
bar_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
bar_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType1
.
DefaultInstance
;
public
bool
HasBar
{
public
bool
HasBar
{
...
@@ -1510,6 +1547,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1510,6 +1547,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
bar_
;
}
get
{
return
bar_
;
}
}
}
public
const
int
BazFieldNumber
=
2
;
private
bool
hasBaz
;
private
bool
hasBaz
;
private
int
baz_
=
0
;
private
int
baz_
=
0
;
public
bool
HasBaz
{
public
bool
HasBaz
{
...
@@ -1519,6 +1557,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1519,6 +1557,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
baz_
;
}
get
{
return
baz_
;
}
}
}
public
const
int
FredFieldNumber
=
3
;
private
bool
hasFred
;
private
bool
hasFred
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
.
Types
.
ComplexOptionType4
fred_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
.
Types
.
ComplexOptionType4
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
.
Types
.
ComplexOptionType4
fred_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType2
.
Types
.
ComplexOptionType4
.
DefaultInstance
;
public
bool
HasFred
{
public
bool
HasFred
{
...
@@ -1733,6 +1772,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1733,6 +1772,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestCustomOptionsProtoFile
.
internal__static_protobuf_unittest_ComplexOptionType3_ComplexOptionType5__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestCustomOptionsProtoFile
.
internal__static_protobuf_unittest_ComplexOptionType3_ComplexOptionType5__FieldAccessorTable
;
}
}
}
public
const
int
PlughFieldNumber
=
3
;
private
bool
hasPlugh
;
private
bool
hasPlugh
;
private
int
plugh_
=
0
;
private
int
plugh_
=
0
;
public
bool
HasPlugh
{
public
bool
HasPlugh
{
...
@@ -1832,6 +1872,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1832,6 +1872,7 @@ namespace Google.ProtocolBuffers.TestProtos {
}
}
#
endregion
#
endregion
public
const
int
QuxFieldNumber
=
1
;
private
bool
hasQux
;
private
bool
hasQux
;
private
int
qux_
=
0
;
private
int
qux_
=
0
;
public
bool
HasQux
{
public
bool
HasQux
{
...
@@ -1841,6 +1882,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1841,6 +1882,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
qux_
;
}
get
{
return
qux_
;
}
}
}
public
const
int
ComplexOptionType5FieldNumber
=
2
;
private
bool
hasComplexOptionType5
;
private
bool
hasComplexOptionType5
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
.
Types
.
ComplexOptionType5
complexOptionType5_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
.
Types
.
ComplexOptionType5
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
.
Types
.
ComplexOptionType5
complexOptionType5_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ComplexOptionType3
.
Types
.
ComplexOptionType5
.
DefaultInstance
;
public
bool
HasComplexOptionType5
{
public
bool
HasComplexOptionType5
{
...
@@ -1995,6 +2037,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1995,6 +2037,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestCustomOptionsProtoFile
.
internal__static_protobuf_unittest_ComplexOpt6__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestCustomOptionsProtoFile
.
internal__static_protobuf_unittest_ComplexOpt6__FieldAccessorTable
;
}
}
}
public
const
int
XyzzyFieldNumber
=
7593951
;
private
bool
hasXyzzy
;
private
bool
hasXyzzy
;
private
int
xyzzy_
=
0
;
private
int
xyzzy_
=
0
;
public
bool
HasXyzzy
{
public
bool
HasXyzzy
{
...
...
src/ProtocolBuffers.Test/TestProtos/UnitTestEmbedOptimizeForProtoFile.cs
View file @
7ee85c4e
...
@@ -60,6 +60,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -60,6 +60,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestEmbedOptimizeForProtoFile
.
internal__static_protobuf_unittest_TestEmbedOptimizedForSize__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestEmbedOptimizeForProtoFile
.
internal__static_protobuf_unittest_TestEmbedOptimizedForSize__FieldAccessorTable
;
}
}
}
public
const
int
OptionalMessageFieldNumber
=
1
;
private
bool
hasOptionalMessage
;
private
bool
hasOptionalMessage
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestOptimizedForSize
optionalMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestOptimizedForSize
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestOptimizedForSize
optionalMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestOptimizedForSize
.
DefaultInstance
;
public
bool
HasOptionalMessage
{
public
bool
HasOptionalMessage
{
...
@@ -69,6 +70,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -69,6 +70,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalMessage_
;
}
get
{
return
optionalMessage_
;
}
}
}
public
const
int
RepeatedMessageFieldNumber
=
2
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestOptimizedForSize
>
repeatedMessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestOptimizedForSize
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestOptimizedForSize
>
repeatedMessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestOptimizedForSize
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestOptimizedForSize
>
RepeatedMessageList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestOptimizedForSize
>
RepeatedMessageList
{
get
{
return
repeatedMessage_
;
}
get
{
return
repeatedMessage_
;
}
...
...
src/ProtocolBuffers.Test/TestProtos/UnitTestImportProtoFile.cs
View file @
7ee85c4e
...
@@ -66,6 +66,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -66,6 +66,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestImportProtoFile
.
internal__static_protobuf_unittest_import_ImportMessage__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestImportProtoFile
.
internal__static_protobuf_unittest_import_ImportMessage__FieldAccessorTable
;
}
}
}
public
const
int
DFieldNumber
=
1
;
private
bool
hasD
;
private
bool
hasD
;
private
int
d_
=
0
;
private
int
d_
=
0
;
public
bool
HasD
{
public
bool
HasD
{
...
...
src/ProtocolBuffers.Test/TestProtos/UnitTestMessageSetProtoFile.cs
View file @
7ee85c4e
...
@@ -257,6 +257,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -257,6 +257,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestMessageSetProtoFile
.
internal__static_protobuf_unittest_TestMessageSetContainer__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestMessageSetProtoFile
.
internal__static_protobuf_unittest_TestMessageSetContainer__FieldAccessorTable
;
}
}
}
public
const
int
MessageSetFieldNumber
=
1
;
private
bool
hasMessageSet
;
private
bool
hasMessageSet
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSet
messageSet_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSet
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSet
messageSet_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSet
.
DefaultInstance
;
public
bool
HasMessageSet
{
public
bool
HasMessageSet
{
...
@@ -481,8 +482,10 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -481,8 +482,10 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestMessageSetProtoFile
.
internal__static_protobuf_unittest_TestMessageSetExtension1__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestMessageSetProtoFile
.
internal__static_protobuf_unittest_TestMessageSetExtension1__FieldAccessorTable
;
}
}
}
public
const
int
MessageSetExtensionFieldNumber
=
1545008
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSetExtension1
>
MessageSetExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSetExtension1
>
MessageSetExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSetExtension1
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSetExtension1
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
public
const
int
IFieldNumber
=
15
;
private
bool
hasI
;
private
bool
hasI
;
private
int
i_
=
0
;
private
int
i_
=
0
;
public
bool
HasI
{
public
bool
HasI
{
...
@@ -684,8 +687,10 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -684,8 +687,10 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestMessageSetProtoFile
.
internal__static_protobuf_unittest_TestMessageSetExtension2__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestMessageSetProtoFile
.
internal__static_protobuf_unittest_TestMessageSetExtension2__FieldAccessorTable
;
}
}
}
public
const
int
MessageSetExtensionFieldNumber
=
1547769
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSetExtension2
>
MessageSetExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSetExtension2
>
MessageSetExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSetExtension2
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMessageSetExtension2
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
public
const
int
StrFieldNumber
=
25
;
private
bool
hasStr
;
private
bool
hasStr
;
private
string
str_
=
""
;
private
string
str_
=
""
;
public
bool
HasStr
{
public
bool
HasStr
{
...
@@ -912,6 +917,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -912,6 +917,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestMessageSetProtoFile
.
internal__static_protobuf_unittest_RawMessageSet_Item__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestMessageSetProtoFile
.
internal__static_protobuf_unittest_RawMessageSet_Item__FieldAccessorTable
;
}
}
}
public
const
int
TypeIdFieldNumber
=
2
;
private
bool
hasTypeId
;
private
bool
hasTypeId
;
private
int
typeId_
=
0
;
private
int
typeId_
=
0
;
public
bool
HasTypeId
{
public
bool
HasTypeId
{
...
@@ -921,6 +927,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -921,6 +927,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
typeId_
;
}
get
{
return
typeId_
;
}
}
}
public
const
int
MessageFieldNumber
=
3
;
private
bool
hasMessage
;
private
bool
hasMessage
;
private
pb
::
ByteString
message_
=
pb
::
ByteString
.
Empty
;
private
pb
::
ByteString
message_
=
pb
::
ByteString
.
Empty
;
public
bool
HasMessage
{
public
bool
HasMessage
{
...
@@ -1137,6 +1144,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1137,6 +1144,7 @@ namespace Google.ProtocolBuffers.TestProtos {
}
}
#
endregion
#
endregion
public
const
int
ItemFieldNumber
=
1
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
RawMessageSet
.
Types
.
Item
>
item_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
RawMessageSet
.
Types
.
Item
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
RawMessageSet
.
Types
.
Item
>
item_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
RawMessageSet
.
Types
.
Item
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
RawMessageSet
.
Types
.
Item
>
ItemList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
RawMessageSet
.
Types
.
Item
>
ItemList
{
get
{
return
item_
;
}
get
{
return
item_
;
}
...
...
src/ProtocolBuffers.Test/TestProtos/UnitTestOptimizeForProtoFile.cs
View file @
7ee85c4e
...
@@ -75,10 +75,13 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -75,10 +75,13 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestOptimizeForProtoFile
.
internal__static_protobuf_unittest_TestOptimizedForSize__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestOptimizeForProtoFile
.
internal__static_protobuf_unittest_TestOptimizedForSize__FieldAccessorTable
;
}
}
}
public
const
int
TestExtensionFieldNumber
=
1234
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
TestExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
TestExtension
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
public
const
int
TestExtension2FieldNumber
=
1235
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequiredOptimizedForSize
>
TestExtension2
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequiredOptimizedForSize
>
TestExtension2
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequiredOptimizedForSize
>.
CreateInstance
(
Descriptor
.
Extensions
[
1
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequiredOptimizedForSize
>.
CreateInstance
(
Descriptor
.
Extensions
[
1
]);
public
const
int
IFieldNumber
=
1
;
private
bool
hasI
;
private
bool
hasI
;
private
int
i_
=
0
;
private
int
i_
=
0
;
public
bool
HasI
{
public
bool
HasI
{
...
@@ -88,6 +91,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -88,6 +91,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
i_
;
}
get
{
return
i_
;
}
}
}
public
const
int
MsgFieldNumber
=
19
;
private
bool
hasMsg
;
private
bool
hasMsg
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
msg_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
msg_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
.
DefaultInstance
;
public
bool
HasMsg
{
public
bool
HasMsg
{
...
@@ -242,6 +246,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -242,6 +246,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestOptimizeForProtoFile
.
internal__static_protobuf_unittest_TestRequiredOptimizedForSize__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestOptimizeForProtoFile
.
internal__static_protobuf_unittest_TestRequiredOptimizedForSize__FieldAccessorTable
;
}
}
}
public
const
int
XFieldNumber
=
1
;
private
bool
hasX
;
private
bool
hasX
;
private
int
x_
=
0
;
private
int
x_
=
0
;
public
bool
HasX
{
public
bool
HasX
{
...
@@ -360,6 +365,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -360,6 +365,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestOptimizeForProtoFile
.
internal__static_protobuf_unittest_TestOptionalOptimizedForSize__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestOptimizeForProtoFile
.
internal__static_protobuf_unittest_TestOptionalOptimizedForSize__FieldAccessorTable
;
}
}
}
public
const
int
OFieldNumber
=
1
;
private
bool
hasO
;
private
bool
hasO
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequiredOptimizedForSize
o_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequiredOptimizedForSize
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequiredOptimizedForSize
o_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequiredOptimizedForSize
.
DefaultInstance
;
public
bool
HasO
{
public
bool
HasO
{
...
...
src/ProtocolBuffers.Test/TestProtos/UnitTestProtoFile.cs
View file @
7ee85c4e
...
@@ -329,209 +329,293 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -329,209 +329,293 @@ namespace Google.ProtocolBuffers.TestProtos {
#
endregion
#
endregion
#
region
Extensions
#
region
Extensions
public
const
int
OptionalInt32ExtensionFieldNumber
=
1
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
OptionalInt32Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
OptionalInt32Extension
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
public
const
int
OptionalInt64ExtensionFieldNumber
=
2
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
OptionalInt64Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
OptionalInt64Extension
=
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
1
]);
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
1
]);
public
const
int
OptionalUint32ExtensionFieldNumber
=
3
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
OptionalUint32Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
OptionalUint32Extension
=
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
2
]);
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
2
]);
public
const
int
OptionalUint64ExtensionFieldNumber
=
4
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
OptionalUint64Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
OptionalUint64Extension
=
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
3
]);
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
3
]);
public
const
int
OptionalSint32ExtensionFieldNumber
=
5
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
OptionalSint32Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
OptionalSint32Extension
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
4
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
4
]);
public
const
int
OptionalSint64ExtensionFieldNumber
=
6
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
OptionalSint64Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
OptionalSint64Extension
=
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
5
]);
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
5
]);
public
const
int
OptionalFixed32ExtensionFieldNumber
=
7
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
OptionalFixed32Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
OptionalFixed32Extension
=
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
6
]);
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
6
]);
public
const
int
OptionalFixed64ExtensionFieldNumber
=
8
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
OptionalFixed64Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
OptionalFixed64Extension
=
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
7
]);
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
7
]);
public
const
int
OptionalSfixed32ExtensionFieldNumber
=
9
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
OptionalSfixed32Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
OptionalSfixed32Extension
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
8
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
8
]);
public
const
int
OptionalSfixed64ExtensionFieldNumber
=
10
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
OptionalSfixed64Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
OptionalSfixed64Extension
=
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
9
]);
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
9
]);
public
const
int
OptionalFloatExtensionFieldNumber
=
11
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
float
>
OptionalFloatExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
float
>
OptionalFloatExtension
=
pb
::
GeneratedSingleExtension
<
float
>.
CreateInstance
(
Descriptor
.
Extensions
[
10
]);
pb
::
GeneratedSingleExtension
<
float
>.
CreateInstance
(
Descriptor
.
Extensions
[
10
]);
public
const
int
OptionalDoubleExtensionFieldNumber
=
12
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
double
>
OptionalDoubleExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
double
>
OptionalDoubleExtension
=
pb
::
GeneratedSingleExtension
<
double
>.
CreateInstance
(
Descriptor
.
Extensions
[
11
]);
pb
::
GeneratedSingleExtension
<
double
>.
CreateInstance
(
Descriptor
.
Extensions
[
11
]);
public
const
int
OptionalBoolExtensionFieldNumber
=
13
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
bool
>
OptionalBoolExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
bool
>
OptionalBoolExtension
=
pb
::
GeneratedSingleExtension
<
bool
>.
CreateInstance
(
Descriptor
.
Extensions
[
12
]);
pb
::
GeneratedSingleExtension
<
bool
>.
CreateInstance
(
Descriptor
.
Extensions
[
12
]);
public
const
int
OptionalStringExtensionFieldNumber
=
14
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
OptionalStringExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
OptionalStringExtension
=
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
13
]);
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
13
]);
public
const
int
OptionalBytesExtensionFieldNumber
=
15
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
pb
::
ByteString
>
OptionalBytesExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
pb
::
ByteString
>
OptionalBytesExtension
=
pb
::
GeneratedSingleExtension
<
pb
::
ByteString
>.
CreateInstance
(
Descriptor
.
Extensions
[
14
]);
pb
::
GeneratedSingleExtension
<
pb
::
ByteString
>.
CreateInstance
(
Descriptor
.
Extensions
[
14
]);
public
const
int
OptionalGroupExtensionFieldNumber
=
16
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
OptionalGroup_extension
>
OptionalGroupExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
OptionalGroup_extension
>
OptionalGroupExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
OptionalGroup_extension
>.
CreateInstance
(
Descriptor
.
Extensions
[
15
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
OptionalGroup_extension
>.
CreateInstance
(
Descriptor
.
Extensions
[
15
]);
public
const
int
OptionalNestedMessageExtensionFieldNumber
=
18
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>
OptionalNestedMessageExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>
OptionalNestedMessageExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
16
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
16
]);
public
const
int
OptionalForeignMessageExtensionFieldNumber
=
19
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
OptionalForeignMessageExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
OptionalForeignMessageExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
17
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
17
]);
public
const
int
OptionalImportMessageExtensionFieldNumber
=
20
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>
OptionalImportMessageExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>
OptionalImportMessageExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
18
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
18
]);
public
const
int
OptionalNestedEnumExtensionFieldNumber
=
21
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>
OptionalNestedEnumExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>
OptionalNestedEnumExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
19
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
19
]);
public
const
int
OptionalForeignEnumExtensionFieldNumber
=
22
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
OptionalForeignEnumExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
OptionalForeignEnumExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
20
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
20
]);
public
const
int
OptionalImportEnumExtensionFieldNumber
=
23
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>
OptionalImportEnumExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>
OptionalImportEnumExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
21
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
21
]);
public
const
int
OptionalStringPieceExtensionFieldNumber
=
24
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
OptionalStringPieceExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
OptionalStringPieceExtension
=
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
22
]);
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
22
]);
public
const
int
OptionalCordExtensionFieldNumber
=
25
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
OptionalCordExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
OptionalCordExtension
=
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
23
]);
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
23
]);
public
const
int
RepeatedInt32ExtensionFieldNumber
=
31
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
RepeatedInt32Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
RepeatedInt32Extension
=
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
24
]);
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
24
]);
public
const
int
RepeatedInt64ExtensionFieldNumber
=
32
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
RepeatedInt64Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
RepeatedInt64Extension
=
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
25
]);
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
25
]);
public
const
int
RepeatedUint32ExtensionFieldNumber
=
33
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
uint
>>
RepeatedUint32Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
uint
>>
RepeatedUint32Extension
=
pb
::
GeneratedRepeatExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
26
]);
pb
::
GeneratedRepeatExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
26
]);
public
const
int
RepeatedUint64ExtensionFieldNumber
=
34
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
ulong
>>
RepeatedUint64Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
ulong
>>
RepeatedUint64Extension
=
pb
::
GeneratedRepeatExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
27
]);
pb
::
GeneratedRepeatExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
27
]);
public
const
int
RepeatedSint32ExtensionFieldNumber
=
35
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
RepeatedSint32Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
RepeatedSint32Extension
=
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
28
]);
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
28
]);
public
const
int
RepeatedSint64ExtensionFieldNumber
=
36
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
RepeatedSint64Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
RepeatedSint64Extension
=
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
29
]);
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
29
]);
public
const
int
RepeatedFixed32ExtensionFieldNumber
=
37
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
uint
>>
RepeatedFixed32Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
uint
>>
RepeatedFixed32Extension
=
pb
::
GeneratedRepeatExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
30
]);
pb
::
GeneratedRepeatExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
30
]);
public
const
int
RepeatedFixed64ExtensionFieldNumber
=
38
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
ulong
>>
RepeatedFixed64Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
ulong
>>
RepeatedFixed64Extension
=
pb
::
GeneratedRepeatExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
31
]);
pb
::
GeneratedRepeatExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
31
]);
public
const
int
RepeatedSfixed32ExtensionFieldNumber
=
39
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
RepeatedSfixed32Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
RepeatedSfixed32Extension
=
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
32
]);
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
32
]);
public
const
int
RepeatedSfixed64ExtensionFieldNumber
=
40
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
RepeatedSfixed64Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
RepeatedSfixed64Extension
=
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
33
]);
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
33
]);
public
const
int
RepeatedFloatExtensionFieldNumber
=
41
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
float
>>
RepeatedFloatExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
float
>>
RepeatedFloatExtension
=
pb
::
GeneratedRepeatExtension
<
float
>.
CreateInstance
(
Descriptor
.
Extensions
[
34
]);
pb
::
GeneratedRepeatExtension
<
float
>.
CreateInstance
(
Descriptor
.
Extensions
[
34
]);
public
const
int
RepeatedDoubleExtensionFieldNumber
=
42
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
double
>>
RepeatedDoubleExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
double
>>
RepeatedDoubleExtension
=
pb
::
GeneratedRepeatExtension
<
double
>.
CreateInstance
(
Descriptor
.
Extensions
[
35
]);
pb
::
GeneratedRepeatExtension
<
double
>.
CreateInstance
(
Descriptor
.
Extensions
[
35
]);
public
const
int
RepeatedBoolExtensionFieldNumber
=
43
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
bool
>>
RepeatedBoolExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
bool
>>
RepeatedBoolExtension
=
pb
::
GeneratedRepeatExtension
<
bool
>.
CreateInstance
(
Descriptor
.
Extensions
[
36
]);
pb
::
GeneratedRepeatExtension
<
bool
>.
CreateInstance
(
Descriptor
.
Extensions
[
36
]);
public
const
int
RepeatedStringExtensionFieldNumber
=
44
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
string
>>
RepeatedStringExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
string
>>
RepeatedStringExtension
=
pb
::
GeneratedRepeatExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
37
]);
pb
::
GeneratedRepeatExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
37
]);
public
const
int
RepeatedBytesExtensionFieldNumber
=
45
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
pb
::
ByteString
>>
RepeatedBytesExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
pb
::
ByteString
>>
RepeatedBytesExtension
=
pb
::
GeneratedRepeatExtension
<
pb
::
ByteString
>.
CreateInstance
(
Descriptor
.
Extensions
[
38
]);
pb
::
GeneratedRepeatExtension
<
pb
::
ByteString
>.
CreateInstance
(
Descriptor
.
Extensions
[
38
]);
public
const
int
RepeatedGroupExtensionFieldNumber
=
46
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
RepeatedGroup_extension
>>
RepeatedGroupExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
RepeatedGroup_extension
>>
RepeatedGroupExtension
=
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
RepeatedGroup_extension
>.
CreateInstance
(
Descriptor
.
Extensions
[
39
]);
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
RepeatedGroup_extension
>.
CreateInstance
(
Descriptor
.
Extensions
[
39
]);
public
const
int
RepeatedNestedMessageExtensionFieldNumber
=
48
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>>
RepeatedNestedMessageExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>>
RepeatedNestedMessageExtension
=
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
40
]);
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
40
]);
public
const
int
RepeatedForeignMessageExtensionFieldNumber
=
49
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>>
RepeatedForeignMessageExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>>
RepeatedForeignMessageExtension
=
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
41
]);
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
41
]);
public
const
int
RepeatedImportMessageExtensionFieldNumber
=
50
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>>
RepeatedImportMessageExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>>
RepeatedImportMessageExtension
=
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
42
]);
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>.
CreateInstance
(
Descriptor
.
Extensions
[
42
]);
public
const
int
RepeatedNestedEnumExtensionFieldNumber
=
51
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>>
RepeatedNestedEnumExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>>
RepeatedNestedEnumExtension
=
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
43
]);
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
43
]);
public
const
int
RepeatedForeignEnumExtensionFieldNumber
=
52
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>>
RepeatedForeignEnumExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>>
RepeatedForeignEnumExtension
=
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
44
]);
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
44
]);
public
const
int
RepeatedImportEnumExtensionFieldNumber
=
53
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>>
RepeatedImportEnumExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>>
RepeatedImportEnumExtension
=
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
45
]);
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
45
]);
public
const
int
RepeatedStringPieceExtensionFieldNumber
=
54
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
string
>>
RepeatedStringPieceExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
string
>>
RepeatedStringPieceExtension
=
pb
::
GeneratedRepeatExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
46
]);
pb
::
GeneratedRepeatExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
46
]);
public
const
int
RepeatedCordExtensionFieldNumber
=
55
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
string
>>
RepeatedCordExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
string
>>
RepeatedCordExtension
=
pb
::
GeneratedRepeatExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
47
]);
pb
::
GeneratedRepeatExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
47
]);
public
const
int
DefaultInt32ExtensionFieldNumber
=
61
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
DefaultInt32Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
DefaultInt32Extension
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
48
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
48
]);
public
const
int
DefaultInt64ExtensionFieldNumber
=
62
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
DefaultInt64Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
DefaultInt64Extension
=
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
49
]);
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
49
]);
public
const
int
DefaultUint32ExtensionFieldNumber
=
63
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
DefaultUint32Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
DefaultUint32Extension
=
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
50
]);
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
50
]);
public
const
int
DefaultUint64ExtensionFieldNumber
=
64
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
DefaultUint64Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
DefaultUint64Extension
=
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
51
]);
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
51
]);
public
const
int
DefaultSint32ExtensionFieldNumber
=
65
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
DefaultSint32Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
DefaultSint32Extension
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
52
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
52
]);
public
const
int
DefaultSint64ExtensionFieldNumber
=
66
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
DefaultSint64Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
DefaultSint64Extension
=
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
53
]);
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
53
]);
public
const
int
DefaultFixed32ExtensionFieldNumber
=
67
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
DefaultFixed32Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
uint
>
DefaultFixed32Extension
=
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
54
]);
pb
::
GeneratedSingleExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
54
]);
public
const
int
DefaultFixed64ExtensionFieldNumber
=
68
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
DefaultFixed64Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
ulong
>
DefaultFixed64Extension
=
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
55
]);
pb
::
GeneratedSingleExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
55
]);
public
const
int
DefaultSfixed32ExtensionFieldNumber
=
69
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
DefaultSfixed32Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
DefaultSfixed32Extension
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
56
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
56
]);
public
const
int
DefaultSfixed64ExtensionFieldNumber
=
70
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
DefaultSfixed64Extension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
long
>
DefaultSfixed64Extension
=
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
57
]);
pb
::
GeneratedSingleExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
57
]);
public
const
int
DefaultFloatExtensionFieldNumber
=
71
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
float
>
DefaultFloatExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
float
>
DefaultFloatExtension
=
pb
::
GeneratedSingleExtension
<
float
>.
CreateInstance
(
Descriptor
.
Extensions
[
58
]);
pb
::
GeneratedSingleExtension
<
float
>.
CreateInstance
(
Descriptor
.
Extensions
[
58
]);
public
const
int
DefaultDoubleExtensionFieldNumber
=
72
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
double
>
DefaultDoubleExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
double
>
DefaultDoubleExtension
=
pb
::
GeneratedSingleExtension
<
double
>.
CreateInstance
(
Descriptor
.
Extensions
[
59
]);
pb
::
GeneratedSingleExtension
<
double
>.
CreateInstance
(
Descriptor
.
Extensions
[
59
]);
public
const
int
DefaultBoolExtensionFieldNumber
=
73
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
bool
>
DefaultBoolExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
bool
>
DefaultBoolExtension
=
pb
::
GeneratedSingleExtension
<
bool
>.
CreateInstance
(
Descriptor
.
Extensions
[
60
]);
pb
::
GeneratedSingleExtension
<
bool
>.
CreateInstance
(
Descriptor
.
Extensions
[
60
]);
public
const
int
DefaultStringExtensionFieldNumber
=
74
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
DefaultStringExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
DefaultStringExtension
=
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
61
]);
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
61
]);
public
const
int
DefaultBytesExtensionFieldNumber
=
75
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
pb
::
ByteString
>
DefaultBytesExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
pb
::
ByteString
>
DefaultBytesExtension
=
pb
::
GeneratedSingleExtension
<
pb
::
ByteString
>.
CreateInstance
(
Descriptor
.
Extensions
[
62
]);
pb
::
GeneratedSingleExtension
<
pb
::
ByteString
>.
CreateInstance
(
Descriptor
.
Extensions
[
62
]);
public
const
int
DefaultNestedEnumExtensionFieldNumber
=
81
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>
DefaultNestedEnumExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>
DefaultNestedEnumExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
63
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
63
]);
public
const
int
DefaultForeignEnumExtensionFieldNumber
=
82
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
DefaultForeignEnumExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
DefaultForeignEnumExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
64
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
64
]);
public
const
int
DefaultImportEnumExtensionFieldNumber
=
83
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>
DefaultImportEnumExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>
DefaultImportEnumExtension
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
65
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
65
]);
public
const
int
DefaultStringPieceExtensionFieldNumber
=
84
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
DefaultStringPieceExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
DefaultStringPieceExtension
=
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
66
]);
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
66
]);
public
const
int
DefaultCordExtensionFieldNumber
=
85
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
DefaultCordExtension
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
DefaultCordExtension
=
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
67
]);
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
67
]);
public
const
int
MyExtensionStringFieldNumber
=
50
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
MyExtensionString
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
string
>
MyExtensionString
=
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
68
]);
pb
::
GeneratedSingleExtension
<
string
>.
CreateInstance
(
Descriptor
.
Extensions
[
68
]);
public
const
int
MyExtensionIntFieldNumber
=
5
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
MyExtensionInt
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
int
>
MyExtensionInt
=
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
69
]);
pb
::
GeneratedSingleExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
69
]);
public
const
int
PackedInt32ExtensionFieldNumber
=
90
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
PackedInt32Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
PackedInt32Extension
=
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
70
]);
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
70
]);
public
const
int
PackedInt64ExtensionFieldNumber
=
91
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
PackedInt64Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
PackedInt64Extension
=
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
71
]);
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
71
]);
public
const
int
PackedUint32ExtensionFieldNumber
=
92
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
uint
>>
PackedUint32Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
uint
>>
PackedUint32Extension
=
pb
::
GeneratedRepeatExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
72
]);
pb
::
GeneratedRepeatExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
72
]);
public
const
int
PackedUint64ExtensionFieldNumber
=
93
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
ulong
>>
PackedUint64Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
ulong
>>
PackedUint64Extension
=
pb
::
GeneratedRepeatExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
73
]);
pb
::
GeneratedRepeatExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
73
]);
public
const
int
PackedSint32ExtensionFieldNumber
=
94
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
PackedSint32Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
PackedSint32Extension
=
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
74
]);
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
74
]);
public
const
int
PackedSint64ExtensionFieldNumber
=
95
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
PackedSint64Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
PackedSint64Extension
=
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
75
]);
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
75
]);
public
const
int
PackedFixed32ExtensionFieldNumber
=
96
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
uint
>>
PackedFixed32Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
uint
>>
PackedFixed32Extension
=
pb
::
GeneratedRepeatExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
76
]);
pb
::
GeneratedRepeatExtension
<
uint
>.
CreateInstance
(
Descriptor
.
Extensions
[
76
]);
public
const
int
PackedFixed64ExtensionFieldNumber
=
97
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
ulong
>>
PackedFixed64Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
ulong
>>
PackedFixed64Extension
=
pb
::
GeneratedRepeatExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
77
]);
pb
::
GeneratedRepeatExtension
<
ulong
>.
CreateInstance
(
Descriptor
.
Extensions
[
77
]);
public
const
int
PackedSfixed32ExtensionFieldNumber
=
98
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
PackedSfixed32Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
int
>>
PackedSfixed32Extension
=
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
78
]);
pb
::
GeneratedRepeatExtension
<
int
>.
CreateInstance
(
Descriptor
.
Extensions
[
78
]);
public
const
int
PackedSfixed64ExtensionFieldNumber
=
99
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
PackedSfixed64Extension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
long
>>
PackedSfixed64Extension
=
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
79
]);
pb
::
GeneratedRepeatExtension
<
long
>.
CreateInstance
(
Descriptor
.
Extensions
[
79
]);
public
const
int
PackedFloatExtensionFieldNumber
=
100
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
float
>>
PackedFloatExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
float
>>
PackedFloatExtension
=
pb
::
GeneratedRepeatExtension
<
float
>.
CreateInstance
(
Descriptor
.
Extensions
[
80
]);
pb
::
GeneratedRepeatExtension
<
float
>.
CreateInstance
(
Descriptor
.
Extensions
[
80
]);
public
const
int
PackedDoubleExtensionFieldNumber
=
101
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
double
>>
PackedDoubleExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
double
>>
PackedDoubleExtension
=
pb
::
GeneratedRepeatExtension
<
double
>.
CreateInstance
(
Descriptor
.
Extensions
[
81
]);
pb
::
GeneratedRepeatExtension
<
double
>.
CreateInstance
(
Descriptor
.
Extensions
[
81
]);
public
const
int
PackedBoolExtensionFieldNumber
=
102
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
bool
>>
PackedBoolExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
bool
>>
PackedBoolExtension
=
pb
::
GeneratedRepeatExtension
<
bool
>.
CreateInstance
(
Descriptor
.
Extensions
[
82
]);
pb
::
GeneratedRepeatExtension
<
bool
>.
CreateInstance
(
Descriptor
.
Extensions
[
82
]);
public
const
int
PackedEnumExtensionFieldNumber
=
103
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>>
PackedEnumExtension
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>>
PackedEnumExtension
=
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
83
]);
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>.
CreateInstance
(
Descriptor
.
Extensions
[
83
]);
...
@@ -775,6 +859,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -775,6 +859,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestAllTypes_NestedMessage__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestAllTypes_NestedMessage__FieldAccessorTable
;
}
}
}
public
const
int
BbFieldNumber
=
1
;
private
bool
hasBb
;
private
bool
hasBb
;
private
int
bb_
=
0
;
private
int
bb_
=
0
;
public
bool
HasBb
{
public
bool
HasBb
{
...
@@ -976,6 +1061,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -976,6 +1061,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestAllTypes_OptionalGroup__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestAllTypes_OptionalGroup__FieldAccessorTable
;
}
}
}
public
const
int
AFieldNumber
=
17
;
private
bool
hasA
;
private
bool
hasA
;
private
int
a_
=
0
;
private
int
a_
=
0
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -1177,6 +1263,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1177,6 +1263,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestAllTypes_RepeatedGroup__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestAllTypes_RepeatedGroup__FieldAccessorTable
;
}
}
}
public
const
int
AFieldNumber
=
47
;
private
bool
hasA
;
private
bool
hasA
;
private
int
a_
=
0
;
private
int
a_
=
0
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -1359,6 +1446,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1359,6 +1446,7 @@ namespace Google.ProtocolBuffers.TestProtos {
}
}
#
endregion
#
endregion
public
const
int
OptionalInt32FieldNumber
=
1
;
private
bool
hasOptionalInt32
;
private
bool
hasOptionalInt32
;
private
int
optionalInt32_
=
0
;
private
int
optionalInt32_
=
0
;
public
bool
HasOptionalInt32
{
public
bool
HasOptionalInt32
{
...
@@ -1368,6 +1456,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1368,6 +1456,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalInt32_
;
}
get
{
return
optionalInt32_
;
}
}
}
public
const
int
OptionalInt64FieldNumber
=
2
;
private
bool
hasOptionalInt64
;
private
bool
hasOptionalInt64
;
private
long
optionalInt64_
=
0L
;
private
long
optionalInt64_
=
0L
;
public
bool
HasOptionalInt64
{
public
bool
HasOptionalInt64
{
...
@@ -1377,6 +1466,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1377,6 +1466,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalInt64_
;
}
get
{
return
optionalInt64_
;
}
}
}
public
const
int
OptionalUint32FieldNumber
=
3
;
private
bool
hasOptionalUint32
;
private
bool
hasOptionalUint32
;
private
uint
optionalUint32_
=
0
;
private
uint
optionalUint32_
=
0
;
public
bool
HasOptionalUint32
{
public
bool
HasOptionalUint32
{
...
@@ -1386,6 +1476,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1386,6 +1476,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalUint32_
;
}
get
{
return
optionalUint32_
;
}
}
}
public
const
int
OptionalUint64FieldNumber
=
4
;
private
bool
hasOptionalUint64
;
private
bool
hasOptionalUint64
;
private
ulong
optionalUint64_
=
0U
L
;
private
ulong
optionalUint64_
=
0U
L
;
public
bool
HasOptionalUint64
{
public
bool
HasOptionalUint64
{
...
@@ -1395,6 +1486,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1395,6 +1486,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalUint64_
;
}
get
{
return
optionalUint64_
;
}
}
}
public
const
int
OptionalSint32FieldNumber
=
5
;
private
bool
hasOptionalSint32
;
private
bool
hasOptionalSint32
;
private
int
optionalSint32_
=
0
;
private
int
optionalSint32_
=
0
;
public
bool
HasOptionalSint32
{
public
bool
HasOptionalSint32
{
...
@@ -1404,6 +1496,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1404,6 +1496,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalSint32_
;
}
get
{
return
optionalSint32_
;
}
}
}
public
const
int
OptionalSint64FieldNumber
=
6
;
private
bool
hasOptionalSint64
;
private
bool
hasOptionalSint64
;
private
long
optionalSint64_
=
0
;
private
long
optionalSint64_
=
0
;
public
bool
HasOptionalSint64
{
public
bool
HasOptionalSint64
{
...
@@ -1413,6 +1506,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1413,6 +1506,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalSint64_
;
}
get
{
return
optionalSint64_
;
}
}
}
public
const
int
OptionalFixed32FieldNumber
=
7
;
private
bool
hasOptionalFixed32
;
private
bool
hasOptionalFixed32
;
private
uint
optionalFixed32_
=
0
;
private
uint
optionalFixed32_
=
0
;
public
bool
HasOptionalFixed32
{
public
bool
HasOptionalFixed32
{
...
@@ -1422,6 +1516,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1422,6 +1516,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalFixed32_
;
}
get
{
return
optionalFixed32_
;
}
}
}
public
const
int
OptionalFixed64FieldNumber
=
8
;
private
bool
hasOptionalFixed64
;
private
bool
hasOptionalFixed64
;
private
ulong
optionalFixed64_
=
0
;
private
ulong
optionalFixed64_
=
0
;
public
bool
HasOptionalFixed64
{
public
bool
HasOptionalFixed64
{
...
@@ -1431,6 +1526,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1431,6 +1526,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalFixed64_
;
}
get
{
return
optionalFixed64_
;
}
}
}
public
const
int
OptionalSfixed32FieldNumber
=
9
;
private
bool
hasOptionalSfixed32
;
private
bool
hasOptionalSfixed32
;
private
int
optionalSfixed32_
=
0
;
private
int
optionalSfixed32_
=
0
;
public
bool
HasOptionalSfixed32
{
public
bool
HasOptionalSfixed32
{
...
@@ -1440,6 +1536,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1440,6 +1536,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalSfixed32_
;
}
get
{
return
optionalSfixed32_
;
}
}
}
public
const
int
OptionalSfixed64FieldNumber
=
10
;
private
bool
hasOptionalSfixed64
;
private
bool
hasOptionalSfixed64
;
private
long
optionalSfixed64_
=
0
;
private
long
optionalSfixed64_
=
0
;
public
bool
HasOptionalSfixed64
{
public
bool
HasOptionalSfixed64
{
...
@@ -1449,6 +1546,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1449,6 +1546,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalSfixed64_
;
}
get
{
return
optionalSfixed64_
;
}
}
}
public
const
int
OptionalFloatFieldNumber
=
11
;
private
bool
hasOptionalFloat
;
private
bool
hasOptionalFloat
;
private
float
optionalFloat_
=
0F
;
private
float
optionalFloat_
=
0F
;
public
bool
HasOptionalFloat
{
public
bool
HasOptionalFloat
{
...
@@ -1458,6 +1556,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1458,6 +1556,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalFloat_
;
}
get
{
return
optionalFloat_
;
}
}
}
public
const
int
OptionalDoubleFieldNumber
=
12
;
private
bool
hasOptionalDouble
;
private
bool
hasOptionalDouble
;
private
double
optionalDouble_
=
0D
;
private
double
optionalDouble_
=
0D
;
public
bool
HasOptionalDouble
{
public
bool
HasOptionalDouble
{
...
@@ -1467,6 +1566,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1467,6 +1566,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalDouble_
;
}
get
{
return
optionalDouble_
;
}
}
}
public
const
int
OptionalBoolFieldNumber
=
13
;
private
bool
hasOptionalBool
;
private
bool
hasOptionalBool
;
private
bool
optionalBool_
=
false
;
private
bool
optionalBool_
=
false
;
public
bool
HasOptionalBool
{
public
bool
HasOptionalBool
{
...
@@ -1476,6 +1576,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1476,6 +1576,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalBool_
;
}
get
{
return
optionalBool_
;
}
}
}
public
const
int
OptionalStringFieldNumber
=
14
;
private
bool
hasOptionalString
;
private
bool
hasOptionalString
;
private
string
optionalString_
=
""
;
private
string
optionalString_
=
""
;
public
bool
HasOptionalString
{
public
bool
HasOptionalString
{
...
@@ -1485,6 +1586,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1485,6 +1586,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalString_
;
}
get
{
return
optionalString_
;
}
}
}
public
const
int
OptionalBytesFieldNumber
=
15
;
private
bool
hasOptionalBytes
;
private
bool
hasOptionalBytes
;
private
pb
::
ByteString
optionalBytes_
=
pb
::
ByteString
.
Empty
;
private
pb
::
ByteString
optionalBytes_
=
pb
::
ByteString
.
Empty
;
public
bool
HasOptionalBytes
{
public
bool
HasOptionalBytes
{
...
@@ -1494,6 +1596,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1494,6 +1596,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalBytes_
;
}
get
{
return
optionalBytes_
;
}
}
}
public
const
int
OptionalGroupFieldNumber
=
16
;
private
bool
hasOptionalGroup
;
private
bool
hasOptionalGroup
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
OptionalGroup
optionalGroup_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
OptionalGroup
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
OptionalGroup
optionalGroup_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
OptionalGroup
.
DefaultInstance
;
public
bool
HasOptionalGroup
{
public
bool
HasOptionalGroup
{
...
@@ -1503,6 +1606,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1503,6 +1606,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalGroup_
;
}
get
{
return
optionalGroup_
;
}
}
}
public
const
int
OptionalNestedMessageFieldNumber
=
18
;
private
bool
hasOptionalNestedMessage
;
private
bool
hasOptionalNestedMessage
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
optionalNestedMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
optionalNestedMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
.
DefaultInstance
;
public
bool
HasOptionalNestedMessage
{
public
bool
HasOptionalNestedMessage
{
...
@@ -1512,6 +1616,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1512,6 +1616,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalNestedMessage_
;
}
get
{
return
optionalNestedMessage_
;
}
}
}
public
const
int
OptionalForeignMessageFieldNumber
=
19
;
private
bool
hasOptionalForeignMessage
;
private
bool
hasOptionalForeignMessage
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
optionalForeignMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
optionalForeignMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
.
DefaultInstance
;
public
bool
HasOptionalForeignMessage
{
public
bool
HasOptionalForeignMessage
{
...
@@ -1521,6 +1626,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1521,6 +1626,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalForeignMessage_
;
}
get
{
return
optionalForeignMessage_
;
}
}
}
public
const
int
OptionalImportMessageFieldNumber
=
20
;
private
bool
hasOptionalImportMessage
;
private
bool
hasOptionalImportMessage
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
optionalImportMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
optionalImportMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
.
DefaultInstance
;
public
bool
HasOptionalImportMessage
{
public
bool
HasOptionalImportMessage
{
...
@@ -1530,6 +1636,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1530,6 +1636,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalImportMessage_
;
}
get
{
return
optionalImportMessage_
;
}
}
}
public
const
int
OptionalNestedEnumFieldNumber
=
21
;
private
bool
hasOptionalNestedEnum
;
private
bool
hasOptionalNestedEnum
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
optionalNestedEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
.
FOO
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
optionalNestedEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
.
FOO
;
public
bool
HasOptionalNestedEnum
{
public
bool
HasOptionalNestedEnum
{
...
@@ -1539,6 +1646,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1539,6 +1646,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalNestedEnum_
;
}
get
{
return
optionalNestedEnum_
;
}
}
}
public
const
int
OptionalForeignEnumFieldNumber
=
22
;
private
bool
hasOptionalForeignEnum
;
private
bool
hasOptionalForeignEnum
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
optionalForeignEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
.
FOREIGN_FOO
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
optionalForeignEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
.
FOREIGN_FOO
;
public
bool
HasOptionalForeignEnum
{
public
bool
HasOptionalForeignEnum
{
...
@@ -1548,6 +1656,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1548,6 +1656,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalForeignEnum_
;
}
get
{
return
optionalForeignEnum_
;
}
}
}
public
const
int
OptionalImportEnumFieldNumber
=
23
;
private
bool
hasOptionalImportEnum
;
private
bool
hasOptionalImportEnum
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
optionalImportEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
.
IMPORT_FOO
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
optionalImportEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
.
IMPORT_FOO
;
public
bool
HasOptionalImportEnum
{
public
bool
HasOptionalImportEnum
{
...
@@ -1557,6 +1666,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1557,6 +1666,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalImportEnum_
;
}
get
{
return
optionalImportEnum_
;
}
}
}
public
const
int
OptionalStringPieceFieldNumber
=
24
;
private
bool
hasOptionalStringPiece
;
private
bool
hasOptionalStringPiece
;
private
string
optionalStringPiece_
=
""
;
private
string
optionalStringPiece_
=
""
;
public
bool
HasOptionalStringPiece
{
public
bool
HasOptionalStringPiece
{
...
@@ -1566,6 +1676,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1566,6 +1676,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalStringPiece_
;
}
get
{
return
optionalStringPiece_
;
}
}
}
public
const
int
OptionalCordFieldNumber
=
25
;
private
bool
hasOptionalCord
;
private
bool
hasOptionalCord
;
private
string
optionalCord_
=
""
;
private
string
optionalCord_
=
""
;
public
bool
HasOptionalCord
{
public
bool
HasOptionalCord
{
...
@@ -1575,6 +1686,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1575,6 +1686,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalCord_
;
}
get
{
return
optionalCord_
;
}
}
}
public
const
int
RepeatedInt32FieldNumber
=
31
;
private
pbc
::
PopsicleList
<
int
>
repeatedInt32_
=
new
pbc
::
PopsicleList
<
int
>();
private
pbc
::
PopsicleList
<
int
>
repeatedInt32_
=
new
pbc
::
PopsicleList
<
int
>();
public
scg
::
IList
<
int
>
RepeatedInt32List
{
public
scg
::
IList
<
int
>
RepeatedInt32List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedInt32_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedInt32_
);
}
...
@@ -1586,6 +1698,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1586,6 +1698,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedInt32_
[
index
];
return
repeatedInt32_
[
index
];
}
}
public
const
int
RepeatedInt64FieldNumber
=
32
;
private
pbc
::
PopsicleList
<
long
>
repeatedInt64_
=
new
pbc
::
PopsicleList
<
long
>();
private
pbc
::
PopsicleList
<
long
>
repeatedInt64_
=
new
pbc
::
PopsicleList
<
long
>();
public
scg
::
IList
<
long
>
RepeatedInt64List
{
public
scg
::
IList
<
long
>
RepeatedInt64List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedInt64_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedInt64_
);
}
...
@@ -1597,6 +1710,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1597,6 +1710,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedInt64_
[
index
];
return
repeatedInt64_
[
index
];
}
}
public
const
int
RepeatedUint32FieldNumber
=
33
;
private
pbc
::
PopsicleList
<
uint
>
repeatedUint32_
=
new
pbc
::
PopsicleList
<
uint
>();
private
pbc
::
PopsicleList
<
uint
>
repeatedUint32_
=
new
pbc
::
PopsicleList
<
uint
>();
public
scg
::
IList
<
uint
>
RepeatedUint32List
{
public
scg
::
IList
<
uint
>
RepeatedUint32List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedUint32_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedUint32_
);
}
...
@@ -1608,6 +1722,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1608,6 +1722,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedUint32_
[
index
];
return
repeatedUint32_
[
index
];
}
}
public
const
int
RepeatedUint64FieldNumber
=
34
;
private
pbc
::
PopsicleList
<
ulong
>
repeatedUint64_
=
new
pbc
::
PopsicleList
<
ulong
>();
private
pbc
::
PopsicleList
<
ulong
>
repeatedUint64_
=
new
pbc
::
PopsicleList
<
ulong
>();
public
scg
::
IList
<
ulong
>
RepeatedUint64List
{
public
scg
::
IList
<
ulong
>
RepeatedUint64List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedUint64_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedUint64_
);
}
...
@@ -1619,6 +1734,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1619,6 +1734,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedUint64_
[
index
];
return
repeatedUint64_
[
index
];
}
}
public
const
int
RepeatedSint32FieldNumber
=
35
;
private
pbc
::
PopsicleList
<
int
>
repeatedSint32_
=
new
pbc
::
PopsicleList
<
int
>();
private
pbc
::
PopsicleList
<
int
>
repeatedSint32_
=
new
pbc
::
PopsicleList
<
int
>();
public
scg
::
IList
<
int
>
RepeatedSint32List
{
public
scg
::
IList
<
int
>
RepeatedSint32List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedSint32_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedSint32_
);
}
...
@@ -1630,6 +1746,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1630,6 +1746,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedSint32_
[
index
];
return
repeatedSint32_
[
index
];
}
}
public
const
int
RepeatedSint64FieldNumber
=
36
;
private
pbc
::
PopsicleList
<
long
>
repeatedSint64_
=
new
pbc
::
PopsicleList
<
long
>();
private
pbc
::
PopsicleList
<
long
>
repeatedSint64_
=
new
pbc
::
PopsicleList
<
long
>();
public
scg
::
IList
<
long
>
RepeatedSint64List
{
public
scg
::
IList
<
long
>
RepeatedSint64List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedSint64_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedSint64_
);
}
...
@@ -1641,6 +1758,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1641,6 +1758,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedSint64_
[
index
];
return
repeatedSint64_
[
index
];
}
}
public
const
int
RepeatedFixed32FieldNumber
=
37
;
private
pbc
::
PopsicleList
<
uint
>
repeatedFixed32_
=
new
pbc
::
PopsicleList
<
uint
>();
private
pbc
::
PopsicleList
<
uint
>
repeatedFixed32_
=
new
pbc
::
PopsicleList
<
uint
>();
public
scg
::
IList
<
uint
>
RepeatedFixed32List
{
public
scg
::
IList
<
uint
>
RepeatedFixed32List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedFixed32_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedFixed32_
);
}
...
@@ -1652,6 +1770,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1652,6 +1770,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedFixed32_
[
index
];
return
repeatedFixed32_
[
index
];
}
}
public
const
int
RepeatedFixed64FieldNumber
=
38
;
private
pbc
::
PopsicleList
<
ulong
>
repeatedFixed64_
=
new
pbc
::
PopsicleList
<
ulong
>();
private
pbc
::
PopsicleList
<
ulong
>
repeatedFixed64_
=
new
pbc
::
PopsicleList
<
ulong
>();
public
scg
::
IList
<
ulong
>
RepeatedFixed64List
{
public
scg
::
IList
<
ulong
>
RepeatedFixed64List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedFixed64_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedFixed64_
);
}
...
@@ -1663,6 +1782,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1663,6 +1782,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedFixed64_
[
index
];
return
repeatedFixed64_
[
index
];
}
}
public
const
int
RepeatedSfixed32FieldNumber
=
39
;
private
pbc
::
PopsicleList
<
int
>
repeatedSfixed32_
=
new
pbc
::
PopsicleList
<
int
>();
private
pbc
::
PopsicleList
<
int
>
repeatedSfixed32_
=
new
pbc
::
PopsicleList
<
int
>();
public
scg
::
IList
<
int
>
RepeatedSfixed32List
{
public
scg
::
IList
<
int
>
RepeatedSfixed32List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedSfixed32_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedSfixed32_
);
}
...
@@ -1674,6 +1794,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1674,6 +1794,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedSfixed32_
[
index
];
return
repeatedSfixed32_
[
index
];
}
}
public
const
int
RepeatedSfixed64FieldNumber
=
40
;
private
pbc
::
PopsicleList
<
long
>
repeatedSfixed64_
=
new
pbc
::
PopsicleList
<
long
>();
private
pbc
::
PopsicleList
<
long
>
repeatedSfixed64_
=
new
pbc
::
PopsicleList
<
long
>();
public
scg
::
IList
<
long
>
RepeatedSfixed64List
{
public
scg
::
IList
<
long
>
RepeatedSfixed64List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedSfixed64_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedSfixed64_
);
}
...
@@ -1685,6 +1806,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1685,6 +1806,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedSfixed64_
[
index
];
return
repeatedSfixed64_
[
index
];
}
}
public
const
int
RepeatedFloatFieldNumber
=
41
;
private
pbc
::
PopsicleList
<
float
>
repeatedFloat_
=
new
pbc
::
PopsicleList
<
float
>();
private
pbc
::
PopsicleList
<
float
>
repeatedFloat_
=
new
pbc
::
PopsicleList
<
float
>();
public
scg
::
IList
<
float
>
RepeatedFloatList
{
public
scg
::
IList
<
float
>
RepeatedFloatList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedFloat_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedFloat_
);
}
...
@@ -1696,6 +1818,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1696,6 +1818,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedFloat_
[
index
];
return
repeatedFloat_
[
index
];
}
}
public
const
int
RepeatedDoubleFieldNumber
=
42
;
private
pbc
::
PopsicleList
<
double
>
repeatedDouble_
=
new
pbc
::
PopsicleList
<
double
>();
private
pbc
::
PopsicleList
<
double
>
repeatedDouble_
=
new
pbc
::
PopsicleList
<
double
>();
public
scg
::
IList
<
double
>
RepeatedDoubleList
{
public
scg
::
IList
<
double
>
RepeatedDoubleList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedDouble_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedDouble_
);
}
...
@@ -1707,6 +1830,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1707,6 +1830,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedDouble_
[
index
];
return
repeatedDouble_
[
index
];
}
}
public
const
int
RepeatedBoolFieldNumber
=
43
;
private
pbc
::
PopsicleList
<
bool
>
repeatedBool_
=
new
pbc
::
PopsicleList
<
bool
>();
private
pbc
::
PopsicleList
<
bool
>
repeatedBool_
=
new
pbc
::
PopsicleList
<
bool
>();
public
scg
::
IList
<
bool
>
RepeatedBoolList
{
public
scg
::
IList
<
bool
>
RepeatedBoolList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedBool_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedBool_
);
}
...
@@ -1718,6 +1842,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1718,6 +1842,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedBool_
[
index
];
return
repeatedBool_
[
index
];
}
}
public
const
int
RepeatedStringFieldNumber
=
44
;
private
pbc
::
PopsicleList
<
string
>
repeatedString_
=
new
pbc
::
PopsicleList
<
string
>();
private
pbc
::
PopsicleList
<
string
>
repeatedString_
=
new
pbc
::
PopsicleList
<
string
>();
public
scg
::
IList
<
string
>
RepeatedStringList
{
public
scg
::
IList
<
string
>
RepeatedStringList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedString_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedString_
);
}
...
@@ -1729,6 +1854,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1729,6 +1854,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedString_
[
index
];
return
repeatedString_
[
index
];
}
}
public
const
int
RepeatedBytesFieldNumber
=
45
;
private
pbc
::
PopsicleList
<
pb
::
ByteString
>
repeatedBytes_
=
new
pbc
::
PopsicleList
<
pb
::
ByteString
>();
private
pbc
::
PopsicleList
<
pb
::
ByteString
>
repeatedBytes_
=
new
pbc
::
PopsicleList
<
pb
::
ByteString
>();
public
scg
::
IList
<
pb
::
ByteString
>
RepeatedBytesList
{
public
scg
::
IList
<
pb
::
ByteString
>
RepeatedBytesList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedBytes_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedBytes_
);
}
...
@@ -1740,6 +1866,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1740,6 +1866,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedBytes_
[
index
];
return
repeatedBytes_
[
index
];
}
}
public
const
int
RepeatedGroupFieldNumber
=
46
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
RepeatedGroup
>
repeatedGroup_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
RepeatedGroup
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
RepeatedGroup
>
repeatedGroup_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
RepeatedGroup
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
RepeatedGroup
>
RepeatedGroupList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
RepeatedGroup
>
RepeatedGroupList
{
get
{
return
repeatedGroup_
;
}
get
{
return
repeatedGroup_
;
}
...
@@ -1751,6 +1878,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1751,6 +1878,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedGroup_
[
index
];
return
repeatedGroup_
[
index
];
}
}
public
const
int
RepeatedNestedMessageFieldNumber
=
48
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>
repeatedNestedMessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>
repeatedNestedMessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>
RepeatedNestedMessageList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
>
RepeatedNestedMessageList
{
get
{
return
repeatedNestedMessage_
;
}
get
{
return
repeatedNestedMessage_
;
}
...
@@ -1762,6 +1890,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1762,6 +1890,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedNestedMessage_
[
index
];
return
repeatedNestedMessage_
[
index
];
}
}
public
const
int
RepeatedForeignMessageFieldNumber
=
49
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
repeatedForeignMessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
repeatedForeignMessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
RepeatedForeignMessageList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
RepeatedForeignMessageList
{
get
{
return
repeatedForeignMessage_
;
}
get
{
return
repeatedForeignMessage_
;
}
...
@@ -1773,6 +1902,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1773,6 +1902,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedForeignMessage_
[
index
];
return
repeatedForeignMessage_
[
index
];
}
}
public
const
int
RepeatedImportMessageFieldNumber
=
50
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>
repeatedImportMessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>
repeatedImportMessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>
RepeatedImportMessageList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportMessage
>
RepeatedImportMessageList
{
get
{
return
repeatedImportMessage_
;
}
get
{
return
repeatedImportMessage_
;
}
...
@@ -1784,6 +1914,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1784,6 +1914,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedImportMessage_
[
index
];
return
repeatedImportMessage_
[
index
];
}
}
public
const
int
RepeatedNestedEnumFieldNumber
=
51
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>
repeatedNestedEnum_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>
repeatedNestedEnum_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>
RepeatedNestedEnumList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
>
RepeatedNestedEnumList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedNestedEnum_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedNestedEnum_
);
}
...
@@ -1795,6 +1926,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1795,6 +1926,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedNestedEnum_
[
index
];
return
repeatedNestedEnum_
[
index
];
}
}
public
const
int
RepeatedForeignEnumFieldNumber
=
52
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
repeatedForeignEnum_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
repeatedForeignEnum_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
RepeatedForeignEnumList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
RepeatedForeignEnumList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedForeignEnum_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedForeignEnum_
);
}
...
@@ -1806,6 +1938,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1806,6 +1938,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedForeignEnum_
[
index
];
return
repeatedForeignEnum_
[
index
];
}
}
public
const
int
RepeatedImportEnumFieldNumber
=
53
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>
repeatedImportEnum_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>
repeatedImportEnum_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>
RepeatedImportEnumList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
>
RepeatedImportEnumList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedImportEnum_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedImportEnum_
);
}
...
@@ -1817,6 +1950,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1817,6 +1950,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedImportEnum_
[
index
];
return
repeatedImportEnum_
[
index
];
}
}
public
const
int
RepeatedStringPieceFieldNumber
=
54
;
private
pbc
::
PopsicleList
<
string
>
repeatedStringPiece_
=
new
pbc
::
PopsicleList
<
string
>();
private
pbc
::
PopsicleList
<
string
>
repeatedStringPiece_
=
new
pbc
::
PopsicleList
<
string
>();
public
scg
::
IList
<
string
>
RepeatedStringPieceList
{
public
scg
::
IList
<
string
>
RepeatedStringPieceList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedStringPiece_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedStringPiece_
);
}
...
@@ -1828,6 +1962,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1828,6 +1962,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedStringPiece_
[
index
];
return
repeatedStringPiece_
[
index
];
}
}
public
const
int
RepeatedCordFieldNumber
=
55
;
private
pbc
::
PopsicleList
<
string
>
repeatedCord_
=
new
pbc
::
PopsicleList
<
string
>();
private
pbc
::
PopsicleList
<
string
>
repeatedCord_
=
new
pbc
::
PopsicleList
<
string
>();
public
scg
::
IList
<
string
>
RepeatedCordList
{
public
scg
::
IList
<
string
>
RepeatedCordList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedCord_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedCord_
);
}
...
@@ -1839,6 +1974,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1839,6 +1974,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedCord_
[
index
];
return
repeatedCord_
[
index
];
}
}
public
const
int
DefaultInt32FieldNumber
=
61
;
private
bool
hasDefaultInt32
;
private
bool
hasDefaultInt32
;
private
int
defaultInt32_
=
41
;
private
int
defaultInt32_
=
41
;
public
bool
HasDefaultInt32
{
public
bool
HasDefaultInt32
{
...
@@ -1848,6 +1984,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1848,6 +1984,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultInt32_
;
}
get
{
return
defaultInt32_
;
}
}
}
public
const
int
DefaultInt64FieldNumber
=
62
;
private
bool
hasDefaultInt64
;
private
bool
hasDefaultInt64
;
private
long
defaultInt64_
=
42L
;
private
long
defaultInt64_
=
42L
;
public
bool
HasDefaultInt64
{
public
bool
HasDefaultInt64
{
...
@@ -1857,6 +1994,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1857,6 +1994,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultInt64_
;
}
get
{
return
defaultInt64_
;
}
}
}
public
const
int
DefaultUint32FieldNumber
=
63
;
private
bool
hasDefaultUint32
;
private
bool
hasDefaultUint32
;
private
uint
defaultUint32_
=
43
;
private
uint
defaultUint32_
=
43
;
public
bool
HasDefaultUint32
{
public
bool
HasDefaultUint32
{
...
@@ -1866,6 +2004,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1866,6 +2004,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultUint32_
;
}
get
{
return
defaultUint32_
;
}
}
}
public
const
int
DefaultUint64FieldNumber
=
64
;
private
bool
hasDefaultUint64
;
private
bool
hasDefaultUint64
;
private
ulong
defaultUint64_
=
44U
L
;
private
ulong
defaultUint64_
=
44U
L
;
public
bool
HasDefaultUint64
{
public
bool
HasDefaultUint64
{
...
@@ -1875,6 +2014,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1875,6 +2014,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultUint64_
;
}
get
{
return
defaultUint64_
;
}
}
}
public
const
int
DefaultSint32FieldNumber
=
65
;
private
bool
hasDefaultSint32
;
private
bool
hasDefaultSint32
;
private
int
defaultSint32_
=
-
45
;
private
int
defaultSint32_
=
-
45
;
public
bool
HasDefaultSint32
{
public
bool
HasDefaultSint32
{
...
@@ -1884,6 +2024,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1884,6 +2024,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultSint32_
;
}
get
{
return
defaultSint32_
;
}
}
}
public
const
int
DefaultSint64FieldNumber
=
66
;
private
bool
hasDefaultSint64
;
private
bool
hasDefaultSint64
;
private
long
defaultSint64_
=
46
;
private
long
defaultSint64_
=
46
;
public
bool
HasDefaultSint64
{
public
bool
HasDefaultSint64
{
...
@@ -1893,6 +2034,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1893,6 +2034,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultSint64_
;
}
get
{
return
defaultSint64_
;
}
}
}
public
const
int
DefaultFixed32FieldNumber
=
67
;
private
bool
hasDefaultFixed32
;
private
bool
hasDefaultFixed32
;
private
uint
defaultFixed32_
=
47
;
private
uint
defaultFixed32_
=
47
;
public
bool
HasDefaultFixed32
{
public
bool
HasDefaultFixed32
{
...
@@ -1902,6 +2044,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1902,6 +2044,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultFixed32_
;
}
get
{
return
defaultFixed32_
;
}
}
}
public
const
int
DefaultFixed64FieldNumber
=
68
;
private
bool
hasDefaultFixed64
;
private
bool
hasDefaultFixed64
;
private
ulong
defaultFixed64_
=
48
;
private
ulong
defaultFixed64_
=
48
;
public
bool
HasDefaultFixed64
{
public
bool
HasDefaultFixed64
{
...
@@ -1911,6 +2054,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1911,6 +2054,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultFixed64_
;
}
get
{
return
defaultFixed64_
;
}
}
}
public
const
int
DefaultSfixed32FieldNumber
=
69
;
private
bool
hasDefaultSfixed32
;
private
bool
hasDefaultSfixed32
;
private
int
defaultSfixed32_
=
49
;
private
int
defaultSfixed32_
=
49
;
public
bool
HasDefaultSfixed32
{
public
bool
HasDefaultSfixed32
{
...
@@ -1920,6 +2064,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1920,6 +2064,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultSfixed32_
;
}
get
{
return
defaultSfixed32_
;
}
}
}
public
const
int
DefaultSfixed64FieldNumber
=
70
;
private
bool
hasDefaultSfixed64
;
private
bool
hasDefaultSfixed64
;
private
long
defaultSfixed64_
=
-
50
;
private
long
defaultSfixed64_
=
-
50
;
public
bool
HasDefaultSfixed64
{
public
bool
HasDefaultSfixed64
{
...
@@ -1929,6 +2074,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1929,6 +2074,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultSfixed64_
;
}
get
{
return
defaultSfixed64_
;
}
}
}
public
const
int
DefaultFloatFieldNumber
=
71
;
private
bool
hasDefaultFloat
;
private
bool
hasDefaultFloat
;
private
float
defaultFloat_
=
51.5F
;
private
float
defaultFloat_
=
51.5F
;
public
bool
HasDefaultFloat
{
public
bool
HasDefaultFloat
{
...
@@ -1938,6 +2084,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1938,6 +2084,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultFloat_
;
}
get
{
return
defaultFloat_
;
}
}
}
public
const
int
DefaultDoubleFieldNumber
=
72
;
private
bool
hasDefaultDouble
;
private
bool
hasDefaultDouble
;
private
double
defaultDouble_
=
52000D
;
private
double
defaultDouble_
=
52000D
;
public
bool
HasDefaultDouble
{
public
bool
HasDefaultDouble
{
...
@@ -1947,6 +2094,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1947,6 +2094,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultDouble_
;
}
get
{
return
defaultDouble_
;
}
}
}
public
const
int
DefaultBoolFieldNumber
=
73
;
private
bool
hasDefaultBool
;
private
bool
hasDefaultBool
;
private
bool
defaultBool_
=
true
;
private
bool
defaultBool_
=
true
;
public
bool
HasDefaultBool
{
public
bool
HasDefaultBool
{
...
@@ -1956,6 +2104,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1956,6 +2104,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultBool_
;
}
get
{
return
defaultBool_
;
}
}
}
public
const
int
DefaultStringFieldNumber
=
74
;
private
bool
hasDefaultString
;
private
bool
hasDefaultString
;
private
string
defaultString_
=
"hello"
;
private
string
defaultString_
=
"hello"
;
public
bool
HasDefaultString
{
public
bool
HasDefaultString
{
...
@@ -1965,6 +2114,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1965,6 +2114,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultString_
;
}
get
{
return
defaultString_
;
}
}
}
public
const
int
DefaultBytesFieldNumber
=
75
;
private
bool
hasDefaultBytes
;
private
bool
hasDefaultBytes
;
private
pb
::
ByteString
defaultBytes_
=
(
pb
::
ByteString
)
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Descriptor
.
Fields
[
62
].
DefaultValue
;
private
pb
::
ByteString
defaultBytes_
=
(
pb
::
ByteString
)
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Descriptor
.
Fields
[
62
].
DefaultValue
;
public
bool
HasDefaultBytes
{
public
bool
HasDefaultBytes
{
...
@@ -1974,6 +2124,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1974,6 +2124,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultBytes_
;
}
get
{
return
defaultBytes_
;
}
}
}
public
const
int
DefaultNestedEnumFieldNumber
=
81
;
private
bool
hasDefaultNestedEnum
;
private
bool
hasDefaultNestedEnum
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
defaultNestedEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
.
BAR
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
defaultNestedEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedEnum
.
BAR
;
public
bool
HasDefaultNestedEnum
{
public
bool
HasDefaultNestedEnum
{
...
@@ -1983,6 +2134,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1983,6 +2134,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultNestedEnum_
;
}
get
{
return
defaultNestedEnum_
;
}
}
}
public
const
int
DefaultForeignEnumFieldNumber
=
82
;
private
bool
hasDefaultForeignEnum
;
private
bool
hasDefaultForeignEnum
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
defaultForeignEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
.
FOREIGN_BAR
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
defaultForeignEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
.
FOREIGN_BAR
;
public
bool
HasDefaultForeignEnum
{
public
bool
HasDefaultForeignEnum
{
...
@@ -1992,6 +2144,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -1992,6 +2144,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultForeignEnum_
;
}
get
{
return
defaultForeignEnum_
;
}
}
}
public
const
int
DefaultImportEnumFieldNumber
=
83
;
private
bool
hasDefaultImportEnum
;
private
bool
hasDefaultImportEnum
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
defaultImportEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
.
IMPORT_BAR
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
defaultImportEnum_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ImportEnum
.
IMPORT_BAR
;
public
bool
HasDefaultImportEnum
{
public
bool
HasDefaultImportEnum
{
...
@@ -2001,6 +2154,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -2001,6 +2154,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultImportEnum_
;
}
get
{
return
defaultImportEnum_
;
}
}
}
public
const
int
DefaultStringPieceFieldNumber
=
84
;
private
bool
hasDefaultStringPiece
;
private
bool
hasDefaultStringPiece
;
private
string
defaultStringPiece_
=
"abc"
;
private
string
defaultStringPiece_
=
"abc"
;
public
bool
HasDefaultStringPiece
{
public
bool
HasDefaultStringPiece
{
...
@@ -2010,6 +2164,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -2010,6 +2164,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
defaultStringPiece_
;
}
get
{
return
defaultStringPiece_
;
}
}
}
public
const
int
DefaultCordFieldNumber
=
85
;
private
bool
hasDefaultCord
;
private
bool
hasDefaultCord
;
private
string
defaultCord_
=
"123"
;
private
string
defaultCord_
=
"123"
;
public
bool
HasDefaultCord
{
public
bool
HasDefaultCord
{
...
@@ -4872,6 +5027,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -4872,6 +5027,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_ForeignMessage__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_ForeignMessage__FieldAccessorTable
;
}
}
}
public
const
int
CFieldNumber
=
1
;
private
bool
hasC
;
private
bool
hasC
;
private
int
c_
=
0
;
private
int
c_
=
0
;
public
bool
HasC
{
public
bool
HasC
{
...
@@ -5239,6 +5395,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5239,6 +5395,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_OptionalGroup_extension__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_OptionalGroup_extension__FieldAccessorTable
;
}
}
}
public
const
int
AFieldNumber
=
17
;
private
bool
hasA
;
private
bool
hasA
;
private
int
a_
=
0
;
private
int
a_
=
0
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -5440,6 +5597,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5440,6 +5597,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_RepeatedGroup_extension__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_RepeatedGroup_extension__FieldAccessorTable
;
}
}
}
public
const
int
AFieldNumber
=
47
;
private
bool
hasA
;
private
bool
hasA
;
private
int
a_
=
0
;
private
int
a_
=
0
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -5641,11 +5799,14 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5641,11 +5799,14 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestRequired__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestRequired__FieldAccessorTable
;
}
}
}
public
const
int
SingleFieldNumber
=
1000
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>
Single
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>
Single
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
public
const
int
MultiFieldNumber
=
1001
;
public
static
readonly
public
static
readonly
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>>
Multi
=
pb
::
GeneratedExtensionBase
<
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>>
Multi
=
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>.
CreateInstance
(
Descriptor
.
Extensions
[
1
]);
pb
::
GeneratedRepeatExtension
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>.
CreateInstance
(
Descriptor
.
Extensions
[
1
]);
public
const
int
AFieldNumber
=
1
;
private
bool
hasA
;
private
bool
hasA
;
private
int
a_
=
0
;
private
int
a_
=
0
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -5655,6 +5816,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5655,6 +5816,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
a_
;
}
get
{
return
a_
;
}
}
}
public
const
int
Dummy2FieldNumber
=
2
;
private
bool
hasDummy2
;
private
bool
hasDummy2
;
private
int
dummy2_
=
0
;
private
int
dummy2_
=
0
;
public
bool
HasDummy2
{
public
bool
HasDummy2
{
...
@@ -5664,6 +5826,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5664,6 +5826,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy2_
;
}
get
{
return
dummy2_
;
}
}
}
public
const
int
BFieldNumber
=
3
;
private
bool
hasB
;
private
bool
hasB
;
private
int
b_
=
0
;
private
int
b_
=
0
;
public
bool
HasB
{
public
bool
HasB
{
...
@@ -5673,6 +5836,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5673,6 +5836,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
b_
;
}
get
{
return
b_
;
}
}
}
public
const
int
Dummy4FieldNumber
=
4
;
private
bool
hasDummy4
;
private
bool
hasDummy4
;
private
int
dummy4_
=
0
;
private
int
dummy4_
=
0
;
public
bool
HasDummy4
{
public
bool
HasDummy4
{
...
@@ -5682,6 +5846,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5682,6 +5846,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy4_
;
}
get
{
return
dummy4_
;
}
}
}
public
const
int
Dummy5FieldNumber
=
5
;
private
bool
hasDummy5
;
private
bool
hasDummy5
;
private
int
dummy5_
=
0
;
private
int
dummy5_
=
0
;
public
bool
HasDummy5
{
public
bool
HasDummy5
{
...
@@ -5691,6 +5856,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5691,6 +5856,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy5_
;
}
get
{
return
dummy5_
;
}
}
}
public
const
int
Dummy6FieldNumber
=
6
;
private
bool
hasDummy6
;
private
bool
hasDummy6
;
private
int
dummy6_
=
0
;
private
int
dummy6_
=
0
;
public
bool
HasDummy6
{
public
bool
HasDummy6
{
...
@@ -5700,6 +5866,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5700,6 +5866,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy6_
;
}
get
{
return
dummy6_
;
}
}
}
public
const
int
Dummy7FieldNumber
=
7
;
private
bool
hasDummy7
;
private
bool
hasDummy7
;
private
int
dummy7_
=
0
;
private
int
dummy7_
=
0
;
public
bool
HasDummy7
{
public
bool
HasDummy7
{
...
@@ -5709,6 +5876,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5709,6 +5876,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy7_
;
}
get
{
return
dummy7_
;
}
}
}
public
const
int
Dummy8FieldNumber
=
8
;
private
bool
hasDummy8
;
private
bool
hasDummy8
;
private
int
dummy8_
=
0
;
private
int
dummy8_
=
0
;
public
bool
HasDummy8
{
public
bool
HasDummy8
{
...
@@ -5718,6 +5886,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5718,6 +5886,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy8_
;
}
get
{
return
dummy8_
;
}
}
}
public
const
int
Dummy9FieldNumber
=
9
;
private
bool
hasDummy9
;
private
bool
hasDummy9
;
private
int
dummy9_
=
0
;
private
int
dummy9_
=
0
;
public
bool
HasDummy9
{
public
bool
HasDummy9
{
...
@@ -5727,6 +5896,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5727,6 +5896,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy9_
;
}
get
{
return
dummy9_
;
}
}
}
public
const
int
Dummy10FieldNumber
=
10
;
private
bool
hasDummy10
;
private
bool
hasDummy10
;
private
int
dummy10_
=
0
;
private
int
dummy10_
=
0
;
public
bool
HasDummy10
{
public
bool
HasDummy10
{
...
@@ -5736,6 +5906,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5736,6 +5906,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy10_
;
}
get
{
return
dummy10_
;
}
}
}
public
const
int
Dummy11FieldNumber
=
11
;
private
bool
hasDummy11
;
private
bool
hasDummy11
;
private
int
dummy11_
=
0
;
private
int
dummy11_
=
0
;
public
bool
HasDummy11
{
public
bool
HasDummy11
{
...
@@ -5745,6 +5916,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5745,6 +5916,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy11_
;
}
get
{
return
dummy11_
;
}
}
}
public
const
int
Dummy12FieldNumber
=
12
;
private
bool
hasDummy12
;
private
bool
hasDummy12
;
private
int
dummy12_
=
0
;
private
int
dummy12_
=
0
;
public
bool
HasDummy12
{
public
bool
HasDummy12
{
...
@@ -5754,6 +5926,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5754,6 +5926,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy12_
;
}
get
{
return
dummy12_
;
}
}
}
public
const
int
Dummy13FieldNumber
=
13
;
private
bool
hasDummy13
;
private
bool
hasDummy13
;
private
int
dummy13_
=
0
;
private
int
dummy13_
=
0
;
public
bool
HasDummy13
{
public
bool
HasDummy13
{
...
@@ -5763,6 +5936,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5763,6 +5936,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy13_
;
}
get
{
return
dummy13_
;
}
}
}
public
const
int
Dummy14FieldNumber
=
14
;
private
bool
hasDummy14
;
private
bool
hasDummy14
;
private
int
dummy14_
=
0
;
private
int
dummy14_
=
0
;
public
bool
HasDummy14
{
public
bool
HasDummy14
{
...
@@ -5772,6 +5946,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5772,6 +5946,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy14_
;
}
get
{
return
dummy14_
;
}
}
}
public
const
int
Dummy15FieldNumber
=
15
;
private
bool
hasDummy15
;
private
bool
hasDummy15
;
private
int
dummy15_
=
0
;
private
int
dummy15_
=
0
;
public
bool
HasDummy15
{
public
bool
HasDummy15
{
...
@@ -5781,6 +5956,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5781,6 +5956,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy15_
;
}
get
{
return
dummy15_
;
}
}
}
public
const
int
Dummy16FieldNumber
=
16
;
private
bool
hasDummy16
;
private
bool
hasDummy16
;
private
int
dummy16_
=
0
;
private
int
dummy16_
=
0
;
public
bool
HasDummy16
{
public
bool
HasDummy16
{
...
@@ -5790,6 +5966,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5790,6 +5966,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy16_
;
}
get
{
return
dummy16_
;
}
}
}
public
const
int
Dummy17FieldNumber
=
17
;
private
bool
hasDummy17
;
private
bool
hasDummy17
;
private
int
dummy17_
=
0
;
private
int
dummy17_
=
0
;
public
bool
HasDummy17
{
public
bool
HasDummy17
{
...
@@ -5799,6 +5976,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5799,6 +5976,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy17_
;
}
get
{
return
dummy17_
;
}
}
}
public
const
int
Dummy18FieldNumber
=
18
;
private
bool
hasDummy18
;
private
bool
hasDummy18
;
private
int
dummy18_
=
0
;
private
int
dummy18_
=
0
;
public
bool
HasDummy18
{
public
bool
HasDummy18
{
...
@@ -5808,6 +5986,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5808,6 +5986,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy18_
;
}
get
{
return
dummy18_
;
}
}
}
public
const
int
Dummy19FieldNumber
=
19
;
private
bool
hasDummy19
;
private
bool
hasDummy19
;
private
int
dummy19_
=
0
;
private
int
dummy19_
=
0
;
public
bool
HasDummy19
{
public
bool
HasDummy19
{
...
@@ -5817,6 +5996,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5817,6 +5996,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy19_
;
}
get
{
return
dummy19_
;
}
}
}
public
const
int
Dummy20FieldNumber
=
20
;
private
bool
hasDummy20
;
private
bool
hasDummy20
;
private
int
dummy20_
=
0
;
private
int
dummy20_
=
0
;
public
bool
HasDummy20
{
public
bool
HasDummy20
{
...
@@ -5826,6 +6006,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5826,6 +6006,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy20_
;
}
get
{
return
dummy20_
;
}
}
}
public
const
int
Dummy21FieldNumber
=
21
;
private
bool
hasDummy21
;
private
bool
hasDummy21
;
private
int
dummy21_
=
0
;
private
int
dummy21_
=
0
;
public
bool
HasDummy21
{
public
bool
HasDummy21
{
...
@@ -5835,6 +6016,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5835,6 +6016,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy21_
;
}
get
{
return
dummy21_
;
}
}
}
public
const
int
Dummy22FieldNumber
=
22
;
private
bool
hasDummy22
;
private
bool
hasDummy22
;
private
int
dummy22_
=
0
;
private
int
dummy22_
=
0
;
public
bool
HasDummy22
{
public
bool
HasDummy22
{
...
@@ -5844,6 +6026,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5844,6 +6026,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy22_
;
}
get
{
return
dummy22_
;
}
}
}
public
const
int
Dummy23FieldNumber
=
23
;
private
bool
hasDummy23
;
private
bool
hasDummy23
;
private
int
dummy23_
=
0
;
private
int
dummy23_
=
0
;
public
bool
HasDummy23
{
public
bool
HasDummy23
{
...
@@ -5853,6 +6036,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5853,6 +6036,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy23_
;
}
get
{
return
dummy23_
;
}
}
}
public
const
int
Dummy24FieldNumber
=
24
;
private
bool
hasDummy24
;
private
bool
hasDummy24
;
private
int
dummy24_
=
0
;
private
int
dummy24_
=
0
;
public
bool
HasDummy24
{
public
bool
HasDummy24
{
...
@@ -5862,6 +6046,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5862,6 +6046,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy24_
;
}
get
{
return
dummy24_
;
}
}
}
public
const
int
Dummy25FieldNumber
=
25
;
private
bool
hasDummy25
;
private
bool
hasDummy25
;
private
int
dummy25_
=
0
;
private
int
dummy25_
=
0
;
public
bool
HasDummy25
{
public
bool
HasDummy25
{
...
@@ -5871,6 +6056,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5871,6 +6056,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy25_
;
}
get
{
return
dummy25_
;
}
}
}
public
const
int
Dummy26FieldNumber
=
26
;
private
bool
hasDummy26
;
private
bool
hasDummy26
;
private
int
dummy26_
=
0
;
private
int
dummy26_
=
0
;
public
bool
HasDummy26
{
public
bool
HasDummy26
{
...
@@ -5880,6 +6066,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5880,6 +6066,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy26_
;
}
get
{
return
dummy26_
;
}
}
}
public
const
int
Dummy27FieldNumber
=
27
;
private
bool
hasDummy27
;
private
bool
hasDummy27
;
private
int
dummy27_
=
0
;
private
int
dummy27_
=
0
;
public
bool
HasDummy27
{
public
bool
HasDummy27
{
...
@@ -5889,6 +6076,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5889,6 +6076,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy27_
;
}
get
{
return
dummy27_
;
}
}
}
public
const
int
Dummy28FieldNumber
=
28
;
private
bool
hasDummy28
;
private
bool
hasDummy28
;
private
int
dummy28_
=
0
;
private
int
dummy28_
=
0
;
public
bool
HasDummy28
{
public
bool
HasDummy28
{
...
@@ -5898,6 +6086,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5898,6 +6086,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy28_
;
}
get
{
return
dummy28_
;
}
}
}
public
const
int
Dummy29FieldNumber
=
29
;
private
bool
hasDummy29
;
private
bool
hasDummy29
;
private
int
dummy29_
=
0
;
private
int
dummy29_
=
0
;
public
bool
HasDummy29
{
public
bool
HasDummy29
{
...
@@ -5907,6 +6096,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5907,6 +6096,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy29_
;
}
get
{
return
dummy29_
;
}
}
}
public
const
int
Dummy30FieldNumber
=
30
;
private
bool
hasDummy30
;
private
bool
hasDummy30
;
private
int
dummy30_
=
0
;
private
int
dummy30_
=
0
;
public
bool
HasDummy30
{
public
bool
HasDummy30
{
...
@@ -5916,6 +6106,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5916,6 +6106,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy30_
;
}
get
{
return
dummy30_
;
}
}
}
public
const
int
Dummy31FieldNumber
=
31
;
private
bool
hasDummy31
;
private
bool
hasDummy31
;
private
int
dummy31_
=
0
;
private
int
dummy31_
=
0
;
public
bool
HasDummy31
{
public
bool
HasDummy31
{
...
@@ -5925,6 +6116,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5925,6 +6116,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy31_
;
}
get
{
return
dummy31_
;
}
}
}
public
const
int
Dummy32FieldNumber
=
32
;
private
bool
hasDummy32
;
private
bool
hasDummy32
;
private
int
dummy32_
=
0
;
private
int
dummy32_
=
0
;
public
bool
HasDummy32
{
public
bool
HasDummy32
{
...
@@ -5934,6 +6126,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -5934,6 +6126,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
dummy32_
;
}
get
{
return
dummy32_
;
}
}
}
public
const
int
CFieldNumber
=
33
;
private
bool
hasC
;
private
bool
hasC
;
private
int
c_
=
0
;
private
int
c_
=
0
;
public
bool
HasC
{
public
bool
HasC
{
...
@@ -7130,6 +7323,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -7130,6 +7323,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestRequiredForeign__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestRequiredForeign__FieldAccessorTable
;
}
}
}
public
const
int
OptionalMessageFieldNumber
=
1
;
private
bool
hasOptionalMessage
;
private
bool
hasOptionalMessage
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
optionalMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
optionalMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
.
DefaultInstance
;
public
bool
HasOptionalMessage
{
public
bool
HasOptionalMessage
{
...
@@ -7139,6 +7333,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -7139,6 +7333,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
optionalMessage_
;
}
get
{
return
optionalMessage_
;
}
}
}
public
const
int
RepeatedMessageFieldNumber
=
2
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>
repeatedMessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>
repeatedMessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>
RepeatedMessageList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRequired
>
RepeatedMessageList
{
get
{
return
repeatedMessage_
;
}
get
{
return
repeatedMessage_
;
}
...
@@ -7150,6 +7345,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -7150,6 +7345,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedMessage_
[
index
];
return
repeatedMessage_
[
index
];
}
}
public
const
int
DummyFieldNumber
=
3
;
private
bool
hasDummy
;
private
bool
hasDummy
;
private
int
dummy_
=
0
;
private
int
dummy_
=
0
;
public
bool
HasDummy
{
public
bool
HasDummy
{
...
@@ -7465,6 +7661,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -7465,6 +7661,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestForeignNested__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestForeignNested__FieldAccessorTable
;
}
}
}
public
const
int
ForeignNestedFieldNumber
=
1
;
private
bool
hasForeignNested
;
private
bool
hasForeignNested
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
foreignNested_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
foreignNested_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestAllTypes
.
Types
.
NestedMessage
.
DefaultInstance
;
public
bool
HasForeignNested
{
public
bool
HasForeignNested
{
...
@@ -8016,6 +8213,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -8016,6 +8213,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestReallyLargeTagNumber__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestReallyLargeTagNumber__FieldAccessorTable
;
}
}
}
public
const
int
AFieldNumber
=
1
;
private
bool
hasA
;
private
bool
hasA
;
private
int
a_
=
0
;
private
int
a_
=
0
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -8025,6 +8223,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -8025,6 +8223,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
a_
;
}
get
{
return
a_
;
}
}
}
public
const
int
BbFieldNumber
=
268435455
;
private
bool
hasBb
;
private
bool
hasBb
;
private
int
bb_
=
0
;
private
int
bb_
=
0
;
public
bool
HasBb
{
public
bool
HasBb
{
...
@@ -8257,6 +8456,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -8257,6 +8456,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestRecursiveMessage__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestRecursiveMessage__FieldAccessorTable
;
}
}
}
public
const
int
AFieldNumber
=
1
;
private
bool
hasA
;
private
bool
hasA
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRecursiveMessage
a_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRecursiveMessage
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRecursiveMessage
a_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestRecursiveMessage
.
DefaultInstance
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -8266,6 +8466,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -8266,6 +8466,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
a_
;
}
get
{
return
a_
;
}
}
}
public
const
int
IFieldNumber
=
2
;
private
bool
hasI
;
private
bool
hasI
;
private
int
i_
=
0
;
private
int
i_
=
0
;
public
bool
HasI
{
public
bool
HasI
{
...
@@ -8521,6 +8722,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -8521,6 +8722,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestMutualRecursionA__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestMutualRecursionA__FieldAccessorTable
;
}
}
}
public
const
int
BbFieldNumber
=
1
;
private
bool
hasBb
;
private
bool
hasBb
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMutualRecursionB
bb_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMutualRecursionB
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMutualRecursionB
bb_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMutualRecursionB
.
DefaultInstance
;
public
bool
HasBb
{
public
bool
HasBb
{
...
@@ -8745,6 +8947,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -8745,6 +8947,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestMutualRecursionB__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestMutualRecursionB__FieldAccessorTable
;
}
}
}
public
const
int
AFieldNumber
=
1
;
private
bool
hasA
;
private
bool
hasA
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMutualRecursionA
a_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMutualRecursionA
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMutualRecursionA
a_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestMutualRecursionA
.
DefaultInstance
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -8754,6 +8957,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -8754,6 +8957,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
a_
;
}
get
{
return
a_
;
}
}
}
public
const
int
OptionalInt32FieldNumber
=
2
;
private
bool
hasOptionalInt32
;
private
bool
hasOptionalInt32
;
private
int
optionalInt32_
=
0
;
private
int
optionalInt32_
=
0
;
public
bool
HasOptionalInt32
{
public
bool
HasOptionalInt32
{
...
@@ -9033,6 +9237,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -9033,6 +9237,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestDupFieldNumber_Foo__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestDupFieldNumber_Foo__FieldAccessorTable
;
}
}
}
public
const
int
AFieldNumber
=
1
;
private
bool
hasA
;
private
bool
hasA
;
private
int
a_
=
0
;
private
int
a_
=
0
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -9234,6 +9439,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -9234,6 +9439,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestDupFieldNumber_Bar__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestDupFieldNumber_Bar__FieldAccessorTable
;
}
}
}
public
const
int
AFieldNumber
=
1
;
private
bool
hasA
;
private
bool
hasA
;
private
int
a_
=
0
;
private
int
a_
=
0
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -9416,6 +9622,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -9416,6 +9622,7 @@ namespace Google.ProtocolBuffers.TestProtos {
}
}
#
endregion
#
endregion
public
const
int
AFieldNumber
=
1
;
private
bool
hasA
;
private
bool
hasA
;
private
int
a_
=
0
;
private
int
a_
=
0
;
public
bool
HasA
{
public
bool
HasA
{
...
@@ -9425,6 +9632,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -9425,6 +9632,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
a_
;
}
get
{
return
a_
;
}
}
}
public
const
int
FooFieldNumber
=
2
;
private
bool
hasFoo
;
private
bool
hasFoo
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestDupFieldNumber
.
Types
.
Foo
foo_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestDupFieldNumber
.
Types
.
Foo
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestDupFieldNumber
.
Types
.
Foo
foo_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestDupFieldNumber
.
Types
.
Foo
.
DefaultInstance
;
public
bool
HasFoo
{
public
bool
HasFoo
{
...
@@ -9434,6 +9642,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -9434,6 +9642,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
foo_
;
}
get
{
return
foo_
;
}
}
}
public
const
int
BarFieldNumber
=
3
;
private
bool
hasBar
;
private
bool
hasBar
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestDupFieldNumber
.
Types
.
Bar
bar_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestDupFieldNumber
.
Types
.
Bar
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestDupFieldNumber
.
Types
.
Bar
bar_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestDupFieldNumber
.
Types
.
Bar
.
DefaultInstance
;
public
bool
HasBar
{
public
bool
HasBar
{
...
@@ -9767,6 +9976,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -9767,6 +9976,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestNestedMessageHasBits_NestedMessage__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestNestedMessageHasBits_NestedMessage__FieldAccessorTable
;
}
}
}
public
const
int
NestedmessageRepeatedInt32FieldNumber
=
1
;
private
pbc
::
PopsicleList
<
int
>
nestedmessageRepeatedInt32_
=
new
pbc
::
PopsicleList
<
int
>();
private
pbc
::
PopsicleList
<
int
>
nestedmessageRepeatedInt32_
=
new
pbc
::
PopsicleList
<
int
>();
public
scg
::
IList
<
int
>
NestedmessageRepeatedInt32List
{
public
scg
::
IList
<
int
>
NestedmessageRepeatedInt32List
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
nestedmessageRepeatedInt32_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
nestedmessageRepeatedInt32_
);
}
...
@@ -9778,6 +9988,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -9778,6 +9988,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
nestedmessageRepeatedInt32_
[
index
];
return
nestedmessageRepeatedInt32_
[
index
];
}
}
public
const
int
NestedmessageRepeatedForeignmessageFieldNumber
=
2
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
nestedmessageRepeatedForeignmessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
nestedmessageRepeatedForeignmessage_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
NestedmessageRepeatedForeignmessageList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
NestedmessageRepeatedForeignmessageList
{
get
{
return
nestedmessageRepeatedForeignmessage_
;
}
get
{
return
nestedmessageRepeatedForeignmessage_
;
}
...
@@ -10032,6 +10243,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10032,6 +10243,7 @@ namespace Google.ProtocolBuffers.TestProtos {
}
}
#
endregion
#
endregion
public
const
int
OptionalNestedMessageFieldNumber
=
1
;
private
bool
hasOptionalNestedMessage
;
private
bool
hasOptionalNestedMessage
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestNestedMessageHasBits
.
Types
.
NestedMessage
optionalNestedMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestNestedMessageHasBits
.
Types
.
NestedMessage
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestNestedMessageHasBits
.
Types
.
NestedMessage
optionalNestedMessage_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestNestedMessageHasBits
.
Types
.
NestedMessage
.
DefaultInstance
;
public
bool
HasOptionalNestedMessage
{
public
bool
HasOptionalNestedMessage
{
...
@@ -10256,6 +10468,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10256,6 +10468,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestCamelCaseFieldNames__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestCamelCaseFieldNames__FieldAccessorTable
;
}
}
}
public
const
int
PrimitiveFieldFieldNumber
=
1
;
private
bool
hasPrimitiveField
;
private
bool
hasPrimitiveField
;
private
int
primitiveField_
=
0
;
private
int
primitiveField_
=
0
;
public
bool
HasPrimitiveField
{
public
bool
HasPrimitiveField
{
...
@@ -10265,6 +10478,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10265,6 +10478,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
primitiveField_
;
}
get
{
return
primitiveField_
;
}
}
}
public
const
int
StringFieldFieldNumber
=
2
;
private
bool
hasStringField
;
private
bool
hasStringField
;
private
string
stringField_
=
""
;
private
string
stringField_
=
""
;
public
bool
HasStringField
{
public
bool
HasStringField
{
...
@@ -10274,6 +10488,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10274,6 +10488,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
stringField_
;
}
get
{
return
stringField_
;
}
}
}
public
const
int
EnumFieldFieldNumber
=
3
;
private
bool
hasEnumField
;
private
bool
hasEnumField
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
enumField_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
.
FOREIGN_FOO
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
enumField_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
.
FOREIGN_FOO
;
public
bool
HasEnumField
{
public
bool
HasEnumField
{
...
@@ -10283,6 +10498,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10283,6 +10498,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
enumField_
;
}
get
{
return
enumField_
;
}
}
}
public
const
int
MessageFieldFieldNumber
=
4
;
private
bool
hasMessageField
;
private
bool
hasMessageField
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
messageField_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
messageField_
=
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
.
DefaultInstance
;
public
bool
HasMessageField
{
public
bool
HasMessageField
{
...
@@ -10292,6 +10508,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10292,6 +10508,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
messageField_
;
}
get
{
return
messageField_
;
}
}
}
public
const
int
StringPieceFieldFieldNumber
=
5
;
private
bool
hasStringPieceField
;
private
bool
hasStringPieceField
;
private
string
stringPieceField_
=
""
;
private
string
stringPieceField_
=
""
;
public
bool
HasStringPieceField
{
public
bool
HasStringPieceField
{
...
@@ -10301,6 +10518,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10301,6 +10518,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
stringPieceField_
;
}
get
{
return
stringPieceField_
;
}
}
}
public
const
int
CordFieldFieldNumber
=
6
;
private
bool
hasCordField
;
private
bool
hasCordField
;
private
string
cordField_
=
""
;
private
string
cordField_
=
""
;
public
bool
HasCordField
{
public
bool
HasCordField
{
...
@@ -10310,6 +10528,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10310,6 +10528,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
cordField_
;
}
get
{
return
cordField_
;
}
}
}
public
const
int
RepeatedPrimitiveFieldFieldNumber
=
7
;
private
pbc
::
PopsicleList
<
int
>
repeatedPrimitiveField_
=
new
pbc
::
PopsicleList
<
int
>();
private
pbc
::
PopsicleList
<
int
>
repeatedPrimitiveField_
=
new
pbc
::
PopsicleList
<
int
>();
public
scg
::
IList
<
int
>
RepeatedPrimitiveFieldList
{
public
scg
::
IList
<
int
>
RepeatedPrimitiveFieldList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedPrimitiveField_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedPrimitiveField_
);
}
...
@@ -10321,6 +10540,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10321,6 +10540,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedPrimitiveField_
[
index
];
return
repeatedPrimitiveField_
[
index
];
}
}
public
const
int
RepeatedStringFieldFieldNumber
=
8
;
private
pbc
::
PopsicleList
<
string
>
repeatedStringField_
=
new
pbc
::
PopsicleList
<
string
>();
private
pbc
::
PopsicleList
<
string
>
repeatedStringField_
=
new
pbc
::
PopsicleList
<
string
>();
public
scg
::
IList
<
string
>
RepeatedStringFieldList
{
public
scg
::
IList
<
string
>
RepeatedStringFieldList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedStringField_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedStringField_
);
}
...
@@ -10332,6 +10552,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10332,6 +10552,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedStringField_
[
index
];
return
repeatedStringField_
[
index
];
}
}
public
const
int
RepeatedEnumFieldFieldNumber
=
9
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
repeatedEnumField_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
repeatedEnumField_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
RepeatedEnumFieldList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
RepeatedEnumFieldList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedEnumField_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedEnumField_
);
}
...
@@ -10343,6 +10564,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10343,6 +10564,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedEnumField_
[
index
];
return
repeatedEnumField_
[
index
];
}
}
public
const
int
RepeatedMessageFieldFieldNumber
=
10
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
repeatedMessageField_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
repeatedMessageField_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
RepeatedMessageFieldList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignMessage
>
RepeatedMessageFieldList
{
get
{
return
repeatedMessageField_
;
}
get
{
return
repeatedMessageField_
;
}
...
@@ -10354,6 +10576,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10354,6 +10576,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedMessageField_
[
index
];
return
repeatedMessageField_
[
index
];
}
}
public
const
int
RepeatedStringPieceFieldFieldNumber
=
11
;
private
pbc
::
PopsicleList
<
string
>
repeatedStringPieceField_
=
new
pbc
::
PopsicleList
<
string
>();
private
pbc
::
PopsicleList
<
string
>
repeatedStringPieceField_
=
new
pbc
::
PopsicleList
<
string
>();
public
scg
::
IList
<
string
>
RepeatedStringPieceFieldList
{
public
scg
::
IList
<
string
>
RepeatedStringPieceFieldList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedStringPieceField_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedStringPieceField_
);
}
...
@@ -10365,6 +10588,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -10365,6 +10588,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
repeatedStringPieceField_
[
index
];
return
repeatedStringPieceField_
[
index
];
}
}
public
const
int
RepeatedCordFieldFieldNumber
=
12
;
private
pbc
::
PopsicleList
<
string
>
repeatedCordField_
=
new
pbc
::
PopsicleList
<
string
>();
private
pbc
::
PopsicleList
<
string
>
repeatedCordField_
=
new
pbc
::
PopsicleList
<
string
>();
public
scg
::
IList
<
string
>
RepeatedCordFieldList
{
public
scg
::
IList
<
string
>
RepeatedCordFieldList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedCordField_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
repeatedCordField_
);
}
...
@@ -11062,6 +11286,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11062,6 +11286,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestFieldOrderings__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestFieldOrderings__FieldAccessorTable
;
}
}
}
public
const
int
MyStringFieldNumber
=
11
;
private
bool
hasMyString
;
private
bool
hasMyString
;
private
string
myString_
=
""
;
private
string
myString_
=
""
;
public
bool
HasMyString
{
public
bool
HasMyString
{
...
@@ -11071,6 +11296,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11071,6 +11296,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
myString_
;
}
get
{
return
myString_
;
}
}
}
public
const
int
MyIntFieldNumber
=
1
;
private
bool
hasMyInt
;
private
bool
hasMyInt
;
private
long
myInt_
=
0L
;
private
long
myInt_
=
0L
;
public
bool
HasMyInt
{
public
bool
HasMyInt
{
...
@@ -11080,6 +11306,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11080,6 +11306,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
myInt_
;
}
get
{
return
myInt_
;
}
}
}
public
const
int
MyFloatFieldNumber
=
101
;
private
bool
hasMyFloat
;
private
bool
hasMyFloat
;
private
float
myFloat_
=
0F
;
private
float
myFloat_
=
0F
;
public
bool
HasMyFloat
{
public
bool
HasMyFloat
{
...
@@ -11350,6 +11577,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11350,6 +11577,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestExtremeDefaultValues__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestExtremeDefaultValues__FieldAccessorTable
;
}
}
}
public
const
int
EscapedBytesFieldNumber
=
1
;
private
bool
hasEscapedBytes
;
private
bool
hasEscapedBytes
;
private
pb
::
ByteString
escapedBytes_
=
(
pb
::
ByteString
)
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestExtremeDefaultValues
.
Descriptor
.
Fields
[
0
].
DefaultValue
;
private
pb
::
ByteString
escapedBytes_
=
(
pb
::
ByteString
)
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestExtremeDefaultValues
.
Descriptor
.
Fields
[
0
].
DefaultValue
;
public
bool
HasEscapedBytes
{
public
bool
HasEscapedBytes
{
...
@@ -11359,6 +11587,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11359,6 +11587,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
escapedBytes_
;
}
get
{
return
escapedBytes_
;
}
}
}
public
const
int
LargeUint32FieldNumber
=
2
;
private
bool
hasLargeUint32
;
private
bool
hasLargeUint32
;
private
uint
largeUint32_
=
4294967295
;
private
uint
largeUint32_
=
4294967295
;
public
bool
HasLargeUint32
{
public
bool
HasLargeUint32
{
...
@@ -11368,6 +11597,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11368,6 +11597,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
largeUint32_
;
}
get
{
return
largeUint32_
;
}
}
}
public
const
int
LargeUint64FieldNumber
=
3
;
private
bool
hasLargeUint64
;
private
bool
hasLargeUint64
;
private
ulong
largeUint64_
=
18446744073709551615U
L
;
private
ulong
largeUint64_
=
18446744073709551615U
L
;
public
bool
HasLargeUint64
{
public
bool
HasLargeUint64
{
...
@@ -11377,6 +11607,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11377,6 +11607,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
largeUint64_
;
}
get
{
return
largeUint64_
;
}
}
}
public
const
int
SmallInt32FieldNumber
=
4
;
private
bool
hasSmallInt32
;
private
bool
hasSmallInt32
;
private
int
smallInt32_
=
-
2147483647
;
private
int
smallInt32_
=
-
2147483647
;
public
bool
HasSmallInt32
{
public
bool
HasSmallInt32
{
...
@@ -11386,6 +11617,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11386,6 +11617,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
smallInt32_
;
}
get
{
return
smallInt32_
;
}
}
}
public
const
int
SmallInt64FieldNumber
=
5
;
private
bool
hasSmallInt64
;
private
bool
hasSmallInt64
;
private
long
smallInt64_
=
-
9223372036854775807L
;
private
long
smallInt64_
=
-
9223372036854775807L
;
public
bool
HasSmallInt64
{
public
bool
HasSmallInt64
{
...
@@ -11395,6 +11627,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11395,6 +11627,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
smallInt64_
;
}
get
{
return
smallInt64_
;
}
}
}
public
const
int
Utf8StringFieldNumber
=
6
;
private
bool
hasUtf8String
;
private
bool
hasUtf8String
;
private
string
utf8String_
=
(
string
)
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestExtremeDefaultValues
.
Descriptor
.
Fields
[
5
].
DefaultValue
;
private
string
utf8String_
=
(
string
)
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
TestExtremeDefaultValues
.
Descriptor
.
Fields
[
5
].
DefaultValue
;
public
bool
HasUtf8String
{
public
bool
HasUtf8String
{
...
@@ -11753,6 +11986,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11753,6 +11986,7 @@ namespace Google.ProtocolBuffers.TestProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestPackedTypes__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
UnitTestProtoFile
.
internal__static_protobuf_unittest_TestPackedTypes__FieldAccessorTable
;
}
}
}
public
const
int
PackedInt32FieldNumber
=
90
;
private
int
packedInt32MemoizedSerializedSize
;
private
int
packedInt32MemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
int
>
packedInt32_
=
new
pbc
::
PopsicleList
<
int
>();
private
pbc
::
PopsicleList
<
int
>
packedInt32_
=
new
pbc
::
PopsicleList
<
int
>();
public
scg
::
IList
<
int
>
PackedInt32List
{
public
scg
::
IList
<
int
>
PackedInt32List
{
...
@@ -11765,6 +11999,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11765,6 +11999,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedInt32_
[
index
];
return
packedInt32_
[
index
];
}
}
public
const
int
PackedInt64FieldNumber
=
91
;
private
int
packedInt64MemoizedSerializedSize
;
private
int
packedInt64MemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
long
>
packedInt64_
=
new
pbc
::
PopsicleList
<
long
>();
private
pbc
::
PopsicleList
<
long
>
packedInt64_
=
new
pbc
::
PopsicleList
<
long
>();
public
scg
::
IList
<
long
>
PackedInt64List
{
public
scg
::
IList
<
long
>
PackedInt64List
{
...
@@ -11777,6 +12012,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11777,6 +12012,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedInt64_
[
index
];
return
packedInt64_
[
index
];
}
}
public
const
int
PackedUint32FieldNumber
=
92
;
private
int
packedUint32MemoizedSerializedSize
;
private
int
packedUint32MemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
uint
>
packedUint32_
=
new
pbc
::
PopsicleList
<
uint
>();
private
pbc
::
PopsicleList
<
uint
>
packedUint32_
=
new
pbc
::
PopsicleList
<
uint
>();
public
scg
::
IList
<
uint
>
PackedUint32List
{
public
scg
::
IList
<
uint
>
PackedUint32List
{
...
@@ -11789,6 +12025,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11789,6 +12025,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedUint32_
[
index
];
return
packedUint32_
[
index
];
}
}
public
const
int
PackedUint64FieldNumber
=
93
;
private
int
packedUint64MemoizedSerializedSize
;
private
int
packedUint64MemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
ulong
>
packedUint64_
=
new
pbc
::
PopsicleList
<
ulong
>();
private
pbc
::
PopsicleList
<
ulong
>
packedUint64_
=
new
pbc
::
PopsicleList
<
ulong
>();
public
scg
::
IList
<
ulong
>
PackedUint64List
{
public
scg
::
IList
<
ulong
>
PackedUint64List
{
...
@@ -11801,6 +12038,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11801,6 +12038,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedUint64_
[
index
];
return
packedUint64_
[
index
];
}
}
public
const
int
PackedSint32FieldNumber
=
94
;
private
int
packedSint32MemoizedSerializedSize
;
private
int
packedSint32MemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
int
>
packedSint32_
=
new
pbc
::
PopsicleList
<
int
>();
private
pbc
::
PopsicleList
<
int
>
packedSint32_
=
new
pbc
::
PopsicleList
<
int
>();
public
scg
::
IList
<
int
>
PackedSint32List
{
public
scg
::
IList
<
int
>
PackedSint32List
{
...
@@ -11813,6 +12051,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11813,6 +12051,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedSint32_
[
index
];
return
packedSint32_
[
index
];
}
}
public
const
int
PackedSint64FieldNumber
=
95
;
private
int
packedSint64MemoizedSerializedSize
;
private
int
packedSint64MemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
long
>
packedSint64_
=
new
pbc
::
PopsicleList
<
long
>();
private
pbc
::
PopsicleList
<
long
>
packedSint64_
=
new
pbc
::
PopsicleList
<
long
>();
public
scg
::
IList
<
long
>
PackedSint64List
{
public
scg
::
IList
<
long
>
PackedSint64List
{
...
@@ -11825,6 +12064,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11825,6 +12064,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedSint64_
[
index
];
return
packedSint64_
[
index
];
}
}
public
const
int
PackedFixed32FieldNumber
=
96
;
private
int
packedFixed32MemoizedSerializedSize
;
private
int
packedFixed32MemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
uint
>
packedFixed32_
=
new
pbc
::
PopsicleList
<
uint
>();
private
pbc
::
PopsicleList
<
uint
>
packedFixed32_
=
new
pbc
::
PopsicleList
<
uint
>();
public
scg
::
IList
<
uint
>
PackedFixed32List
{
public
scg
::
IList
<
uint
>
PackedFixed32List
{
...
@@ -11837,6 +12077,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11837,6 +12077,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedFixed32_
[
index
];
return
packedFixed32_
[
index
];
}
}
public
const
int
PackedFixed64FieldNumber
=
97
;
private
int
packedFixed64MemoizedSerializedSize
;
private
int
packedFixed64MemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
ulong
>
packedFixed64_
=
new
pbc
::
PopsicleList
<
ulong
>();
private
pbc
::
PopsicleList
<
ulong
>
packedFixed64_
=
new
pbc
::
PopsicleList
<
ulong
>();
public
scg
::
IList
<
ulong
>
PackedFixed64List
{
public
scg
::
IList
<
ulong
>
PackedFixed64List
{
...
@@ -11849,6 +12090,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11849,6 +12090,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedFixed64_
[
index
];
return
packedFixed64_
[
index
];
}
}
public
const
int
PackedSfixed32FieldNumber
=
98
;
private
int
packedSfixed32MemoizedSerializedSize
;
private
int
packedSfixed32MemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
int
>
packedSfixed32_
=
new
pbc
::
PopsicleList
<
int
>();
private
pbc
::
PopsicleList
<
int
>
packedSfixed32_
=
new
pbc
::
PopsicleList
<
int
>();
public
scg
::
IList
<
int
>
PackedSfixed32List
{
public
scg
::
IList
<
int
>
PackedSfixed32List
{
...
@@ -11861,6 +12103,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11861,6 +12103,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedSfixed32_
[
index
];
return
packedSfixed32_
[
index
];
}
}
public
const
int
PackedSfixed64FieldNumber
=
99
;
private
int
packedSfixed64MemoizedSerializedSize
;
private
int
packedSfixed64MemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
long
>
packedSfixed64_
=
new
pbc
::
PopsicleList
<
long
>();
private
pbc
::
PopsicleList
<
long
>
packedSfixed64_
=
new
pbc
::
PopsicleList
<
long
>();
public
scg
::
IList
<
long
>
PackedSfixed64List
{
public
scg
::
IList
<
long
>
PackedSfixed64List
{
...
@@ -11873,6 +12116,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11873,6 +12116,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedSfixed64_
[
index
];
return
packedSfixed64_
[
index
];
}
}
public
const
int
PackedFloatFieldNumber
=
100
;
private
int
packedFloatMemoizedSerializedSize
;
private
int
packedFloatMemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
float
>
packedFloat_
=
new
pbc
::
PopsicleList
<
float
>();
private
pbc
::
PopsicleList
<
float
>
packedFloat_
=
new
pbc
::
PopsicleList
<
float
>();
public
scg
::
IList
<
float
>
PackedFloatList
{
public
scg
::
IList
<
float
>
PackedFloatList
{
...
@@ -11885,6 +12129,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11885,6 +12129,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedFloat_
[
index
];
return
packedFloat_
[
index
];
}
}
public
const
int
PackedDoubleFieldNumber
=
101
;
private
int
packedDoubleMemoizedSerializedSize
;
private
int
packedDoubleMemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
double
>
packedDouble_
=
new
pbc
::
PopsicleList
<
double
>();
private
pbc
::
PopsicleList
<
double
>
packedDouble_
=
new
pbc
::
PopsicleList
<
double
>();
public
scg
::
IList
<
double
>
PackedDoubleList
{
public
scg
::
IList
<
double
>
PackedDoubleList
{
...
@@ -11897,6 +12142,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11897,6 +12142,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedDouble_
[
index
];
return
packedDouble_
[
index
];
}
}
public
const
int
PackedBoolFieldNumber
=
102
;
private
int
packedBoolMemoizedSerializedSize
;
private
int
packedBoolMemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
bool
>
packedBool_
=
new
pbc
::
PopsicleList
<
bool
>();
private
pbc
::
PopsicleList
<
bool
>
packedBool_
=
new
pbc
::
PopsicleList
<
bool
>();
public
scg
::
IList
<
bool
>
PackedBoolList
{
public
scg
::
IList
<
bool
>
PackedBoolList
{
...
@@ -11909,6 +12155,7 @@ namespace Google.ProtocolBuffers.TestProtos {
...
@@ -11909,6 +12155,7 @@ namespace Google.ProtocolBuffers.TestProtos {
return
packedBool_
[
index
];
return
packedBool_
[
index
];
}
}
public
const
int
PackedEnumFieldNumber
=
103
;
private
int
packedEnumMemoizedSerializedSize
;
private
int
packedEnumMemoizedSerializedSize
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
packedEnum_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
packedEnum_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
PackedEnumList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
TestProtos
.
ForeignEnum
>
PackedEnumList
{
...
...
src/ProtocolBuffers/DescriptorProtos/CSharpOptions.cs
View file @
7ee85c4e
...
@@ -31,8 +31,10 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -31,8 +31,10 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
#
endregion
#
endregion
#
region
Extensions
#
region
Extensions
public
const
int
CsharpFileOptionsFieldNumber
=
1000
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpFileOptions
>
CSharpFileOptions
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpFileOptions
>
CSharpFileOptions
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpFileOptions
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpFileOptions
>.
CreateInstance
(
Descriptor
.
Extensions
[
0
]);
public
const
int
CsharpFieldOptionsFieldNumber
=
1000
;
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpFieldOptions
>
CSharpFieldOptions
=
public
static
readonly
pb
::
GeneratedExtensionBase
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpFieldOptions
>
CSharpFieldOptions
=
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpFieldOptions
>.
CreateInstance
(
Descriptor
.
Extensions
[
1
]);
pb
::
GeneratedSingleExtension
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpFieldOptions
>.
CreateInstance
(
Descriptor
.
Extensions
[
1
]);
#
endregion
#
endregion
...
@@ -73,6 +75,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -73,6 +75,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpOptions
.
internal__static_google_protobuf_CSharpFileOptions__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpOptions
.
internal__static_google_protobuf_CSharpFileOptions__FieldAccessorTable
;
}
}
}
public
const
int
NamespaceFieldNumber
=
1
;
private
bool
hasNamespace
;
private
bool
hasNamespace
;
private
string
namespace_
=
""
;
private
string
namespace_
=
""
;
public
bool
HasNamespace
{
public
bool
HasNamespace
{
...
@@ -82,6 +85,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -82,6 +85,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
namespace_
;
}
get
{
return
namespace_
;
}
}
}
public
const
int
UmbrellaClassnameFieldNumber
=
2
;
private
bool
hasUmbrellaClassname
;
private
bool
hasUmbrellaClassname
;
private
string
umbrellaClassname_
=
""
;
private
string
umbrellaClassname_
=
""
;
public
bool
HasUmbrellaClassname
{
public
bool
HasUmbrellaClassname
{
...
@@ -91,6 +95,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -91,6 +95,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
umbrellaClassname_
;
}
get
{
return
umbrellaClassname_
;
}
}
}
public
const
int
PublicClassesFieldNumber
=
3
;
private
bool
hasPublicClasses
;
private
bool
hasPublicClasses
;
private
bool
publicClasses_
=
false
;
private
bool
publicClasses_
=
false
;
public
bool
HasPublicClasses
{
public
bool
HasPublicClasses
{
...
@@ -100,6 +105,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -100,6 +105,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
publicClasses_
;
}
get
{
return
publicClasses_
;
}
}
}
public
const
int
MultipleFilesFieldNumber
=
4
;
private
bool
hasMultipleFiles
;
private
bool
hasMultipleFiles
;
private
bool
multipleFiles_
=
false
;
private
bool
multipleFiles_
=
false
;
public
bool
HasMultipleFiles
{
public
bool
HasMultipleFiles
{
...
@@ -109,6 +115,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -109,6 +115,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
multipleFiles_
;
}
get
{
return
multipleFiles_
;
}
}
}
public
const
int
NestClassesFieldNumber
=
5
;
private
bool
hasNestClasses
;
private
bool
hasNestClasses
;
private
bool
nestClasses_
=
false
;
private
bool
nestClasses_
=
false
;
public
bool
HasNestClasses
{
public
bool
HasNestClasses
{
...
@@ -301,6 +308,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -301,6 +308,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpOptions
.
internal__static_google_protobuf_CSharpFieldOptions__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
CSharpOptions
.
internal__static_google_protobuf_CSharpFieldOptions__FieldAccessorTable
;
}
}
}
public
const
int
PropertyNameFieldNumber
=
1
;
private
bool
hasPropertyName
;
private
bool
hasPropertyName
;
private
string
propertyName_
=
""
;
private
string
propertyName_
=
""
;
public
bool
HasPropertyName
{
public
bool
HasPropertyName
{
...
...
src/ProtocolBuffers/DescriptorProtos/DescriptorProtoFile.cs
View file @
7ee85c4e
...
@@ -211,6 +211,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -211,6 +211,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_FileDescriptorSet__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_FileDescriptorSet__FieldAccessorTable
;
}
}
}
public
const
int
FileFieldNumber
=
1
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileDescriptorProto
>
file_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileDescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileDescriptorProto
>
file_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileDescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileDescriptorProto
>
FileList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileDescriptorProto
>
FileList
{
get
{
return
file_
;
}
get
{
return
file_
;
}
...
@@ -440,6 +441,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -440,6 +441,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_FileDescriptorProto__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_FileDescriptorProto__FieldAccessorTable
;
}
}
}
public
const
int
NameFieldNumber
=
1
;
private
bool
hasName
;
private
bool
hasName
;
private
string
name_
=
""
;
private
string
name_
=
""
;
public
bool
HasName
{
public
bool
HasName
{
...
@@ -449,6 +451,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -449,6 +451,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
name_
;
}
get
{
return
name_
;
}
}
}
public
const
int
PackageFieldNumber
=
2
;
private
bool
hasPackage
;
private
bool
hasPackage
;
private
string
package_
=
""
;
private
string
package_
=
""
;
public
bool
HasPackage
{
public
bool
HasPackage
{
...
@@ -458,6 +461,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -458,6 +461,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
package_
;
}
get
{
return
package_
;
}
}
}
public
const
int
DependencyFieldNumber
=
3
;
private
pbc
::
PopsicleList
<
string
>
dependency_
=
new
pbc
::
PopsicleList
<
string
>();
private
pbc
::
PopsicleList
<
string
>
dependency_
=
new
pbc
::
PopsicleList
<
string
>();
public
scg
::
IList
<
string
>
DependencyList
{
public
scg
::
IList
<
string
>
DependencyList
{
get
{
return
pbc
::
Lists
.
AsReadOnly
(
dependency_
);
}
get
{
return
pbc
::
Lists
.
AsReadOnly
(
dependency_
);
}
...
@@ -469,6 +473,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -469,6 +473,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
dependency_
[
index
];
return
dependency_
[
index
];
}
}
public
const
int
MessageTypeFieldNumber
=
4
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>
messageType_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>
messageType_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>
MessageTypeList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>
MessageTypeList
{
get
{
return
messageType_
;
}
get
{
return
messageType_
;
}
...
@@ -480,6 +485,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -480,6 +485,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
messageType_
[
index
];
return
messageType_
[
index
];
}
}
public
const
int
EnumTypeFieldNumber
=
5
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>
enumType_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>
enumType_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>
EnumTypeList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>
EnumTypeList
{
get
{
return
enumType_
;
}
get
{
return
enumType_
;
}
...
@@ -491,6 +497,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -491,6 +497,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
enumType_
[
index
];
return
enumType_
[
index
];
}
}
public
const
int
ServiceFieldNumber
=
6
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
ServiceDescriptorProto
>
service_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
ServiceDescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
ServiceDescriptorProto
>
service_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
ServiceDescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
ServiceDescriptorProto
>
ServiceList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
ServiceDescriptorProto
>
ServiceList
{
get
{
return
service_
;
}
get
{
return
service_
;
}
...
@@ -502,6 +509,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -502,6 +509,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
service_
[
index
];
return
service_
[
index
];
}
}
public
const
int
ExtensionFieldNumber
=
7
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
extension_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
extension_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
ExtensionList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
ExtensionList
{
get
{
return
extension_
;
}
get
{
return
extension_
;
}
...
@@ -513,6 +521,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -513,6 +521,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
extension_
[
index
];
return
extension_
[
index
];
}
}
public
const
int
OptionsFieldNumber
=
8
;
private
bool
hasOptions
;
private
bool
hasOptions
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileOptions
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileOptions
.
DefaultInstance
;
public
bool
HasOptions
{
public
bool
HasOptions
{
...
@@ -1105,6 +1114,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1105,6 +1114,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_DescriptorProto_ExtensionRange__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_DescriptorProto_ExtensionRange__FieldAccessorTable
;
}
}
}
public
const
int
StartFieldNumber
=
1
;
private
bool
hasStart
;
private
bool
hasStart
;
private
int
start_
=
0
;
private
int
start_
=
0
;
public
bool
HasStart
{
public
bool
HasStart
{
...
@@ -1114,6 +1124,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1114,6 +1124,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
start_
;
}
get
{
return
start_
;
}
}
}
public
const
int
EndFieldNumber
=
2
;
private
bool
hasEnd
;
private
bool
hasEnd
;
private
int
end_
=
0
;
private
int
end_
=
0
;
public
bool
HasEnd
{
public
bool
HasEnd
{
...
@@ -1327,6 +1338,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1327,6 +1338,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
}
}
#
endregion
#
endregion
public
const
int
NameFieldNumber
=
1
;
private
bool
hasName
;
private
bool
hasName
;
private
string
name_
=
""
;
private
string
name_
=
""
;
public
bool
HasName
{
public
bool
HasName
{
...
@@ -1336,6 +1348,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1336,6 +1348,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
name_
;
}
get
{
return
name_
;
}
}
}
public
const
int
FieldFieldNumber
=
2
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
field_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
field_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
FieldList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
FieldList
{
get
{
return
field_
;
}
get
{
return
field_
;
}
...
@@ -1347,6 +1360,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1347,6 +1360,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
field_
[
index
];
return
field_
[
index
];
}
}
public
const
int
ExtensionFieldNumber
=
6
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
extension_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
extension_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
ExtensionList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
>
ExtensionList
{
get
{
return
extension_
;
}
get
{
return
extension_
;
}
...
@@ -1358,6 +1372,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1358,6 +1372,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
extension_
[
index
];
return
extension_
[
index
];
}
}
public
const
int
NestedTypeFieldNumber
=
3
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>
nestedType_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>
nestedType_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>
NestedTypeList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
>
NestedTypeList
{
get
{
return
nestedType_
;
}
get
{
return
nestedType_
;
}
...
@@ -1369,6 +1384,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1369,6 +1384,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
nestedType_
[
index
];
return
nestedType_
[
index
];
}
}
public
const
int
EnumTypeFieldNumber
=
4
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>
enumType_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>
enumType_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>
EnumTypeList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumDescriptorProto
>
EnumTypeList
{
get
{
return
enumType_
;
}
get
{
return
enumType_
;
}
...
@@ -1380,6 +1396,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1380,6 +1396,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
enumType_
[
index
];
return
enumType_
[
index
];
}
}
public
const
int
ExtensionRangeFieldNumber
=
5
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
.
Types
.
ExtensionRange
>
extensionRange_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
.
Types
.
ExtensionRange
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
.
Types
.
ExtensionRange
>
extensionRange_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
.
Types
.
ExtensionRange
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
.
Types
.
ExtensionRange
>
ExtensionRangeList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProto
.
Types
.
ExtensionRange
>
ExtensionRangeList
{
get
{
return
extensionRange_
;
}
get
{
return
extensionRange_
;
}
...
@@ -1391,6 +1408,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1391,6 +1408,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
extensionRange_
[
index
];
return
extensionRange_
[
index
];
}
}
public
const
int
OptionsFieldNumber
=
7
;
private
bool
hasOptions
;
private
bool
hasOptions
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MessageOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MessageOptions
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MessageOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MessageOptions
.
DefaultInstance
;
public
bool
HasOptions
{
public
bool
HasOptions
{
...
@@ -1964,6 +1982,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1964,6 +1982,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
}
}
#
endregion
#
endregion
public
const
int
NameFieldNumber
=
1
;
private
bool
hasName
;
private
bool
hasName
;
private
string
name_
=
""
;
private
string
name_
=
""
;
public
bool
HasName
{
public
bool
HasName
{
...
@@ -1973,6 +1992,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1973,6 +1992,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
name_
;
}
get
{
return
name_
;
}
}
}
public
const
int
NumberFieldNumber
=
3
;
private
bool
hasNumber
;
private
bool
hasNumber
;
private
int
number_
=
0
;
private
int
number_
=
0
;
public
bool
HasNumber
{
public
bool
HasNumber
{
...
@@ -1982,6 +2002,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1982,6 +2002,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
number_
;
}
get
{
return
number_
;
}
}
}
public
const
int
LabelFieldNumber
=
4
;
private
bool
hasLabel
;
private
bool
hasLabel
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
.
Types
.
Label
label_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
.
Types
.
Label
.
LABEL_OPTIONAL
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
.
Types
.
Label
label_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
.
Types
.
Label
.
LABEL_OPTIONAL
;
public
bool
HasLabel
{
public
bool
HasLabel
{
...
@@ -1991,6 +2012,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -1991,6 +2012,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
label_
;
}
get
{
return
label_
;
}
}
}
public
const
int
TypeFieldNumber
=
5
;
private
bool
hasType
;
private
bool
hasType
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
.
Types
.
Type
type_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
.
Types
.
Type
.
TYPE_DOUBLE
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
.
Types
.
Type
type_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldDescriptorProto
.
Types
.
Type
.
TYPE_DOUBLE
;
public
bool
HasType
{
public
bool
HasType
{
...
@@ -2000,6 +2022,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -2000,6 +2022,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
type_
;
}
get
{
return
type_
;
}
}
}
public
const
int
TypeNameFieldNumber
=
6
;
private
bool
hasTypeName
;
private
bool
hasTypeName
;
private
string
typeName_
=
""
;
private
string
typeName_
=
""
;
public
bool
HasTypeName
{
public
bool
HasTypeName
{
...
@@ -2009,6 +2032,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -2009,6 +2032,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
typeName_
;
}
get
{
return
typeName_
;
}
}
}
public
const
int
ExtendeeFieldNumber
=
2
;
private
bool
hasExtendee
;
private
bool
hasExtendee
;
private
string
extendee_
=
""
;
private
string
extendee_
=
""
;
public
bool
HasExtendee
{
public
bool
HasExtendee
{
...
@@ -2018,6 +2042,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -2018,6 +2042,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
extendee_
;
}
get
{
return
extendee_
;
}
}
}
public
const
int
DefaultValueFieldNumber
=
7
;
private
bool
hasDefaultValue
;
private
bool
hasDefaultValue
;
private
string
defaultValue_
=
""
;
private
string
defaultValue_
=
""
;
public
bool
HasDefaultValue
{
public
bool
HasDefaultValue
{
...
@@ -2027,6 +2052,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -2027,6 +2052,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
defaultValue_
;
}
get
{
return
defaultValue_
;
}
}
}
public
const
int
OptionsFieldNumber
=
8
;
private
bool
hasOptions
;
private
bool
hasOptions
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldOptions
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldOptions
.
DefaultInstance
;
public
bool
HasOptions
{
public
bool
HasOptions
{
...
@@ -2491,6 +2517,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -2491,6 +2517,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_EnumDescriptorProto__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_EnumDescriptorProto__FieldAccessorTable
;
}
}
}
public
const
int
NameFieldNumber
=
1
;
private
bool
hasName
;
private
bool
hasName
;
private
string
name_
=
""
;
private
string
name_
=
""
;
public
bool
HasName
{
public
bool
HasName
{
...
@@ -2500,6 +2527,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -2500,6 +2527,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
name_
;
}
get
{
return
name_
;
}
}
}
public
const
int
ValueFieldNumber
=
2
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumValueDescriptorProto
>
value_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumValueDescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumValueDescriptorProto
>
value_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumValueDescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumValueDescriptorProto
>
ValueList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumValueDescriptorProto
>
ValueList
{
get
{
return
value_
;
}
get
{
return
value_
;
}
...
@@ -2511,6 +2539,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -2511,6 +2539,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
value_
[
index
];
return
value_
[
index
];
}
}
public
const
int
OptionsFieldNumber
=
3
;
private
bool
hasOptions
;
private
bool
hasOptions
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumOptions
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumOptions
.
DefaultInstance
;
public
bool
HasOptions
{
public
bool
HasOptions
{
...
@@ -2827,6 +2856,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -2827,6 +2856,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_EnumValueDescriptorProto__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_EnumValueDescriptorProto__FieldAccessorTable
;
}
}
}
public
const
int
NameFieldNumber
=
1
;
private
bool
hasName
;
private
bool
hasName
;
private
string
name_
=
""
;
private
string
name_
=
""
;
public
bool
HasName
{
public
bool
HasName
{
...
@@ -2836,6 +2866,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -2836,6 +2866,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
name_
;
}
get
{
return
name_
;
}
}
}
public
const
int
NumberFieldNumber
=
2
;
private
bool
hasNumber
;
private
bool
hasNumber
;
private
int
number_
=
0
;
private
int
number_
=
0
;
public
bool
HasNumber
{
public
bool
HasNumber
{
...
@@ -2845,6 +2876,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -2845,6 +2876,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
number_
;
}
get
{
return
number_
;
}
}
}
public
const
int
OptionsFieldNumber
=
3
;
private
bool
hasOptions
;
private
bool
hasOptions
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumValueOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumValueOptions
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumValueOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
EnumValueOptions
.
DefaultInstance
;
public
bool
HasOptions
{
public
bool
HasOptions
{
...
@@ -3135,6 +3167,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3135,6 +3167,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_ServiceDescriptorProto__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_ServiceDescriptorProto__FieldAccessorTable
;
}
}
}
public
const
int
NameFieldNumber
=
1
;
private
bool
hasName
;
private
bool
hasName
;
private
string
name_
=
""
;
private
string
name_
=
""
;
public
bool
HasName
{
public
bool
HasName
{
...
@@ -3144,6 +3177,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3144,6 +3177,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
name_
;
}
get
{
return
name_
;
}
}
}
public
const
int
MethodFieldNumber
=
2
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MethodDescriptorProto
>
method_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MethodDescriptorProto
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MethodDescriptorProto
>
method_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MethodDescriptorProto
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MethodDescriptorProto
>
MethodList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MethodDescriptorProto
>
MethodList
{
get
{
return
method_
;
}
get
{
return
method_
;
}
...
@@ -3155,6 +3189,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3155,6 +3189,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
method_
[
index
];
return
method_
[
index
];
}
}
public
const
int
OptionsFieldNumber
=
3
;
private
bool
hasOptions
;
private
bool
hasOptions
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
ServiceOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
ServiceOptions
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
ServiceOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
ServiceOptions
.
DefaultInstance
;
public
bool
HasOptions
{
public
bool
HasOptions
{
...
@@ -3471,6 +3506,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3471,6 +3506,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_MethodDescriptorProto__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_MethodDescriptorProto__FieldAccessorTable
;
}
}
}
public
const
int
NameFieldNumber
=
1
;
private
bool
hasName
;
private
bool
hasName
;
private
string
name_
=
""
;
private
string
name_
=
""
;
public
bool
HasName
{
public
bool
HasName
{
...
@@ -3480,6 +3516,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3480,6 +3516,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
name_
;
}
get
{
return
name_
;
}
}
}
public
const
int
InputTypeFieldNumber
=
2
;
private
bool
hasInputType
;
private
bool
hasInputType
;
private
string
inputType_
=
""
;
private
string
inputType_
=
""
;
public
bool
HasInputType
{
public
bool
HasInputType
{
...
@@ -3489,6 +3526,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3489,6 +3526,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
inputType_
;
}
get
{
return
inputType_
;
}
}
}
public
const
int
OutputTypeFieldNumber
=
3
;
private
bool
hasOutputType
;
private
bool
hasOutputType
;
private
string
outputType_
=
""
;
private
string
outputType_
=
""
;
public
bool
HasOutputType
{
public
bool
HasOutputType
{
...
@@ -3498,6 +3536,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3498,6 +3536,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
outputType_
;
}
get
{
return
outputType_
;
}
}
}
public
const
int
OptionsFieldNumber
=
4
;
private
bool
hasOptions
;
private
bool
hasOptions
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MethodOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MethodOptions
.
DefaultInstance
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MethodOptions
options_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
MethodOptions
.
DefaultInstance
;
public
bool
HasOptions
{
public
bool
HasOptions
{
...
@@ -3831,6 +3870,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3831,6 +3870,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
}
}
#
endregion
#
endregion
public
const
int
JavaPackageFieldNumber
=
1
;
private
bool
hasJavaPackage
;
private
bool
hasJavaPackage
;
private
string
javaPackage_
=
""
;
private
string
javaPackage_
=
""
;
public
bool
HasJavaPackage
{
public
bool
HasJavaPackage
{
...
@@ -3840,6 +3880,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3840,6 +3880,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
javaPackage_
;
}
get
{
return
javaPackage_
;
}
}
}
public
const
int
JavaOuterClassnameFieldNumber
=
8
;
private
bool
hasJavaOuterClassname
;
private
bool
hasJavaOuterClassname
;
private
string
javaOuterClassname_
=
""
;
private
string
javaOuterClassname_
=
""
;
public
bool
HasJavaOuterClassname
{
public
bool
HasJavaOuterClassname
{
...
@@ -3849,6 +3890,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3849,6 +3890,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
javaOuterClassname_
;
}
get
{
return
javaOuterClassname_
;
}
}
}
public
const
int
JavaMultipleFilesFieldNumber
=
10
;
private
bool
hasJavaMultipleFiles
;
private
bool
hasJavaMultipleFiles
;
private
bool
javaMultipleFiles_
=
false
;
private
bool
javaMultipleFiles_
=
false
;
public
bool
HasJavaMultipleFiles
{
public
bool
HasJavaMultipleFiles
{
...
@@ -3858,6 +3900,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3858,6 +3900,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
javaMultipleFiles_
;
}
get
{
return
javaMultipleFiles_
;
}
}
}
public
const
int
OptimizeForFieldNumber
=
9
;
private
bool
hasOptimizeFor
;
private
bool
hasOptimizeFor
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileOptions
.
Types
.
OptimizeMode
optimizeFor_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileOptions
.
Types
.
OptimizeMode
.
CODE_SIZE
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileOptions
.
Types
.
OptimizeMode
optimizeFor_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FileOptions
.
Types
.
OptimizeMode
.
CODE_SIZE
;
public
bool
HasOptimizeFor
{
public
bool
HasOptimizeFor
{
...
@@ -3867,6 +3910,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -3867,6 +3910,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
optimizeFor_
;
}
get
{
return
optimizeFor_
;
}
}
}
public
const
int
UninterpretedOptionFieldNumber
=
999
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
get
{
return
uninterpretedOption_
;
}
get
{
return
uninterpretedOption_
;
}
...
@@ -4235,6 +4279,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -4235,6 +4279,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_MessageOptions__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_MessageOptions__FieldAccessorTable
;
}
}
}
public
const
int
MessageSetWireFormatFieldNumber
=
1
;
private
bool
hasMessageSetWireFormat
;
private
bool
hasMessageSetWireFormat
;
private
bool
messageSetWireFormat_
=
false
;
private
bool
messageSetWireFormat_
=
false
;
public
bool
HasMessageSetWireFormat
{
public
bool
HasMessageSetWireFormat
{
...
@@ -4244,6 +4289,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -4244,6 +4289,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
messageSetWireFormat_
;
}
get
{
return
messageSetWireFormat_
;
}
}
}
public
const
int
UninterpretedOptionFieldNumber
=
999
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
get
{
return
uninterpretedOption_
;
}
get
{
return
uninterpretedOption_
;
}
...
@@ -4519,6 +4565,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -4519,6 +4565,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
}
}
#
endregion
#
endregion
public
const
int
CtypeFieldNumber
=
1
;
private
bool
hasCtype
;
private
bool
hasCtype
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldOptions
.
Types
.
CType
ctype_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldOptions
.
Types
.
CType
.
CORD
;
private
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldOptions
.
Types
.
CType
ctype_
=
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
FieldOptions
.
Types
.
CType
.
CORD
;
public
bool
HasCtype
{
public
bool
HasCtype
{
...
@@ -4528,6 +4575,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -4528,6 +4575,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
ctype_
;
}
get
{
return
ctype_
;
}
}
}
public
const
int
PackedFieldNumber
=
2
;
private
bool
hasPacked
;
private
bool
hasPacked
;
private
bool
packed_
=
false
;
private
bool
packed_
=
false
;
public
bool
HasPacked
{
public
bool
HasPacked
{
...
@@ -4537,6 +4585,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -4537,6 +4585,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
packed_
;
}
get
{
return
packed_
;
}
}
}
public
const
int
ExperimentalMapKeyFieldNumber
=
9
;
private
bool
hasExperimentalMapKey
;
private
bool
hasExperimentalMapKey
;
private
string
experimentalMapKey_
=
""
;
private
string
experimentalMapKey_
=
""
;
public
bool
HasExperimentalMapKey
{
public
bool
HasExperimentalMapKey
{
...
@@ -4546,6 +4595,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -4546,6 +4595,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
experimentalMapKey_
;
}
get
{
return
experimentalMapKey_
;
}
}
}
public
const
int
UninterpretedOptionFieldNumber
=
999
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
get
{
return
uninterpretedOption_
;
}
get
{
return
uninterpretedOption_
;
}
...
@@ -4882,6 +4932,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -4882,6 +4932,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_EnumOptions__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_EnumOptions__FieldAccessorTable
;
}
}
}
public
const
int
UninterpretedOptionFieldNumber
=
999
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
get
{
return
uninterpretedOption_
;
}
get
{
return
uninterpretedOption_
;
}
...
@@ -5116,6 +5167,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -5116,6 +5167,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_EnumValueOptions__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_EnumValueOptions__FieldAccessorTable
;
}
}
}
public
const
int
UninterpretedOptionFieldNumber
=
999
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
get
{
return
uninterpretedOption_
;
}
get
{
return
uninterpretedOption_
;
}
...
@@ -5350,6 +5402,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -5350,6 +5402,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_ServiceOptions__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_ServiceOptions__FieldAccessorTable
;
}
}
}
public
const
int
UninterpretedOptionFieldNumber
=
999
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
get
{
return
uninterpretedOption_
;
}
get
{
return
uninterpretedOption_
;
}
...
@@ -5584,6 +5637,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -5584,6 +5637,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_MethodOptions__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_MethodOptions__FieldAccessorTable
;
}
}
}
public
const
int
UninterpretedOptionFieldNumber
=
999
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
uninterpretedOption_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
>
UninterpretedOptionList
{
get
{
return
uninterpretedOption_
;
}
get
{
return
uninterpretedOption_
;
}
...
@@ -5842,6 +5896,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -5842,6 +5896,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_UninterpretedOption_NamePart__FieldAccessorTable
;
}
get
{
return
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
DescriptorProtoFile
.
internal__static_google_protobuf_UninterpretedOption_NamePart__FieldAccessorTable
;
}
}
}
public
const
int
NamePartFieldNumber
=
1
;
private
bool
hasNamePart_
;
private
bool
hasNamePart_
;
private
string
namePart_
=
""
;
private
string
namePart_
=
""
;
public
bool
HasNamePart_
{
public
bool
HasNamePart_
{
...
@@ -5851,6 +5906,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -5851,6 +5906,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
namePart_
;
}
get
{
return
namePart_
;
}
}
}
public
const
int
IsExtensionFieldNumber
=
2
;
private
bool
hasIsExtension
;
private
bool
hasIsExtension
;
private
bool
isExtension_
=
false
;
private
bool
isExtension_
=
false
;
public
bool
HasIsExtension
{
public
bool
HasIsExtension
{
...
@@ -6067,6 +6123,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -6067,6 +6123,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
}
}
#
endregion
#
endregion
public
const
int
NameFieldNumber
=
2
;
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
.
Types
.
NamePart
>
name_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
.
Types
.
NamePart
>();
private
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
.
Types
.
NamePart
>
name_
=
new
pbc
::
PopsicleList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
.
Types
.
NamePart
>();
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
.
Types
.
NamePart
>
NameList
{
public
scg
::
IList
<
global
::
Google
.
ProtocolBuffers
.
DescriptorProtos
.
UninterpretedOption
.
Types
.
NamePart
>
NameList
{
get
{
return
name_
;
}
get
{
return
name_
;
}
...
@@ -6078,6 +6135,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -6078,6 +6135,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
return
name_
[
index
];
return
name_
[
index
];
}
}
public
const
int
IdentifierValueFieldNumber
=
3
;
private
bool
hasIdentifierValue
;
private
bool
hasIdentifierValue
;
private
string
identifierValue_
=
""
;
private
string
identifierValue_
=
""
;
public
bool
HasIdentifierValue
{
public
bool
HasIdentifierValue
{
...
@@ -6087,6 +6145,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -6087,6 +6145,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
identifierValue_
;
}
get
{
return
identifierValue_
;
}
}
}
public
const
int
PositiveIntValueFieldNumber
=
4
;
private
bool
hasPositiveIntValue
;
private
bool
hasPositiveIntValue
;
private
ulong
positiveIntValue_
=
0U
L
;
private
ulong
positiveIntValue_
=
0U
L
;
public
bool
HasPositiveIntValue
{
public
bool
HasPositiveIntValue
{
...
@@ -6096,6 +6155,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -6096,6 +6155,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
positiveIntValue_
;
}
get
{
return
positiveIntValue_
;
}
}
}
public
const
int
NegativeIntValueFieldNumber
=
5
;
private
bool
hasNegativeIntValue
;
private
bool
hasNegativeIntValue
;
private
long
negativeIntValue_
=
0L
;
private
long
negativeIntValue_
=
0L
;
public
bool
HasNegativeIntValue
{
public
bool
HasNegativeIntValue
{
...
@@ -6105,6 +6165,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -6105,6 +6165,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
negativeIntValue_
;
}
get
{
return
negativeIntValue_
;
}
}
}
public
const
int
DoubleValueFieldNumber
=
6
;
private
bool
hasDoubleValue
;
private
bool
hasDoubleValue
;
private
double
doubleValue_
=
0D
;
private
double
doubleValue_
=
0D
;
public
bool
HasDoubleValue
{
public
bool
HasDoubleValue
{
...
@@ -6114,6 +6175,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
...
@@ -6114,6 +6175,7 @@ namespace Google.ProtocolBuffers.DescriptorProtos {
get
{
return
doubleValue_
;
}
get
{
return
doubleValue_
;
}
}
}
public
const
int
StringValueFieldNumber
=
7
;
private
bool
hasStringValue
;
private
bool
hasStringValue
;
private
pb
::
ByteString
stringValue_
=
pb
::
ByteString
.
Empty
;
private
pb
::
ByteString
stringValue_
=
pb
::
ByteString
.
Empty
;
public
bool
HasStringValue
{
public
bool
HasStringValue
{
...
...
todo.txt
View file @
7ee85c4e
...
@@ -9,6 +9,9 @@ Current task list (not in order)
...
@@ -9,6 +9,9 @@ Current task list (not in order)
- Avoid using reflection for messages which don't need it (is this
- Avoid using reflection for messages which don't need it (is this
possible?)
possible?)
- Add RegisterAllExtensions
- Add RegisterAllExtensions
- Add ToBuilder changes from Google's r92
- Add ToBuilder changes from Google's r92
(done? Need to check)
- Silverlight changes (as per email to Jon)
- Silverlight changes (as per email to Jon)
- Extension registration/initialization code?
From latest Java code:
r120: (Lots)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment