KeyOperationResult.Result Property

 

Gets or sets the result of the key operation.

Namespace:   Microsoft.Azure.KeyVault
Assembly:  Microsoft.Azure.KeyVault (in Microsoft.Azure.KeyVault.dll)

Syntax

[JsonConverterAttribute(typeof(Base64UrlConverter))]
[JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling.Ignore, 
    NullValueHandling = NullValueHandling.Ignore, PropertyName = "value", 
    Required = Required.Always)]
public byte[] Result { get; set; }
public:
[JsonConverterAttribute((Base64UrlConverter^::typeid))]
[JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling::Ignore, 
    NullValueHandling = NullValueHandling::Ignore, PropertyName = "value", 
    Required = Required::Always)]
property array<unsigned char>^ Result {
    array<unsigned char>^ get();
    void set(array<unsigned char>^ value);
}
[<JsonConverterAttribute(typeof(Base64UrlConverter))>]
[<JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling.Ignore,
    NullValueHandling = NullValueHandling.Ignore, PropertyName = "value",
    Required = Required.Always)>]
member Result : byte[] with get, set
<JsonConverterAttribute(GetType(Base64UrlConverter))>
<JsonPropertyAttribute(DefaultValueHandling := DefaultValueHandling.Ignore,
    NullValueHandling := NullValueHandling.Ignore, PropertyName := "value",
    Required := Required.Always)>
Public Property Result As Byte()

Property Value

Type: System.Byte[]

The result of the key operation.

See Also

KeyOperationResult Class
Microsoft.Azure.KeyVault Namespace

Return to top