Remove EXPERIMENTAL API notice on C# interceptor API

pull/15668/head
Mehrdad Afshari 7 years ago
parent f03344e73a
commit 0de9bd3d12
  1. 1
      src/csharp/Grpc.Core/Interceptors/CallInvokerExtensions.cs
  2. 1
      src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs
  3. 1
      src/csharp/Grpc.Core/Interceptors/ClientInterceptorContext.cs
  4. 1
      src/csharp/Grpc.Core/Interceptors/Interceptor.cs
  5. 3
      src/csharp/Grpc.Core/Interceptors/ServerServiceDefinitionExtensions.cs

@ -24,7 +24,6 @@ namespace Grpc.Core.Interceptors
{ {
/// <summary> /// <summary>
/// Extends the CallInvoker class to provide the interceptor facility on the client side. /// Extends the CallInvoker class to provide the interceptor facility on the client side.
/// This is an EXPERIMENTAL API.
/// </summary> /// </summary>
public static class CallInvokerExtensions public static class CallInvokerExtensions
{ {

@ -22,7 +22,6 @@ namespace Grpc.Core.Interceptors
{ {
/// <summary> /// <summary>
/// Provides extension methods to make it easy to register interceptors on Channel objects. /// Provides extension methods to make it easy to register interceptors on Channel objects.
/// This is an EXPERIMENTAL API.
/// </summary> /// </summary>
public static class ChannelExtensions public static class ChannelExtensions
{ {

@ -25,7 +25,6 @@ namespace Grpc.Core.Interceptors
{ {
/// <summary> /// <summary>
/// Carries along the context associated with intercepted invocations on the client side. /// Carries along the context associated with intercepted invocations on the client side.
/// This is an EXPERIMENTAL API.
/// </summary> /// </summary>
public struct ClientInterceptorContext<TRequest, TResponse> public struct ClientInterceptorContext<TRequest, TResponse>
where TRequest : class where TRequest : class

@ -25,7 +25,6 @@ namespace Grpc.Core.Interceptors
{ {
/// <summary> /// <summary>
/// Serves as the base class for gRPC interceptors. /// Serves as the base class for gRPC interceptors.
/// This is an EXPERIMENTAL API.
/// </summary> /// </summary>
public abstract class Interceptor public abstract class Interceptor
{ {

@ -24,14 +24,12 @@ namespace Grpc.Core.Interceptors
{ {
/// <summary> /// <summary>
/// Extends the ServerServiceDefinition class to add methods used to register interceptors on the server side. /// Extends the ServerServiceDefinition class to add methods used to register interceptors on the server side.
/// This is an EXPERIMENTAL API.
/// </summary> /// </summary>
public static class ServerServiceDefinitionExtensions public static class ServerServiceDefinitionExtensions
{ {
/// <summary> /// <summary>
/// Returns a <see cref="Grpc.Core.ServerServiceDefinition" /> instance that /// Returns a <see cref="Grpc.Core.ServerServiceDefinition" /> instance that
/// intercepts incoming calls to the underlying service handler through the given interceptor. /// intercepts incoming calls to the underlying service handler through the given interceptor.
/// This is an EXPERIMENTAL API.
/// </summary> /// </summary>
/// <param name="serverServiceDefinition">The <see cref="Grpc.Core.ServerServiceDefinition" /> instance to register interceptors on.</param> /// <param name="serverServiceDefinition">The <see cref="Grpc.Core.ServerServiceDefinition" /> instance to register interceptors on.</param>
/// <param name="interceptor">The interceptor to intercept the incoming invocations with.</param> /// <param name="interceptor">The interceptor to intercept the incoming invocations with.</param>
@ -52,7 +50,6 @@ namespace Grpc.Core.Interceptors
/// <summary> /// <summary>
/// Returns a <see cref="Grpc.Core.ServerServiceDefinition" /> instance that /// Returns a <see cref="Grpc.Core.ServerServiceDefinition" /> instance that
/// intercepts incoming calls to the underlying service handler through the given interceptors. /// intercepts incoming calls to the underlying service handler through the given interceptors.
/// This is an EXPERIMENTAL API.
/// </summary> /// </summary>
/// <param name="serverServiceDefinition">The <see cref="Grpc.Core.ServerServiceDefinition" /> instance to register interceptors on.</param> /// <param name="serverServiceDefinition">The <see cref="Grpc.Core.ServerServiceDefinition" /> instance to register interceptors on.</param>
/// <param name="interceptors"> /// <param name="interceptors">

Loading…
Cancel
Save