Skip to content

Commit d5a1920

Browse files
Merge pull request #250069 from mattchenderson/funcasp
removing old statement about HTTP trigger
2 parents a40c48f + 8f3add6 commit d5a1920

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

articles/azure-functions/dotnet-isolated-process-guide.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -372,9 +372,7 @@ The trigger attribute specifies the trigger type and binds input data to a metho
372372

373373
The `Function` attribute marks the method as a function entry point. The name must be unique within a project, start with a letter and only contain letters, numbers, `_`, and `-`, up to 127 characters in length. Project templates often create a method named `Run`, but the method name can be any valid C# method name.
374374

375-
Bindings can provide data as strings, arrays, and serializable types, such as plain old class objects (POCOs). You can also bind to [types from some service SDKs](#sdk-types).
376-
377-
For HTTP triggers, you must use [HttpRequestData] and [HttpResponseData] to access the request and response data. This is because you don't have access to the original HTTP request and response objects when using .NET Functions isolated worker process.
375+
Bindings can provide data as strings, arrays, and serializable types, such as plain old class objects (POCOs). You can also bind to [types from some service SDKs](#sdk-types). For HTTP triggers, see the [HTTP trigger](#http-trigger) section below.
378376

379377
For a complete set of reference samples for using triggers and bindings with isolated worker process functions, see the [binding extensions reference sample](https://github.com/Azure/azure-functions-dotnet-worker/blob/main/samples/Extensions).
380378

0 commit comments

Comments
 (0)