Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Correct spelling of "identified"
Signed-off-by: Frank Buckley <frank@frankbuckley.com>
  • Loading branch information
frankbuckley committed Oct 7, 2023
commit 7bb0d8424e07bc0128d274a6dd3b73698255efaa
32 changes: 16 additions & 16 deletions src/Dapr.Client/DaprClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ public abstract Task<BindingResponse> InvokeBindingAsync(

/// <summary>
/// Creates an <see cref="HttpRequestMessage" /> that can be used to perform service invocation for the
/// application idenfied by <paramref name="appId" /> and invokes the method specified by <paramref name="methodName" />
/// application identified by <paramref name="appId" /> and invokes the method specified by <paramref name="methodName" />
/// with the <c>POST</c> HTTP method.
/// </summary>
/// <param name="appId">The Dapr application id to invoke the method on.</param>
Expand All @@ -305,7 +305,7 @@ public HttpRequestMessage CreateInvokeMethodRequest(string appId, string methodN

/// <summary>
/// Creates an <see cref="HttpRequestMessage" /> that can be used to perform service invocation for the
/// application idenfied by <paramref name="appId" /> and invokes the method specified by <paramref name="methodName" />
/// application identified by <paramref name="appId" /> and invokes the method specified by <paramref name="methodName" />
/// with the HTTP method specified by <paramref name="httpMethod" />.
/// </summary>
/// <param name="httpMethod">The <see cref="HttpMethod" /> to use for the invocation request.</param>
Expand All @@ -316,7 +316,7 @@ public HttpRequestMessage CreateInvokeMethodRequest(string appId, string methodN

/// <summary>
/// Creates an <see cref="HttpRequestMessage" /> that can be used to perform service invocation for the
/// application idenfied by <paramref name="appId" /> and invokes the method specified by <paramref name="methodName" />
/// application identified by <paramref name="appId" /> and invokes the method specified by <paramref name="methodName" />
/// with the <c>POST</c> HTTP method and a JSON serialized request body specified by <paramref name="data" />.
/// </summary>
/// <typeparam name="TRequest">The type of the data that will be JSON serialized and provided as the request body.</typeparam>
Expand All @@ -331,7 +331,7 @@ public HttpRequestMessage CreateInvokeMethodRequest<TRequest>(string appId, stri

/// <summary>
/// Creates an <see cref="HttpRequestMessage" /> that can be used to perform service invocation for the
/// application idenfied by <paramref name="appId" /> and invokes the method specified by <paramref name="methodName" />
/// application identified by <paramref name="appId" /> and invokes the method specified by <paramref name="methodName" />
/// with the HTTP method specified by <paramref name="httpMethod" /> and a JSON serialized request body specified by
/// <paramref name="data" />.
/// </summary>
Expand Down Expand Up @@ -444,7 +444,7 @@ public HttpRequestMessage CreateInvokeMethodRequest<TRequest>(string appId, stri
public abstract Task<TResponse> InvokeMethodAsync<TResponse>(HttpRequestMessage request, CancellationToken cancellationToken = default);

/// <summary>
/// Perform service invocation for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with the <c>POST</c> HTTP method and an empty request body.
/// If the response has a non-success status code an exception will be thrown.
/// </summary>
Expand All @@ -462,7 +462,7 @@ public Task InvokeMethodAsync(
}

/// <summary>
/// Perform service invocation for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with the HTTP method specified by <paramref name="methodName" />
/// and an empty request body. If the response has a non-success status code an exception will be thrown.
/// </summary>
Expand All @@ -482,7 +482,7 @@ public Task InvokeMethodAsync(
}

/// <summary>
/// Perform service invocation for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with the <c>POST</c> HTTP method
/// and a JSON serialized request body specified by <paramref name="data" />. If the response has a non-success
/// status code an exception will be thrown.
Expand All @@ -504,7 +504,7 @@ public Task InvokeMethodAsync<TRequest>(
}

/// <summary>
/// Perform service invocation for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with the HTTP method specified by <paramref name="httpMethod" />
/// and a JSON serialized request body specified by <paramref name="data" />. If the response has a non-success
/// status code an exception will be thrown.
Expand All @@ -528,7 +528,7 @@ public Task InvokeMethodAsync<TRequest>(
}

/// <summary>
/// Perform service invocation for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with the <c>POST</c> 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 <typeparamref name="TResponse" />;
Expand All @@ -549,7 +549,7 @@ public Task<TResponse> InvokeMethodAsync<TResponse>(
}

/// <summary>
/// Perform service invocation for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with the HTTP method specified by <paramref name="httpMethod" />
/// 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 <typeparamref name="TResponse" />;
Expand All @@ -572,7 +572,7 @@ public Task<TResponse> InvokeMethodAsync<TResponse>(
}

/// <summary>
/// Perform service invocation for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with the <c>POST</c> HTTP method
/// and a JSON serialized request body specified by <paramref name="data" />. If the response has a success
/// status code the body will be deserialized using JSON to a value of type <typeparamref name="TResponse" />;
Expand All @@ -596,7 +596,7 @@ public Task<TResponse> InvokeMethodAsync<TRequest, TResponse>(
}

/// <summary>
/// Perform service invocation for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with the HTTP method specified by <paramref name="httpMethod" />
/// and a JSON serialized request body specified by <paramref name="data" />. If the response has a success
/// status code the body will be deserialized using JSON to a value of type <typeparamref name="TResponse" />;
Expand All @@ -622,7 +622,7 @@ public Task<TResponse> InvokeMethodAsync<TRequest, TResponse>(
}

/// <summary>
/// Perform service invocation using gRPC semantics for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation using gRPC semantics for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with an empty request body.
/// If the response has a non-success status code an exception will be thrown.
/// </summary>
Expand All @@ -636,7 +636,7 @@ public abstract Task InvokeMethodGrpcAsync(
CancellationToken cancellationToken = default);

/// <summary>
/// Perform service invocation using gRPC semantics for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation using gRPC semantics for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with a Protobuf serialized request body specified by <paramref name="data" />.
/// If the response has a non-success status code an exception will be thrown.
/// </summary>
Expand All @@ -654,7 +654,7 @@ public abstract Task InvokeMethodGrpcAsync<TRequest>(
where TRequest : IMessage;

/// <summary>
/// Perform service invocation using gRPC semantics for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation using gRPC semantics for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> 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 <typeparamref name="TResponse" />;
/// otherwise an exception will be thrown.
Expand All @@ -671,7 +671,7 @@ public abstract Task<TResponse> InvokeMethodGrpcAsync<TResponse>(
where TResponse : IMessage, new();

/// <summary>
/// Perform service invocation using gRPC semantics for the application idenfied by <paramref name="appId" /> and invokes the method
/// Perform service invocation using gRPC semantics for the application identified by <paramref name="appId" /> and invokes the method
/// specified by <paramref name="methodName" /> with a Protobuf serialized request body specified by <paramref name="data" />. If the response has a success
/// status code the body will be deserialized using Protobuf to a value of type <typeparamref name="TResponse" />;
/// otherwise an exception will be thrown.
Expand Down