RtfDomParser.RTFReader.DefaultProcess C# (CSharp) Method

DefaultProcess() public method

public DefaultProcess ( ) : void
return void
        public void DefaultProcess()
        {
            if (this.CurrentToken != null)
            {
                switch (this.CurrentToken.Key)
                {
                    case "uc":
                        this.CurrentLayerInfo.UCValue = this.Parameter;
                        break;
                }
            }
        }