summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/CLRConfig.cs
blob: 01ad7c31ab976101efd57f92e3ca542625053dca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Runtime.InteropServices;
using System.Security;

namespace System {

/// <summary>
/// For now, this class should be the central point to collect all managed declarations
/// of native functions designed to expose config switches.
/// In Dev11 M2.2 we will redesign this class to expose CLRConfig from within the CLR
/// and refactor managed Fx code to access all compat switches through here.
/// </summary>
[FriendAccessAllowed]
internal class CLRConfig {
    
    [FriendAccessAllowed]
    [MethodImplAttribute(MethodImplOptions.InternalCall)]
    [SuppressUnmanagedCodeSecurity]
    internal static extern bool CheckLegacyManagedDeflateStream();

    [MethodImplAttribute(MethodImplOptions.InternalCall)]
    [SuppressUnmanagedCodeSecurity]
    internal static extern bool CheckThrowUnobservedTaskExceptions();

}  // internal class CLRConfig

}  // namespace System

// file CLRConfig