10 references to WorkflowMarkupSourceAttribute
System.Workflow.ComponentModel (7)
AuthoringOM\Compiler\XomlCompilerHelpers.cs (3)
84WorkflowMarkupSourceAttribute[] sourceAttrs = (WorkflowMarkupSourceAttribute[])type.GetCustomAttributes(typeof(WorkflowMarkupSourceAttribute), false);
AuthoringOM\Serializer\ActivityMarkupSerializer.cs (3)
104WorkflowMarkupSourceAttribute[] sourceAttrs = (WorkflowMarkupSourceAttribute[])type.GetCustomAttributes(typeof(WorkflowMarkupSourceAttribute), false);
Shared\XomlSerializationHelpers.cs (1)
289CodeAttributeDeclaration xomlSourceAttribute = new CodeAttributeDeclaration(typeof(WorkflowMarkupSourceAttribute).FullName);
System.Workflow.Runtime (3)
DebugEngine\DebugController.cs (3)
1008Attribute[] attributes = scheduleType.GetCustomAttributes(typeof(WorkflowMarkupSourceAttribute), false) as Attribute[]; 1011fileName = ((WorkflowMarkupSourceAttribute)attributes[0]).FileName; 1012md5Digest = ((WorkflowMarkupSourceAttribute)attributes[0]).MD5Digest;