10 references to SourceValueType
System.Workflow.ComponentModel (10)
AuthoringOM\Bind.cs (10)
1406string additionalPath = (info.type == SourceValueType.Property) ? info.name : "[" + info.name + "]"; 1407string newPath = (string.IsNullOrEmpty(currentPath)) ? additionalPath : currentPath + ((info.type == SourceValueType.Property) ? "." : string.Empty) + additionalPath; 1414case SourceValueType.Property: 1454if (i < pathInfo.Count - 1 && pathInfo[i + 1].type == SourceValueType.Indexer && !string.IsNullOrEmpty(pathInfo[i + 1].name)) 1531case SourceValueType.Indexer: 1750internal SourceValueType type; 1754internal SourceValueInfo(SourceValueType t, DrillIn d, string n) 1804SourceValueInfo info = new SourceValueInfo(SourceValueType.Property, this.drillIn, string.Empty); 1869SourceValueType.Property, 1893SourceValueType.Indexer,