-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCapabilityModuleKind.cs
More file actions
22 lines (21 loc) · 1.68 KB
/
Copy pathCapabilityModuleKind.cs
File metadata and controls
22 lines (21 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace AIKernel.Enums;
/// <summary>
/// Declares how an external capability module is packaged or invoked.
/// </summary>
/// <include file="docs.en.xml" path="doc/members/member[@name='T:AIKernel.Enums.CapabilityModuleKind']" />
/// <include file="docs.ja.xml" path="doc/members/member[@name='T:AIKernel.Enums.CapabilityModuleKind']" />
public enum CapabilityModuleKind
{
/// <summary>Gets the Unknown value exposed by the AIKernel public contract surface. JA: AIKernel の公開契約サーフェスで公開される Unknown 値を取得します。</summary>
Unknown = 0,
/// <summary>Gets the CliExecutable value exposed by the AIKernel public contract surface. JA: AIKernel の公開契約サーフェスで公開される CliExecutable 値を取得します。</summary>
CliExecutable = 1,
/// <summary>Gets the ManagedAssembly value exposed by the AIKernel public contract surface. JA: AIKernel の公開契約サーフェスで公開される ManagedAssembly 値を取得します。</summary>
ManagedAssembly = 2,
/// <summary>Gets the NativeLibrary value exposed by the AIKernel public contract surface. JA: AIKernel の公開契約サーフェスで公開される NativeLibrary 値を取得します。</summary>
NativeLibrary = 3,
/// <summary>Gets the DslRom value exposed by the AIKernel public contract surface. JA: AIKernel の公開契約サーフェスで公開される DslRom 値を取得します。</summary>
DslRom = 4,
/// <summary>Gets the RemoteEndpoint value exposed by the AIKernel public contract surface. JA: AIKernel の公開契約サーフェスで公開される RemoteEndpoint 値を取得します。</summary>
RemoteEndpoint = 5
}