SenseNet.Services.ContentStore.ContentStoreService.GetNodeById C# (CSharp) 메소드

GetNodeById() 공개 메소드

public GetNodeById ( string itemId ) : Node
itemId string
리턴 Node
        public Node GetNodeById(string itemId)
        {
            Node result = null;
            var id = 0;
            result = int.TryParse(itemId, out id) ? Node.LoadNode(id) : Node.LoadNode(PreparePath(itemId));
            return result;
        }