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
37823175
Unverified
Commit
37823175
authored
Sep 19, 2019
by
Jan Tattermusch
Committed by
GitHub
Sep 19, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6669 from ObsidianMinor/csharp/fix-comments
Fix incorrect Proto2 C# doc comments
parents
2a465797
c54ff8d0
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
14 deletions
+14
-14
EnumValueDescriptor.cs
csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs
+2
-2
FieldDescriptor.cs
csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs
+2
-2
FileDescriptor.cs
csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs
+2
-2
MessageDescriptor.cs
csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs
+2
-2
MethodDescriptor.cs
csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs
+2
-2
OneofDescriptor.cs
csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs
+2
-2
ServiceDescriptor.cs
csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs
+2
-2
No files found.
csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs
View file @
37823175
...
...
@@ -77,7 +77,7 @@ namespace Google.Protobuf.Reflection
public
CustomOptions
CustomOptions
=>
new
CustomOptions
(
Proto
.
Options
.
_extensions
?.
ValuesByNumber
);
/// <summary>
/// Gets a single value enum option for this descriptor
/// Gets a single value enum
value
option for this descriptor
/// </summary>
public
T
GetOption
<
T
>(
Extension
<
EnumValueOptions
,
T
>
extension
)
{
...
...
@@ -86,7 +86,7 @@ namespace Google.Protobuf.Reflection
}
/// <summary>
/// Gets a repeated value enum option for this descriptor
/// Gets a repeated value enum
value
option for this descriptor
/// </summary>
public
RepeatedField
<
T
>
GetOption
<
T
>(
RepeatedExtension
<
EnumValueOptions
,
T
>
extension
)
{
...
...
csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs
View file @
37823175
...
...
@@ -302,7 +302,7 @@ namespace Google.Protobuf.Reflection
public
CustomOptions
CustomOptions
=>
new
CustomOptions
(
Proto
.
Options
.
_extensions
?.
ValuesByNumber
);
/// <summary>
/// Gets a single value
enum
option for this descriptor
/// Gets a single value
field
option for this descriptor
/// </summary>
public
T
GetOption
<
T
>(
Extension
<
FieldOptions
,
T
>
extension
)
{
...
...
@@ -311,7 +311,7 @@ namespace Google.Protobuf.Reflection
}
/// <summary>
/// Gets a repeated value
enum
option for this descriptor
/// Gets a repeated value
field
option for this descriptor
/// </summary>
public
RepeatedField
<
T
>
GetOption
<
T
>(
RepeatedExtension
<
FieldOptions
,
T
>
extension
)
{
...
...
csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs
View file @
37823175
...
...
@@ -545,7 +545,7 @@ namespace Google.Protobuf.Reflection
public
CustomOptions
CustomOptions
=>
new
CustomOptions
(
Proto
.
Options
.
_extensions
?.
ValuesByNumber
);
/// <summary>
/// Gets a single value
enum
option for this descriptor
/// Gets a single value
file
option for this descriptor
/// </summary>
public
T
GetOption
<
T
>(
Extension
<
FileOptions
,
T
>
extension
)
{
...
...
@@ -554,7 +554,7 @@ namespace Google.Protobuf.Reflection
}
/// <summary>
/// Gets a repeated value
enum
option for this descriptor
/// Gets a repeated value
file
option for this descriptor
/// </summary>
public
RepeatedField
<
T
>
GetOption
<
T
>(
RepeatedExtension
<
FileOptions
,
T
>
extension
)
{
...
...
csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs
View file @
37823175
...
...
@@ -264,7 +264,7 @@ namespace Google.Protobuf.Reflection
public
CustomOptions
CustomOptions
=>
new
CustomOptions
(
Proto
.
Options
.
_extensions
?.
ValuesByNumber
);
/// <summary>
/// Gets a single value
enum
option for this descriptor
/// Gets a single value
message
option for this descriptor
/// </summary>
public
T
GetOption
<
T
>(
Extension
<
MessageOptions
,
T
>
extension
)
{
...
...
@@ -273,7 +273,7 @@ namespace Google.Protobuf.Reflection
}
/// <summary>
/// Gets a repeated value
enum
option for this descriptor
/// Gets a repeated value
message
option for this descriptor
/// </summary>
public
Collections
.
RepeatedField
<
T
>
GetOption
<
T
>(
RepeatedExtension
<
MessageOptions
,
T
>
extension
)
{
...
...
csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs
View file @
37823175
...
...
@@ -77,7 +77,7 @@ namespace Google.Protobuf.Reflection
public
CustomOptions
CustomOptions
=>
new
CustomOptions
(
Proto
.
Options
.
_extensions
?.
ValuesByNumber
);
/// <summary>
/// Gets a single value
enum
option for this descriptor
/// Gets a single value
method
option for this descriptor
/// </summary>
public
T
GetOption
<
T
>(
Extension
<
MethodOptions
,
T
>
extension
)
{
...
...
@@ -86,7 +86,7 @@ namespace Google.Protobuf.Reflection
}
/// <summary>
/// Gets a repeated value
enum
option for this descriptor
/// Gets a repeated value
method
option for this descriptor
/// </summary>
public
RepeatedField
<
T
>
GetOption
<
T
>(
RepeatedExtension
<
MethodOptions
,
T
>
extension
)
{
...
...
csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs
View file @
37823175
...
...
@@ -109,7 +109,7 @@ namespace Google.Protobuf.Reflection
public
CustomOptions
CustomOptions
=>
new
CustomOptions
(
proto
.
Options
.
_extensions
?.
ValuesByNumber
);
/// <summary>
/// Gets a single value
enum
option for this descriptor
/// Gets a single value
oneof
option for this descriptor
/// </summary>
public
T
GetOption
<
T
>(
Extension
<
OneofOptions
,
T
>
extension
)
{
...
...
@@ -118,7 +118,7 @@ namespace Google.Protobuf.Reflection
}
/// <summary>
/// Gets a repeated value
enum
option for this descriptor
/// Gets a repeated value
oneof
option for this descriptor
/// </summary>
public
RepeatedField
<
T
>
GetOption
<
T
>(
RepeatedExtension
<
OneofOptions
,
T
>
extension
)
{
...
...
csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs
View file @
37823175
...
...
@@ -98,7 +98,7 @@ namespace Google.Protobuf.Reflection
public
CustomOptions
CustomOptions
=>
new
CustomOptions
(
Proto
.
Options
.
_extensions
?.
ValuesByNumber
);
/// <summary>
/// Gets a single value
enum
option for this descriptor
/// Gets a single value
service
option for this descriptor
/// </summary>
public
T
GetOption
<
T
>(
Extension
<
ServiceOptions
,
T
>
extension
)
{
...
...
@@ -107,7 +107,7 @@ namespace Google.Protobuf.Reflection
}
/// <summary>
/// Gets a repeated value
enum
option for this descriptor
/// Gets a repeated value
service
option for this descriptor
/// </summary>
public
RepeatedField
<
T
>
GetOption
<
T
>(
RepeatedExtension
<
ServiceOptions
,
T
>
extension
)
{
...
...
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