IsExtensionMethodAvailable
Is the specified vault extension method available.
Syntax
// Assumes shellUI has been initialized with IShellUI instance
const results =
await shellUI.Vault.VaultExtensionMethodsOperations.IsExtensionMethodAvailable(
{
method_identifier: "<!< The method identifier.>",
},
);
Message
Name | Description | Type |
---|---|---|
method_identifier | The method identifier. | string |
Return type
Name | Description | Type |
---|---|---|
exists | Output parameter that receives the information of the extension method existence. | boolean |
is_active | Output parameter that receives the information of the state of the extension method (active/not active). | boolean |
Example
{
"exists": false,
"is_active": false
}