-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPluginConfiguration.cs
More file actions
57 lines (53 loc) · 1.42 KB
/
PluginConfiguration.cs
File metadata and controls
57 lines (53 loc) · 1.42 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
namespace Relativity.Server.DataExchange.Wrapper
{
using System;
/// <summary>
/// Represents the plugin configuration class object. This class cannot be inherited.
/// Implements the <see cref="System.MarshalByRefObject" />
/// </summary>
/// <seealso cref="System.MarshalByRefObject" />
public sealed class PluginConfiguration : MarshalByRefObject
{
public PluginConfiguration()
{
// Not currently supported due to Aspera API
this.UseAppDomains = false;
this.LegacyPluginDirectory = string.Empty;
this.SdkPluginDirectory = string.Empty;
}
/// <summary>
/// Determines whether or not AppDomains are used
/// Note: This is currently unsupported as there is an underlying issue with Aspera & App Domains
/// </summary>
/// <value>
/// The full directory path.
/// </value>
public bool UseAppDomains
{
get;
set;
}
/// <summary>
/// Gets or sets the full path to the directory where the legacy plugin assemblies and binaries are located.
/// </summary>
/// <value>
/// The full directory path.
/// </value>
public string LegacyPluginDirectory
{
get;
set;
}
/// <summary>
/// Gets or sets the full path to the directory where the SDK plugin assemblies and binaries are located.
/// </summary>
/// <value>
/// The full directory path.
/// </value>
public string SdkPluginDirectory
{
get;
set;
}
}
}