The RdlString type exposes the following members.

Constructors

  Name Description
Public method RdlString(String)
Initializes a new instance of the RdlString class. This overload parses the string to find out whether it is a constant or an expression.
Public method RdlString(String, Boolean)
Initializes a new instance of the RdlString class. This overload explicitly specifies whether the string is a constant or an expression.

Methods

  Name Description
Public method Equals
Compares the current object with another object. This method performs comparison by value.
(Overrides RdlProp..::..Equals(Object).)
Public method GetHashCode
Gets the hash code for the current object, based on value.
(Overrides RdlProp..::..GetHashCode()()()().)
Public method Static member IsNullOrEmpty
Indicates wthether the specified RdlString instance is null or empty.
Public method ToString
Converts the current object to a string.
(Overrides Object..::..ToString()()()().)
Public method Static member TryParse
Parses a string into properties of the RdlString class.

Operators

  Name Description
Public operator Static member Equality
Tests whether two RdlString objects are equal.
Public operator Static member Inequality
Tests whether two RdlString objects are not equal.

Fields

  Name Description
Public field Static member Empty
Represents an empty RdlString object.
Protected field m_Expression
The expression.
(Inherited from RdlProp.)
Protected field m_IsExpression
A flag indicating that the value is an expression.
(Inherited from RdlProp.)

Properties

  Name Description
Public property Expression
Gets the expression associated with the current RdlProp. Note that this property throws an exception if the current object contains a constant (i.e. if IsExpression gets false).
(Inherited from RdlProp.)
Public property IsExpression
Gets a value indicating whether the current RdlProp is specified as an expression.
(Inherited from RdlProp.)
Public property Value
Gets the constant value represented by the current object. Throws an exception if the current object contains an expression.

See Also