1 write to m_value
System.Workflow.Activities (1)
11 references to m_value
System.Workflow.Activities (11)
Rules\Literal.cs (11)
4960get { return m_value; }
4971return rhs.Equal(m_value);
4975return m_value == rhs;
4980return rhs.GreaterThan(m_value);
4984return 0 > string.Compare(m_value, rhs, false, System.Globalization.CultureInfo.CurrentCulture);
4989return rhs.LessThan(m_value);
4997return 0 < string.Compare(m_value, rhs, false, System.Globalization.CultureInfo.CurrentCulture);
5002return rhs.GreaterThanOrEqual(m_value);
5006return 0 >= string.Compare(m_value, (string)rhs, false, System.Globalization.CultureInfo.CurrentCulture);
5011return rhs.LessThanOrEqual(m_value);
5019return 0 <= string.Compare(m_value, rhs, false, System.Globalization.CultureInfo.CurrentCulture);