FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ClearScript/ClearScript/HostSettings.cs at master · QPC-database/ClearScript · GitHub
QPC-database
/
ClearScript
Public
forked from
ClearFoundry/ClearScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ClearScript
/
ClearScript
/
HostSettings.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (36 loc) · 1.5 KB
Breadcrumbs
ClearScript
/
ClearScript
/
HostSettings.cs
Copy path
File metadata and controls
38 lines (36 loc) · 1.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
35
36
37
38
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
namespace
Microsoft
.
ClearScript
{
/// <summary>
/// Defines properties that comprise ClearScript's global configuration.
/// </summary>
public
static
class
HostSettings
{
/// <summary>
/// Enables or disables assembly table usage.
/// </summary>
/// <remarks>
///<para>
/// The assembly table is a legacy internal feature intended to accelerate assembly
/// loading. Because it relies on deprecated platform functionality, this feature is now
/// disabled by default. Although its replacement is simpler and more efficient, the
/// feature is still available to provide full compatibility with older ClearScript
/// releases.
/// </para>
///<para>
/// The assembly table feature is only available on .NET Framework. This property has no
/// effect on other platforms.
/// </para>
/// </remarks>
public
static
bool
UseAssemblyTable
{
get
;
set
;
}
/// <summary>
/// Gets or sets a semicolon-delimited list of directory paths to search for auxiliary files.
/// </summary>
/// <remarks>
/// This property allows the host to augment ClearScript's algorithm for locating unmanaged
/// resources such as native assemblies and related data files.
/// </remarks>
public
static
string
AuxiliarySearchPath
{
get
;
set
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL