Enum 9751 Client Type, source in 28
Source242526272829metadata in 28
src/System Application/App/Web Service Management/src/ClientType.Enum.al29 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.Integration;
/// <summary>
/// This enum has the web service client types.
/// </summary>
enum 9751 "Client Type"
{
Extensible = false;
/// <summary>
/// Specifies that the client type is SOAP.
/// </summary>
value(0; SOAP) { }
/// <summary>
/// Specifies that the client type is OData V3.
/// </summary>
value(1; ODataV3) { }
/// <summary>
/// Specifies that the client type is OData V4.
/// </summary>
value(2; ODataV4) { }
}