Class ClearSiteDataHeaderValue
Represents value of Clear-Site-Data header.
Inheritance
System.Object
ClearSiteDataHeaderValue
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Lib.AspNetCore.Security.Http.Headers
Assembly: Lib.AspNetCore.Security.dll
Syntax
public class ClearSiteDataHeaderValue
Properties
ClearCache
Gets or sets the value indicating if server wishes to remove locally cached data associated with the origin of a particular response’s url.
Declaration
public bool ClearCache { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ClearCookies
Gets or sets the value indicating if server wishes to remove cookies associated with the origin of a particular response’s url.
Declaration
public bool ClearCookies { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ClearExecutionContexts
Gets or sets the value indicating if server wishes to neuter and reload execution contexts currently rendering the origin of a particular response’s url.
Declaration
public bool ClearExecutionContexts { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ClearStorage
Gets or sets the value indicating if server wishes to remove locally stored data associated with the origin of a particular response’s url.
Declaration
public bool ClearStorage { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
ToString()
Gets the string representation of header value.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | The string representation of header value. |
Overrides
System.Object.ToString()