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
045b528d
Commit
045b528d
authored
Feb 04, 2016
by
Jon Skeet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Generated code changes from previous commit
parent
7762f163
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
53 additions
and
53 deletions
+53
-53
Addressbook.cs
csharp/src/AddressBook/Addressbook.cs
+3
-3
Conformance.cs
csharp/src/Google.Protobuf.Conformance/Conformance.cs
+14
-14
UnittestIssues.cs
csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs
+3
-3
UnittestProto3.cs
csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs
+11
-11
Descriptor.cs
csharp/src/Google.Protobuf/Reflection/Descriptor.cs
+1
-1
Any.cs
csharp/src/Google.Protobuf/WellKnownTypes/Any.cs
+2
-2
Api.cs
csharp/src/Google.Protobuf/WellKnownTypes/Api.cs
+7
-7
SourceContext.cs
csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs
+1
-1
Struct.cs
csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs
+1
-1
Type.cs
csharp/src/Google.Protobuf/WellKnownTypes/Type.cs
+8
-8
Wrappers.cs
csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs
+2
-2
No files found.
csharp/src/AddressBook/Addressbook.cs
View file @
045b528d
...
...
@@ -82,7 +82,7 @@ namespace Google.Protobuf.Examples.AddressBook {
public
string
Name
{
get
{
return
name_
;
}
set
{
name_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
name_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -105,7 +105,7 @@ namespace Google.Protobuf.Examples.AddressBook {
public
string
Email
{
get
{
return
email_
;
}
set
{
email_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
email_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -267,7 +267,7 @@ namespace Google.Protobuf.Examples.AddressBook {
public
string
Number
{
get
{
return
number_
;
}
set
{
number_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
number_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
csharp/src/Google.Protobuf.Conformance/Conformance.cs
View file @
045b528d
...
...
@@ -261,7 +261,7 @@ namespace Conformance {
public
pb
::
ByteString
ProtobufPayload
{
get
{
return
payloadCase_
==
PayloadOneofCase
.
ProtobufPayload
?
(
pb
::
ByteString
)
payload_
:
pb
::
ByteString
.
Empty
;
}
set
{
payload_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
payload_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
payloadCase_
=
PayloadOneofCase
.
ProtobufPayload
;
}
}
...
...
@@ -271,7 +271,7 @@ namespace Conformance {
public
string
JsonPayload
{
get
{
return
payloadCase_
==
PayloadOneofCase
.
JsonPayload
?
(
string
)
payload_
:
""
;
}
set
{
payload_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
payload_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
payloadCase_
=
PayloadOneofCase
.
JsonPayload
;
}
}
...
...
@@ -471,7 +471,7 @@ namespace Conformance {
public
string
ParseError
{
get
{
return
resultCase_
==
ResultOneofCase
.
ParseError
?
(
string
)
result_
:
""
;
}
set
{
result_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
result_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
resultCase_
=
ResultOneofCase
.
ParseError
;
}
}
...
...
@@ -486,7 +486,7 @@ namespace Conformance {
public
string
SerializeError
{
get
{
return
resultCase_
==
ResultOneofCase
.
SerializeError
?
(
string
)
result_
:
""
;
}
set
{
result_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
result_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
resultCase_
=
ResultOneofCase
.
SerializeError
;
}
}
...
...
@@ -501,7 +501,7 @@ namespace Conformance {
public
string
RuntimeError
{
get
{
return
resultCase_
==
ResultOneofCase
.
RuntimeError
?
(
string
)
result_
:
""
;
}
set
{
result_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
result_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
resultCase_
=
ResultOneofCase
.
RuntimeError
;
}
}
...
...
@@ -515,7 +515,7 @@ namespace Conformance {
public
pb
::
ByteString
ProtobufPayload
{
get
{
return
resultCase_
==
ResultOneofCase
.
ProtobufPayload
?
(
pb
::
ByteString
)
result_
:
pb
::
ByteString
.
Empty
;
}
set
{
result_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
result_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
resultCase_
=
ResultOneofCase
.
ProtobufPayload
;
}
}
...
...
@@ -529,7 +529,7 @@ namespace Conformance {
public
string
JsonPayload
{
get
{
return
resultCase_
==
ResultOneofCase
.
JsonPayload
?
(
string
)
result_
:
""
;
}
set
{
result_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
result_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
resultCase_
=
ResultOneofCase
.
JsonPayload
;
}
}
...
...
@@ -543,7 +543,7 @@ namespace Conformance {
public
string
Skipped
{
get
{
return
resultCase_
==
ResultOneofCase
.
Skipped
?
(
string
)
result_
:
""
;
}
set
{
result_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
result_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
resultCase_
=
ResultOneofCase
.
Skipped
;
}
}
...
...
@@ -1008,7 +1008,7 @@ namespace Conformance {
public
string
OptionalString
{
get
{
return
optionalString_
;
}
set
{
optionalString_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
optionalString_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -1018,7 +1018,7 @@ namespace Conformance {
public
pb
::
ByteString
OptionalBytes
{
get
{
return
optionalBytes_
;
}
set
{
optionalBytes_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
optionalBytes_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -1068,7 +1068,7 @@ namespace Conformance {
public
string
OptionalStringPiece
{
get
{
return
optionalStringPiece_
;
}
set
{
optionalStringPiece_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
optionalStringPiece_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -1078,7 +1078,7 @@ namespace Conformance {
public
string
OptionalCord
{
get
{
return
optionalCord_
;
}
set
{
optionalCord_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
optionalCord_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -1483,7 +1483,7 @@ namespace Conformance {
public
string
OneofString
{
get
{
return
oneofFieldCase_
==
OneofFieldOneofCase
.
OneofString
?
(
string
)
oneofField_
:
""
;
}
set
{
oneofField_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
oneofField_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
oneofFieldCase_
=
OneofFieldOneofCase
.
OneofString
;
}
}
...
...
@@ -1493,7 +1493,7 @@ namespace Conformance {
public
pb
::
ByteString
OneofBytes
{
get
{
return
oneofFieldCase_
==
OneofFieldOneofCase
.
OneofBytes
?
(
pb
::
ByteString
)
oneofField_
:
pb
::
ByteString
.
Empty
;
}
set
{
oneofField_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
oneofField_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
oneofFieldCase_
=
OneofFieldOneofCase
.
OneofBytes
;
}
}
...
...
csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs
View file @
045b528d
...
...
@@ -1164,7 +1164,7 @@ namespace UnitTest.Issues.TestProtos {
public
string
O1String
{
get
{
return
o1Case_
==
O1OneofCase
.
O1String
?
(
string
)
o1_
:
""
;
}
set
{
o1_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
o1_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
o1Case_
=
O1OneofCase
.
O1String
;
}
}
...
...
@@ -1185,7 +1185,7 @@ namespace UnitTest.Issues.TestProtos {
public
string
PlainString
{
get
{
return
plainString_
;
}
set
{
plainString_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
plainString_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -1204,7 +1204,7 @@ namespace UnitTest.Issues.TestProtos {
public
string
O2String
{
get
{
return
o2Case_
==
O2OneofCase
.
O2String
?
(
string
)
o2_
:
""
;
}
set
{
o2_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
o2_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
o2Case_
=
O2OneofCase
.
O2String
;
}
}
...
...
csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs
View file @
045b528d
...
...
@@ -459,7 +459,7 @@ namespace Google.Protobuf.TestProtos {
public
string
SingleString
{
get
{
return
singleString_
;
}
set
{
singleString_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
singleString_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -469,7 +469,7 @@ namespace Google.Protobuf.TestProtos {
public
pb
::
ByteString
SingleBytes
{
get
{
return
singleBytes_
;
}
set
{
singleBytes_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
singleBytes_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -775,7 +775,7 @@ namespace Google.Protobuf.TestProtos {
public
string
OneofString
{
get
{
return
oneofFieldCase_
==
OneofFieldOneofCase
.
OneofString
?
(
string
)
oneofField_
:
""
;
}
set
{
oneofField_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
oneofField_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
oneofFieldCase_
=
OneofFieldOneofCase
.
OneofString
;
}
}
...
...
@@ -785,7 +785,7 @@ namespace Google.Protobuf.TestProtos {
public
pb
::
ByteString
OneofBytes
{
get
{
return
oneofFieldCase_
==
OneofFieldOneofCase
.
OneofBytes
?
(
pb
::
ByteString
)
oneofField_
:
pb
::
ByteString
.
Empty
;
}
set
{
oneofField_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
oneofField_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
oneofFieldCase_
=
OneofFieldOneofCase
.
OneofBytes
;
}
}
...
...
@@ -2787,7 +2787,7 @@ namespace Google.Protobuf.TestProtos {
public
string
StringField
{
get
{
return
stringField_
;
}
set
{
stringField_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
stringField_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -3045,7 +3045,7 @@ namespace Google.Protobuf.TestProtos {
public
string
MyString
{
get
{
return
myString_
;
}
set
{
myString_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
myString_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -3480,7 +3480,7 @@ namespace Google.Protobuf.TestProtos {
public
string
Data
{
get
{
return
data_
;
}
set
{
data_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
data_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -3678,7 +3678,7 @@ namespace Google.Protobuf.TestProtos {
public
pb
::
ByteString
Data
{
get
{
return
data_
;
}
set
{
data_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
data_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -3781,7 +3781,7 @@ namespace Google.Protobuf.TestProtos {
public
pb
::
ByteString
Data
{
get
{
return
data_
;
}
set
{
data_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
data_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -4425,7 +4425,7 @@ namespace Google.Protobuf.TestProtos {
public
string
FooString
{
get
{
return
fooCase_
==
FooOneofCase
.
FooString
?
(
string
)
foo_
:
""
;
}
set
{
foo_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
foo_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
fooCase_
=
FooOneofCase
.
FooString
;
}
}
...
...
@@ -5528,7 +5528,7 @@ namespace Google.Protobuf.TestProtos {
public
string
A
{
get
{
return
a_
;
}
set
{
a_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
a_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
csharp/src/Google.Protobuf/Reflection/Descriptor.cs
View file @
045b528d
...
...
@@ -5301,7 +5301,7 @@ namespace Google.Protobuf.Reflection {
public
string
SourceFile
{
get
{
return
sourceFile_
;
}
set
{
sourceFile_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
sourceFile_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Any.cs
View file @
045b528d
...
...
@@ -124,7 +124,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
TypeUrl
{
get
{
return
typeUrl_
;
}
set
{
typeUrl_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
typeUrl_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -137,7 +137,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
pb
::
ByteString
Value
{
get
{
return
value_
;
}
set
{
value_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
value_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Api.cs
View file @
045b528d
...
...
@@ -97,7 +97,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Name
{
get
{
return
name_
;
}
set
{
name_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
name_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -153,7 +153,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Version
{
get
{
return
version_
;
}
set
{
version_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
version_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -388,7 +388,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Name
{
get
{
return
name_
;
}
set
{
name_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
name_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -401,7 +401,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
RequestTypeUrl
{
get
{
return
requestTypeUrl_
;
}
set
{
requestTypeUrl_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
requestTypeUrl_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -427,7 +427,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
ResponseTypeUrl
{
get
{
return
responseTypeUrl_
;
}
set
{
responseTypeUrl_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
responseTypeUrl_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -740,7 +740,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Name
{
get
{
return
name_
;
}
set
{
name_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
name_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -754,7 +754,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Root
{
get
{
return
root_
;
}
set
{
root_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
root_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs
View file @
045b528d
...
...
@@ -79,7 +79,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
FileName
{
get
{
return
fileName_
;
}
set
{
fileName_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
fileName_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs
View file @
045b528d
...
...
@@ -262,7 +262,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
StringValue
{
get
{
return
kindCase_
==
KindOneofCase
.
StringValue
?
(
string
)
kind_
:
""
;
}
set
{
kind_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
kind_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
kindCase_
=
KindOneofCase
.
StringValue
;
}
}
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Type.cs
View file @
045b528d
...
...
@@ -133,7 +133,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Name
{
get
{
return
name_
;
}
set
{
name_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
name_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -417,7 +417,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Name
{
get
{
return
name_
;
}
set
{
name_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
name_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -431,7 +431,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
TypeUrl
{
get
{
return
typeUrl_
;
}
set
{
typeUrl_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
typeUrl_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -483,7 +483,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
JsonName
{
get
{
return
jsonName_
;
}
set
{
jsonName_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
jsonName_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -496,7 +496,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
DefaultValue
{
get
{
return
defaultValue_
;
}
set
{
defaultValue_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
defaultValue_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -857,7 +857,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Name
{
get
{
return
name_
;
}
set
{
name_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
name_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -1074,7 +1074,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Name
{
get
{
return
name_
;
}
set
{
name_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
name_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -1235,7 +1235,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Name
{
get
{
return
name_
;
}
set
{
name_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
name_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs
View file @
045b528d
...
...
@@ -869,7 +869,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
string
Value
{
get
{
return
value_
;
}
set
{
value_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
value_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
@@ -980,7 +980,7 @@ namespace Google.Protobuf.WellKnownTypes {
public
pb
::
ByteString
Value
{
get
{
return
value_
;
}
set
{
value_
=
pb
::
Preconditions
.
CheckNotNull
(
value
,
"value"
);
value_
=
pb
::
Pr
otoPr
econditions
.
CheckNotNull
(
value
,
"value"
);
}
}
...
...
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