Interface Azure Functions Authentication
- App
- System Application
- Namespace
- System.Azure.Functions
- Versions
- 21-28
Versions171819202122232425262728
Source in 29
src/System Application/App/Azure Function/AzureFunctionsAuthentication.interface.al19 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Azure.Functions;
/// <summary>
/// Common interface for different authentication options.
/// </summary>
interface "Azure Functions Authentication"
{
/// <summary>
/// Exposes interface to authenticate request message to azure function.
/// </summary>
/// <param name="RequestMessage">Request message used to communicate with Azure function.</param>
/// <returns>True if authentication was successful; otherwise - false.</returns>
procedure Authenticate(var RequestMessage: HttpRequestMessage): Boolean
}