Exemplo n.º 1
0
 /// <summary>
 /// Returns the path of <paramref name="child"/> as a subcomponent of <paramref name="parent"/>.
 /// </summary>
 internal static string GetSubPath(IComponentDescription parent, IComponentDescription child)
 {
     return(parent.Path + Constants.ComponentPathDivider + child.Name);
 }
Exemplo n.º 2
0
 public Component(IIdentity identity, IComponentDescription description)
 {
     Identity = identity;
     Description = description;
 }
Exemplo n.º 3
0
 public static string[] GetNames(this IComponentDescription component)
 {
     return(GetNames(component.Path));
 }
Exemplo n.º 4
0
 public Component(IIdentity identity, IComponentDescription description)
 {
     Identity    = identity;
     Description = description;
 }