Apache.NMS.ActiveMQ.Commands.ActiveMQDestination.setPhysicalName C# (CSharp) Method

setPhysicalName() private method

private setPhysicalName ( string name ) : void
name string
return void
        private void setPhysicalName(string name)
        {
            this.physicalName = name;

            int p = name.IndexOf('?');
            if(p >= 0)
            {
                String optstring = physicalName.Substring(p + 1);
                this.physicalName = name.Substring(0, p);
                options = URISupport.ParseQuery(optstring);
            }
        }