Class LightCodeFile
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: ArtOfTest.WebAii.Design.ProjectModel
Assembly: ArtOfTest.WebAii.Design.dll
Syntax
public sealed class LightCodeFile : LightProjectElement
Constructors
LightCodeFile(String, String, String)
Declaration
public LightCodeFile(string providerKey, string filePath, string projectRootPath)
Parameters
System.String
providerKey
|
System.String
filePath
|
System.String
projectRootPath
|
Properties
Id
Declaration
public Guid Id { get; set; }
Property Value
System.Guid
|
InDevelopment
Declaration
public bool InDevelopment { get; set; }
Property Value
System.Boolean
|
IsDirty
Declaration
public bool IsDirty { get; set; }
Property Value
System.Boolean
|
ProjectRootPath
Declaration
public override string ProjectRootPath { get; set; }
Property Value
System.String
|
Overrides
RelativePath
Declaration
public override string RelativePath { get; }
Property Value
System.String
|
Overrides
Methods
GetCodeContent()
Declaration
public string GetCodeContent()
Returns
System.String
|
OnDirtyStateChanged(Boolean)
Declaration
protected void OnDirtyStateChanged(bool isDirty)
Parameters
System.Boolean
isDirty
|
Events
DirtyStateChanged
Declaration
public event Action<LightCodeFile, bool> DirtyStateChanged
Event Type
System.Action<LightCodeFile, System.Boolean>
|
InDevelopmentStateChanged
Declaration
public event Action<LightCodeFile, bool> InDevelopmentStateChanged
Event Type
System.Action<LightCodeFile, System.Boolean>
|