CorsServiceCollectionExtensions.AddCors 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
AddCors(IServiceCollection) |
將跨原始來源資源分享服務新增至指定的 IServiceCollection 。 |
AddCors(IServiceCollection, Action<CorsOptions>) |
將跨原始來源資源分享服務新增至指定的 IServiceCollection 。 |
AddCors(IServiceCollection)
將跨原始來源資源分享服務新增至指定的 IServiceCollection 。
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddCors (this Microsoft.Extensions.DependencyInjection.IServiceCollection services);
static member AddCors : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddCors (services As IServiceCollection) As IServiceCollection
參數
- services
- IServiceCollection
要新增服務的 IServiceCollection。
傳回
IServiceCollection,以便鏈結其他呼叫。
適用於
AddCors(IServiceCollection, Action<CorsOptions>)
將跨原始來源資源分享服務新增至指定的 IServiceCollection 。
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddCors (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.AspNetCore.Cors.Infrastructure.CorsOptions> setupAction);
static member AddCors : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.AspNetCore.Cors.Infrastructure.CorsOptions> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddCors (services As IServiceCollection, setupAction As Action(Of CorsOptions)) As IServiceCollection
參數
- services
- IServiceCollection
要新增服務的 IServiceCollection。
- setupAction
- Action<CorsOptions>
用於設定所提供 CorsOptions 的 Action<T>。
傳回
IServiceCollection,以便鏈結其他呼叫。