1 write to Version
System.Workflow.Runtime (1)
Tracking\TrackingProfileSerializer.cs (1)
96profile.Version = new Version(version);
16 references to Version
System.Workflow.Runtime (16)
RTTrackingProfile.cs (1)
210get { return _profile.Version; }
Tracking.cs (2)
1230if (TryGetFromCache(service.GetType(), workflowType, profile.Version, out tp)) 1252if (TryGetFromCache(service.GetType(), workflowType, profile.Version, out tmp))
Tracking\TrackingProfileSerializer.cs (13)
890if (null == profile.Version) 894if (profile.Version.Revision >= 0) 895version = string.Format(NumberFormatInfo.InvariantInfo, "{0}.{1}.{2}.{3}", profile.Version.Major, profile.Version.Minor, profile.Version.Build, profile.Version.Revision); 896else if (profile.Version.Build >= 0) 897version = string.Format(NumberFormatInfo.InvariantInfo, "{0}.{1}.{2}", profile.Version.Major, profile.Version.Minor, profile.Version.Build); 898else if (profile.Version.Minor >= 0) 899version = string.Format(NumberFormatInfo.InvariantInfo, "{0}.{1}", profile.Version.Major, profile.Version.Minor);