aboutsummaryrefslogtreecommitdiff
path: root/protos
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2008-11-24 11:11:28 +0000
committerJon Skeet <skeet@pobox.com>2008-11-24 11:11:28 +0000
commit4cf9e3c619fbd00e47d5ec2503801814d3c8b4b6 (patch)
treebf193777749c47932f7ffde7e60b116d70484baa /protos
parent1d131c98f058dc0b5e0ebef73602e09dc88fe075 (diff)
downloadprotobuf-4cf9e3c619fbd00e47d5ec2503801814d3c8b4b6.tar.gz
protobuf-4cf9e3c619fbd00e47d5ec2503801814d3c8b4b6.tar.bz2
protobuf-4cf9e3c619fbd00e47d5ec2503801814d3c8b4b6.zip
Fix property special-casing
Diffstat (limited to 'protos')
-rw-r--r--protos/google/protobuf/csharp_options.proto7
1 files changed, 3 insertions, 4 deletions
diff --git a/protos/google/protobuf/csharp_options.proto b/protos/google/protobuf/csharp_options.proto
index 29c7e8ad..41deafa3 100644
--- a/protos/google/protobuf/csharp_options.proto
+++ b/protos/google/protobuf/csharp_options.proto
@@ -22,9 +22,8 @@ extend FieldOptions {
message CSharpFieldOptions {
// Provides the ability to override the name of the property
- // generated for this field. This does not currently work with
- // messages optimised for reflection, and is only applied to the
- // actual property rather than associated methods. (Careful
- // consideration needed here...)
+ // generated for this field. This is applied to all properties
+ // and methods to do with this field, including HasFoo, FooCount,
+ // FooList etc.
optional string property_name = 1;
}