Enum 9751 Client Type in 25

App
System Application
Namespace
System.Integration

Values, 3

Versions171819202122232425262728latest

Source242526272829

Source in 25

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) { }
}

Values, 3

IdNameObsolete
0SOAP-
1ODataV3-
2ODataV4-