Exemple #1
0
 /// <summary>
 /// Constructs an XRI from the provided RelativePath
 /// </summary>
 /// <param name="oPath"></param>
 public RelativeXRI(XRIPath oPath)
 {
     moXRIPath = oPath;
     setParsedValue(oPath.ToString());
 }
Exemple #2
0
 /// <summary>
 /// Parses the input stream into the obj
 /// </summary>
 /// <param name="oStream">The input stream to scan from</param>
 /// <returns>True if part of the Stream was consumed into the obj</returns>
 bool doScan(ParseStream oStream)
 {
     moXRIPath = scanXRIPath(oStream);
     return true;
 }