-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIDotNetModel.cs
More file actions
37 lines (30 loc) · 1.17 KB
/
IDotNetModel.cs
File metadata and controls
37 lines (30 loc) · 1.17 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
using CodeFactory.SourceCode;
namespace CodeFactory.DotNet
{
/// <summary>
/// Base implementation all dot net models must implement.
/// </summary>
public interface IDotNetModel:IModelStatus
{
/// <summary>
/// Flag that determines if this model was loaded from source code or was loaded through reflects or symbol libraries.
/// </summary>
bool LoadedFromSource { get; }
/// <summary>
/// The target language this model was loaded from.
/// </summary>
SourceCodeType Language { get; }
/// <summary>
/// The type of dot net model that was loaded.
/// </summary>
DotNetModelType ModelType { get; }
/// <summary>
/// The fully qualified path to the document that was used to load the model from source. This will be populated if the model was loaded from source.
/// </summary>
string SourceDocument { get; }
}
}