From 0de9bd3d12d4e4d101c58bfa6bc3ff1a5d5982a9 Mon Sep 17 00:00:00 2001 From: Mehrdad Afshari Date: Wed, 6 Jun 2018 21:03:11 -0700 Subject: [PATCH] Remove EXPERIMENTAL API notice on C# interceptor API --- src/csharp/Grpc.Core/Interceptors/CallInvokerExtensions.cs | 1 - src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs | 1 - src/csharp/Grpc.Core/Interceptors/ClientInterceptorContext.cs | 1 - src/csharp/Grpc.Core/Interceptors/Interceptor.cs | 1 - .../Interceptors/ServerServiceDefinitionExtensions.cs | 3 --- 5 files changed, 7 deletions(-) diff --git a/src/csharp/Grpc.Core/Interceptors/CallInvokerExtensions.cs b/src/csharp/Grpc.Core/Interceptors/CallInvokerExtensions.cs index 421b5d379e1..39c24d01577 100644 --- a/src/csharp/Grpc.Core/Interceptors/CallInvokerExtensions.cs +++ b/src/csharp/Grpc.Core/Interceptors/CallInvokerExtensions.cs @@ -24,7 +24,6 @@ namespace Grpc.Core.Interceptors { /// /// Extends the CallInvoker class to provide the interceptor facility on the client side. - /// This is an EXPERIMENTAL API. /// public static class CallInvokerExtensions { diff --git a/src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs b/src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs index 00b2fa8becc..c7d0c2472a1 100644 --- a/src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs +++ b/src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs @@ -22,7 +22,6 @@ namespace Grpc.Core.Interceptors { /// /// Provides extension methods to make it easy to register interceptors on Channel objects. - /// This is an EXPERIMENTAL API. /// public static class ChannelExtensions { diff --git a/src/csharp/Grpc.Core/Interceptors/ClientInterceptorContext.cs b/src/csharp/Grpc.Core/Interceptors/ClientInterceptorContext.cs index de06a770771..4665fc553b9 100644 --- a/src/csharp/Grpc.Core/Interceptors/ClientInterceptorContext.cs +++ b/src/csharp/Grpc.Core/Interceptors/ClientInterceptorContext.cs @@ -25,7 +25,6 @@ namespace Grpc.Core.Interceptors { /// /// Carries along the context associated with intercepted invocations on the client side. - /// This is an EXPERIMENTAL API. /// public struct ClientInterceptorContext where TRequest : class diff --git a/src/csharp/Grpc.Core/Interceptors/Interceptor.cs b/src/csharp/Grpc.Core/Interceptors/Interceptor.cs index 56a30c34af6..ab708034f3c 100644 --- a/src/csharp/Grpc.Core/Interceptors/Interceptor.cs +++ b/src/csharp/Grpc.Core/Interceptors/Interceptor.cs @@ -25,7 +25,6 @@ namespace Grpc.Core.Interceptors { /// /// Serves as the base class for gRPC interceptors. - /// This is an EXPERIMENTAL API. /// public abstract class Interceptor { diff --git a/src/csharp/Grpc.Core/Interceptors/ServerServiceDefinitionExtensions.cs b/src/csharp/Grpc.Core/Interceptors/ServerServiceDefinitionExtensions.cs index b9b53247ce1..8987544f7f4 100644 --- a/src/csharp/Grpc.Core/Interceptors/ServerServiceDefinitionExtensions.cs +++ b/src/csharp/Grpc.Core/Interceptors/ServerServiceDefinitionExtensions.cs @@ -24,14 +24,12 @@ namespace Grpc.Core.Interceptors { /// /// Extends the ServerServiceDefinition class to add methods used to register interceptors on the server side. - /// This is an EXPERIMENTAL API. /// public static class ServerServiceDefinitionExtensions { /// /// Returns a instance that /// intercepts incoming calls to the underlying service handler through the given interceptor. - /// This is an EXPERIMENTAL API. /// /// The instance to register interceptors on. /// The interceptor to intercept the incoming invocations with. @@ -52,7 +50,6 @@ namespace Grpc.Core.Interceptors /// /// Returns a instance that /// intercepts incoming calls to the underlying service handler through the given interceptors. - /// This is an EXPERIMENTAL API. /// /// The instance to register interceptors on. ///