SobekCM.Core.Aggregations.Complete_Item_Aggregation.Child_Page_By_Code C# (CSharp) Method

Child_Page_By_Code() public method

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
return 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;
        }