Struct CspFlag
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[JsonConverter(typeof(CspFlag.CspFlagSerializer))]
[Serializable]
public readonly record struct CspFlag : IStringEnum, IEquatable<string>, IEquatable<CspFlag>
- Implements
- Inherited Members
Constructors
CspFlag(string)
public CspFlag(string value)
Parameters
valuestring
Fields
BlockAllMixedContent
public static readonly CspFlag BlockAllMixedContent
Field Value
UpgradeInsecureRequests
public static readonly CspFlag UpgradeInsecureRequests
Field Value
Properties
Value
The string value of the enum.
public string Value { get; }
Property Value
Methods
Equals(string?)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(string? other)
Parameters
otherstringAn object to compare with this object.
Returns
- bool
true if the current object is equal to the
otherparameter; otherwise, false.
FromCustom(string)
Create a string enum with the given value.
public static CspFlag FromCustom(string value)
Parameters
valuestring
Returns
ToString()
Returns the string value of the enum.
public override string ToString()
Returns
Operators
operator ==(CspFlag, string)
public static bool operator ==(CspFlag value1, string value2)
Parameters
Returns
explicit operator string(CspFlag)
public static explicit operator string(CspFlag value)
Parameters
valueCspFlag
Returns
explicit operator CspFlag(string)
public static explicit operator CspFlag(string value)
Parameters
valuestring
Returns
operator !=(CspFlag, string)
public static bool operator !=(CspFlag value1, string value2)