9. Januar 2012 16:24
XmlWriter w = XmlWriter.Create(newfile, settings);
ICrmService crmService = context.CreateCrmService(true);
9. Januar 2012 16:54
9. Januar 2012 17:23
9. Januar 2012 17:38
10. Januar 2012 11:03
IContextService contextService = (IContextService)executionContext.GetService(typeof(IContextService));
IWorkflowContext context = contextService.Context;
ICrmService crmService = context.CreateCrmService();
...
XmlWriterSettings settings = new XmlWriterSettings();
settings.Indent = true;
...
10. Januar 2012 11:31