DotNetXri.Syntax.Xri3.Impl.XRI3.XRI3 C# (CSharp) Method

XRI3() public method

public XRI3 ( char gcs, string uri ) : System
gcs char
uri string
return System
        public XRI3(char gcs, string uri)
        {
            StringBuilder buffer = new StringBuilder();

            buffer.Append(gcs.ToString());
            buffer.Append(XRI3Constants.XREF_START);
            buffer.Append(uri);
            buffer.Append(XRI3Constants.XREF_END);

            this.rule = XRI3Util.getParser().parse("xri", buffer.ToString());
            this.read();
        }

Same methods

XRI3::XRI3 ( Rule rule ) : System
XRI3::XRI3 ( XRI xri, XRISyntaxComponent xriPart ) : System
XRI3::XRI3 ( XRI xri, string xriPart ) : System
XRI3::XRI3 ( string value ) : System