5 instantiations of PathInfo
System.Workflow.ComponentModel (5)
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (5)
514paths.Add(new PathInfo(currentPath + indexString, info, info.ReturnType));
643paths.Add(new PathInfo(propertyName, property, memberType));
673paths.Add(new PathInfo(fieldName, field, BindHelpers.GetMemberType(field)));
694paths.Add(new PathInfo(currentPath + eventInfo.Name, eventInfo, eventType));
727pathInfoList.Add(new PathInfo(eventArgs.Path, eventArgs.MemberInfo, BindHelpers.GetMemberType(eventArgs.MemberInfo)));
34 references to PathInfo
System.Workflow.ComponentModel (34)
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (34)
232PathInfo member = this.workflowOutline.SelectedMember;
365private void SelectedActivityChanged(Activity activity, PathInfo memberPathInfo, string path)
398private List<PathInfo> PopulateAutoCompleteList(Activity activity, PathInfo path)
400List<PathInfo> currentPropertyList = new List<PathInfo>();
402PathInfo[] subProps = (activityType != null) ? ProcessPaths(activityType, path) : null;
448private PathInfo[] ProcessPaths(Type activityType, PathInfo topProperty)
450List<PathInfo> paths = new List<PathInfo>();
465private PathInfo[] GetArraySubProperties(Type propertyType, string currentPath)//(PathInfo pathInfo)
467List<PathInfo> paths = new List<PathInfo>();
590private PathInfo[] GetSubPropertiesOnType(Type typeToGetPropertiesOn, string currentPath)
592List<PathInfo> paths = new List<PathInfo>();
714private List<PathInfo> ParseStringPath(Type activityType, string path)
719List<PathInfo> pathInfoList = new List<PathInfo>();
827private PathInfo pathInfo = null;
831public MemberActivityBindTreeNode(Activity activity, PathInfo pathInfo)
885public PathInfo PathInfo
942private PathInfo selectedPathInfo = null;
1009List<PathInfo> reparsedPathInfoList = this.parent.ParseStringPath(memberType, newLabel);
1016PathInfo newPathInfo = reparsedPathInfoList[reparsedPathInfoList.Count - 1]; //get the last item in the list
1041List<PathInfo> members = this.parent.PopulateAutoCompleteList(node.Activity, (memberNode != null) ? memberNode.PathInfo : null);
1043foreach (PathInfo mamberPathInfo in members)
1087private MemberActivityBindTreeNode CreateMemberNode(Activity activity, PathInfo pathInfo)
1129public void SelectActivity(Activity activity, List<PathInfo> pathInfoList)
1146PathInfo currentPathInfo = pathInfoList[i];
1274public PathInfo SelectedMember
1342PathInfo otherInfo = obj as PathInfo;