JsonWebKey.Q Property
Gets or sets the Property_Q constant.
Namespace: Microsoft.Azure.KeyVault.WebKey
Assembly: Microsoft.Azure.KeyVault (in Microsoft.Azure.KeyVault.dll)
Syntax
[JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling.Ignore,
NullValueHandling = NullValueHandling.Ignore, PropertyName = "q",
Required = Required.Default)]
[JsonConverterAttribute(typeof(Base64UrlConverter))]
public byte[] Q { get; set; }
public:
[JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling::Ignore,
NullValueHandling = NullValueHandling::Ignore, PropertyName = "q",
Required = Required::Default)]
[JsonConverterAttribute((Base64UrlConverter^::typeid))]
property array<unsigned char>^ Q {
array<unsigned char>^ get();
void set(array<unsigned char>^ value);
}
[<JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling.Ignore,
NullValueHandling = NullValueHandling.Ignore, PropertyName = "q",
Required = Required.Default)>]
[<JsonConverterAttribute(typeof(Base64UrlConverter))>]
member Q : byte[] with get, set
<JsonPropertyAttribute(DefaultValueHandling := DefaultValueHandling.Ignore,
NullValueHandling := NullValueHandling.Ignore, PropertyName := "q",
Required := Required.Default)>
<JsonConverterAttribute(GetType(Base64UrlConverter))>
Public Property Q As Byte()
Property Value
Type: System.Byte[]
The Property_Q constant.
See Also
JsonWebKey Class
Microsoft.Azure.KeyVault.WebKey Namespace
Return to top