diff --git a/src/Dapr.Client/DaprClient.cs b/src/Dapr.Client/DaprClient.cs index 2a7299c78..361ac54bc 100644 --- a/src/Dapr.Client/DaprClient.cs +++ b/src/Dapr.Client/DaprClient.cs @@ -292,7 +292,7 @@ public abstract Task InvokeBindingAsync( /// /// Creates an that can be used to perform service invocation for the - /// application idenfied by and invokes the method specified by + /// application identified by and invokes the method specified by /// with the POST HTTP method. /// /// The Dapr application id to invoke the method on. @@ -305,7 +305,7 @@ public HttpRequestMessage CreateInvokeMethodRequest(string appId, string methodN /// /// Creates an that can be used to perform service invocation for the - /// application idenfied by and invokes the method specified by + /// application identified by and invokes the method specified by /// with the HTTP method specified by . /// /// The to use for the invocation request. @@ -316,7 +316,7 @@ public HttpRequestMessage CreateInvokeMethodRequest(string appId, string methodN /// /// Creates an that can be used to perform service invocation for the - /// application idenfied by and invokes the method specified by + /// application identified by and invokes the method specified by /// with the POST HTTP method and a JSON serialized request body specified by . /// /// The type of the data that will be JSON serialized and provided as the request body. @@ -331,7 +331,7 @@ public HttpRequestMessage CreateInvokeMethodRequest(string appId, stri /// /// Creates an that can be used to perform service invocation for the - /// application idenfied by and invokes the method specified by + /// application identified by and invokes the method specified by /// with the HTTP method specified by and a JSON serialized request body specified by /// . /// @@ -444,7 +444,7 @@ public HttpRequestMessage CreateInvokeMethodRequest(string appId, stri public abstract Task InvokeMethodAsync(HttpRequestMessage request, CancellationToken cancellationToken = default); /// - /// Perform service invocation for the application idenfied by and invokes the method + /// Perform service invocation for the application identified by and invokes the method /// specified by with the POST HTTP method and an empty request body. /// If the response has a non-success status code an exception will be thrown. /// @@ -462,7 +462,7 @@ public Task InvokeMethodAsync( } /// - /// Perform service invocation for the application idenfied by and invokes the method + /// Perform service invocation for the application identified by and invokes the method /// specified by with the HTTP method specified by /// and an empty request body. If the response has a non-success status code an exception will be thrown. /// @@ -482,7 +482,7 @@ public Task InvokeMethodAsync( } /// - /// Perform service invocation for the application idenfied by and invokes the method + /// Perform service invocation for the application identified by and invokes the method /// specified by with the POST HTTP method /// and a JSON serialized request body specified by . If the response has a non-success /// status code an exception will be thrown. @@ -504,7 +504,7 @@ public Task InvokeMethodAsync( } /// - /// Perform service invocation for the application idenfied by and invokes the method + /// Perform service invocation for the application identified by and invokes the method /// specified by with the HTTP method specified by /// and a JSON serialized request body specified by . If the response has a non-success /// status code an exception will be thrown. @@ -528,7 +528,7 @@ public Task InvokeMethodAsync( } /// - /// Perform service invocation for the application idenfied by and invokes the method + /// Perform service invocation for the application identified by and invokes the method /// specified by with the POST HTTP method /// and an empty request body. If the response has a success /// status code the body will be deserialized using JSON to a value of type ; @@ -549,7 +549,7 @@ public Task InvokeMethodAsync( } /// - /// Perform service invocation for the application idenfied by and invokes the method + /// Perform service invocation for the application identified by and invokes the method /// specified by with the HTTP method specified by /// and an empty request body. If the response has a success /// status code the body will be deserialized using JSON to a value of type ; @@ -572,7 +572,7 @@ public Task InvokeMethodAsync( } /// - /// Perform service invocation for the application idenfied by and invokes the method + /// Perform service invocation for the application identified by and invokes the method /// specified by with the POST HTTP method /// and a JSON serialized request body specified by . If the response has a success /// status code the body will be deserialized using JSON to a value of type ; @@ -596,7 +596,7 @@ public Task InvokeMethodAsync( } /// - /// Perform service invocation for the application idenfied by and invokes the method + /// Perform service invocation for the application identified by and invokes the method /// specified by with the HTTP method specified by /// and a JSON serialized request body specified by . If the response has a success /// status code the body will be deserialized using JSON to a value of type ; @@ -622,7 +622,7 @@ public Task InvokeMethodAsync( } /// - /// Perform service invocation using gRPC semantics for the application idenfied by and invokes the method + /// Perform service invocation using gRPC semantics for the application identified by and invokes the method /// specified by with an empty request body. /// If the response has a non-success status code an exception will be thrown. /// @@ -636,7 +636,7 @@ public abstract Task InvokeMethodGrpcAsync( CancellationToken cancellationToken = default); /// - /// Perform service invocation using gRPC semantics for the application idenfied by and invokes the method + /// Perform service invocation using gRPC semantics for the application identified by and invokes the method /// specified by with a Protobuf serialized request body specified by . /// If the response has a non-success status code an exception will be thrown. /// @@ -654,7 +654,7 @@ public abstract Task InvokeMethodGrpcAsync( where TRequest : IMessage; /// - /// Perform service invocation using gRPC semantics for the application idenfied by and invokes the method + /// Perform service invocation using gRPC semantics for the application identified by and invokes the method /// specified by with an empty request body. If the response has a success /// status code the body will be deserialized using Protobuf to a value of type ; /// otherwise an exception will be thrown. @@ -671,7 +671,7 @@ public abstract Task InvokeMethodGrpcAsync( where TResponse : IMessage, new(); /// - /// Perform service invocation using gRPC semantics for the application idenfied by and invokes the method + /// Perform service invocation using gRPC semantics for the application identified by and invokes the method /// specified by with a Protobuf serialized request body specified by . If the response has a success /// status code the body will be deserialized using Protobuf to a value of type ; /// otherwise an exception will be thrown.