저는 평소와 같이 워크 플로를 할당했습니다. 나는 다음 코드를 시도했지만 모든 항목을하지 않았다 .... 당신은 어떤이있는 경우 어떤 샘플 코드를 공유하거나 나를 항목을 API이라고 SecurityDisablerSitecore : 프로그래밍 방식으로 워크 플로 항목을 얻는 방법
using (new SecurityDisabler())
{
var db= Factory.GetDatabase("master");
var item = db.Items["/sitecore/content/Home"];
// getting the item's workflow reference
var wf = this.database.WorkflowProvider.GetWorkflow(item);
// here we need either to login as a user with appropriate permissions
// to have access to workflow states/commands or disable security
wf.Start(item);
}