PHB.Apps.Mesh.ProfileManager.Device.GetChildren C# (CSharp) 메소드

GetChildren() 공개 메소드

Create a list containing all the current children.
public GetChildren ( ) : List
리턴 List
        public override List<Goedel.Trojan.Object> GetChildren() {
			var Result = base.GetChildren();
			if (Applications.Value != null) {
				foreach (var Entry in Applications.Value) {
					Result.Add (Entry);
					}
				}

			return Result;
            }