SenseNet.ContentRepository.ExpenseClaim.GetAssociatedWorkflow C# (CSharp) 메소드

GetAssociatedWorkflow() 개인적인 메소드

private GetAssociatedWorkflow ( ) : Node
리턴 Node
        private Node GetAssociatedWorkflow()
        {
            if (HttpContext.Current != null && HttpContext.Current.Request.QueryString.AllKeys.Contains("ContentTypeName"))
            {
                var contentTypeName = HttpContext.Current.Request["ContentTypeName"];

                return string.IsNullOrEmpty(contentTypeName)
                           ? null
                           : Node.LoadNode(contentTypeName);
            }

            return null;
        }