aboutsummaryrefslogtreecommitdiff
path: root/protos
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2012-10-14 23:03:24 -0500
committerrogerk <devnull@localhost>2012-10-14 23:03:24 -0500
commitc9bce45a01cc8861ec7c88e84d947ed6ebc8f7d1 (patch)
tree67b0bed46bb50ec47a383fc355db4a73d568b482 /protos
parent9f787cc64e47333ea717681c874843b44fee60e7 (diff)
downloadprotobuf-c9bce45a01cc8861ec7c88e84d947ed6ebc8f7d1.tar.gz
protobuf-c9bce45a01cc8861ec7c88e84d947ed6ebc8f7d1.tar.bz2
protobuf-c9bce45a01cc8861ec7c88e84d947ed6ebc8f7d1.zip
Portability Changes -
Removing uses of Enum to IConvertible from CodedIOStreams, Removed MessageStreamIterator.FromFile on non-client profiles, Removed use of Path.GetFileName, Removed uses of Converter<T1, T2> delegate, Removed Guid/DispId options from test protos
Diffstat (limited to 'protos')
-rw-r--r--protos/extest/unittest_rpc_interop.proto9
-rw-r--r--protos/extest/unittest_rpc_interop_lite.proto9
2 files changed, 16 insertions, 2 deletions
diff --git a/protos/extest/unittest_rpc_interop.proto b/protos/extest/unittest_rpc_interop.proto
index 4c9f3289..dec5b872 100644
--- a/protos/extest/unittest_rpc_interop.proto
+++ b/protos/extest/unittest_rpc_interop.proto
@@ -27,8 +27,15 @@ message RefineSearchRequest {
}
service SearchService {
+ /*
+ Add this option to specify the GuidAttribute on the service interface
option (google.protobuf.csharp_service_options).interface_id = "{A65F0925-FD11-4f94-B166-89AC4F027205}";
- rpc Search (SearchRequest) returns (SearchResponse) { option (google.protobuf.csharp_method_options).dispatch_id = 5; };
+ */
+ rpc Search (SearchRequest) returns (SearchResponse)
+ /*
+ Add this option to specify the DispIdAttribute on the service interface
+ { option (google.protobuf.csharp_method_options).dispatch_id = 5; }
+ */ ;
rpc RefineSearch (RefineSearchRequest) returns (SearchResponse);
}
diff --git a/protos/extest/unittest_rpc_interop_lite.proto b/protos/extest/unittest_rpc_interop_lite.proto
index 53fc737e..62d1c6a6 100644
--- a/protos/extest/unittest_rpc_interop_lite.proto
+++ b/protos/extest/unittest_rpc_interop_lite.proto
@@ -28,8 +28,15 @@ message RefineSearchRequest {
}
service SearchService {
+ /*
+ Add this option to specify the GuidAttribute on the service interface
option (google.protobuf.csharp_service_options).interface_id = "{A65F0925-FD11-4f94-B166-89AC4F027205}";
- rpc Search (SearchRequest) returns (SearchResponse) { option (google.protobuf.csharp_method_options).dispatch_id = 5; };
+ */
+ rpc Search (SearchRequest) returns (SearchResponse)
+ /*
+ Add this option to specify the DispIdAttribute on the service interface
+ { option (google.protobuf.csharp_method_options).dispatch_id = 5; }
+ */ ;
rpc RefineSearch (RefineSearchRequest) returns (SearchResponse);
}