Interface IHttpAccessControlHandlerConfig

Specifies the HttpAccessControlHandler configuration.

Namespace: Solti.Utils.Rpc.Pipeline
Assembly: Solti.Utils.Rpc.Server.dll
Syntax
public interface IHttpAccessControlHandlerConfig

Properties

AllowedHeaders

Allowed headers.

Declaration
IReadOnlyCollection<string> AllowedHeaders { get; }
Property Value
Type Description
IReadOnlyCollection<String>

AllowedMethods

Allowed methods.

Declaration
IReadOnlyCollection<string> AllowedMethods { get; }
Property Value
Type Description
IReadOnlyCollection<String>

AllowedOrigins

The allowed origins. See https://en.wikipedia.org/wiki/Cross-origin_resource_sharing

Declaration
IReadOnlyCollection<string> AllowedOrigins { get; }
Property Value
Type Description
IReadOnlyCollection<String>

AllowLogs

Returns true if the logging is allowed.

Declaration
bool AllowLogs { get; }
Property Value
Type Description
Boolean
In This Article
Back to top Generated by DocFX