SobekCM.Core.Aggregations.Complete_Item_Aggregation.Child_Page_By_Code C# (CSharp) 메소드

Child_Page_By_Code() 공개 메소드

Get a child page by code
public Child_Page_By_Code ( string ChildCode ) : Complete_Item_Aggregation_Child_Page
ChildCode string Code for this child page
리턴 Complete_Item_Aggregation_Child_Page
        public Complete_Item_Aggregation_Child_Page Child_Page_By_Code(string ChildCode)
        {
            return childPagesHash.ContainsKey(ChildCode.ToUpper()) ? childPagesHash[ChildCode.ToUpper()] : null;
        }