IHttpResponseFeature.OnCompleted(Func<Object,Task>, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Registers a callback to be invoked after a response has fully completed. This is intended for resource cleanup.
public:
void OnCompleted(Func<System::Object ^, System::Threading::Tasks::Task ^> ^ callback, System::Object ^ state);
public void OnCompleted (Func<object,System.Threading.Tasks.Task> callback, object state);
abstract member OnCompleted : Func<obj, System.Threading.Tasks.Task> * obj -> unit
Public Sub OnCompleted (callback As Func(Of Object, Task), state As Object)
Parameters
- state
- Object
The state to pass into the callback.