Share via


CorsService.ApplyResult(CorsResult, HttpResponse) Method

Definition

Adds CORS-specific response headers to the given response.

public:
 virtual void ApplyResult(Microsoft::AspNetCore::Cors::Infrastructure::CorsResult ^ result, Microsoft::AspNetCore::Http::HttpResponse ^ response);
public virtual void ApplyResult (Microsoft.AspNetCore.Cors.Infrastructure.CorsResult result, Microsoft.AspNetCore.Http.HttpResponse response);
abstract member ApplyResult : Microsoft.AspNetCore.Cors.Infrastructure.CorsResult * Microsoft.AspNetCore.Http.HttpResponse -> unit
override this.ApplyResult : Microsoft.AspNetCore.Cors.Infrastructure.CorsResult * Microsoft.AspNetCore.Http.HttpResponse -> unit
Public Overridable Sub ApplyResult (result As CorsResult, response As HttpResponse)

Parameters

result
CorsResult

The CorsResult used to read the allowed values.

response
HttpResponse

The HttpResponse associated with the current call.

Implements

Applies to