File tree 2 files changed +11
-1
lines changed
src/EmberLibConsumer.net/Lawo.EmberPlusSharp/Model
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ public object Tag
64
64
get { return this . tag ; }
65
65
set { this . SetValue ( ref this . tag , value ) ; }
66
66
}
67
-
68
67
/// <inheritdoc/>
68
+
69
69
public string GetPath ( )
70
70
{
71
71
var path = new StringBuilder ( 64 ) ;
@@ -79,6 +79,10 @@ public string GetPath()
79
79
return path . ToString ( ) ;
80
80
}
81
81
82
+ public string IdentifierPath => GetPath ( ) ;
83
+
84
+ public int [ ] Path => this . numberPath ;
85
+
82
86
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
83
87
84
88
internal static Type GetImplementationType ( Type type )
Original file line number Diff line number Diff line change @@ -23,6 +23,12 @@ public interface IElement : INotifyPropertyChanged
23
23
/// <summary>Gets <b>identifier</b>.</summary>
24
24
string Identifier { get ; }
25
25
26
+ /// <summary>Gets <b>identifier string path</b></summary>
27
+ string IdentifierPath { get ; }
28
+
29
+ /// <summary>Gets <b>identifier integer path</b></summary>
30
+ int [ ] Path { get ; }
31
+
26
32
/// <summary>Gets <b>description</b>.</summary>
27
33
string Description { get ; }
28
34
You can’t perform that action at this time.
0 commit comments