Version 24.2 (latest)

RefParser Class Methods

For a list of all members of this type, see RefParser members.

Public Methods
 NameDescription
Public MethodBuildReferencePopulate this RefParser by merging the input baseRP with the input mergeRP. If respectMarked is true, then any tuples in mergeRP that are Marked have precedence and are converted to scope Any.  
Public MethodContainsReturns true if the input RefParser in contained by this RefParser. The RefParser is contained if each RefTuple in this RefParser contains the corresponding RefTuple in the input RefParser.  
Public Methodstatic (Shared in Visual Basic)EscapeStringEscapes all the special charactes in the specified text. If withinQuotes is true then it only escapes the special characters that need to be escaped within double quotes, namely the '"' and '\' characters.  
Public MethodGetEnumeratorReturns the tuples IEnumerator.  
Public MethodIsSubsetReturns true if the input RefParser is a proper subset of this RefParser. The RefParser is a proper subset if each RefTuple in this RefParser has a scope that completely contains the corresponding RefTuple in the input RefParser.  
Public MethodMarkRelativeIndicesFor each tuple in this reference with a Relative Index, mark the corresponding tuple in targetRP  
Public MethodMergePopulate this RefParser by merging the input baseRP with the input mergeRP. If respectMarked is true, then any tuples in mergeRP that are Marked have precedence and are converted to scope Any.  
Public MethodNormalizeEscapementThis method has the same effect as calling UnEscapeString and then calling EscapeString on the specified text. This ensures that the text is minimally escaped.  
Public Methodstatic (Shared in Visual Basic)ParseNameValuePairsParses specified name-value pair. Examples of name-value pairs that this method parses are:
            State = New York, City = New York
            State = "New York", City = "New York"
            State=New York,City=New York
            A\/B = C\/D (column name is A/B and value is C/D.)
            A = 10 miles\/hour, B = "20 miles/hour" (Withing double quotes only double quotes and backward slash have to be escaped.)
            P1 = 10\, 20, P2 = "10, 20"
            
Returns an array of NameValuePair objects. Note: Names and values will be unescaped and also stripped of surrounding quotes.  
Public MethodToStringOverloaded. Appends the string representation of the parsed reference to the specified string builder.  
Public Methodstatic (Shared in Visual Basic)UnEscapeStringUnescapes all the escaped charactes in the specified text.  
See Also