File: System\Web\Services\WsiProfiles.cs
Web Access
Project: src\src\System.Web.Services.Description\src\System.Web.Services.Description.csproj (System.Web.Services.Description)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Web.Services
{
    [Flags]
    public enum WsiProfiles {
        None = 0x00,
        BasicProfile1_1 = 0x01,
    }
}