System.Runtime.Serialization.Formatters.Binary.ObjectReader.ParseString C# (CSharp) Method

ParseString() private method

private ParseString ( ParseRecord pr, ParseRecord parentPr ) : void
pr ParseRecord
parentPr ParseRecord
return void
        private void ParseString(ParseRecord pr, ParseRecord parentPr)
        {
            // Process String class
            if ((!pr._isRegistered) && (pr._objectId > 0))
            {
                // String is treated as an object if it has an id
                //m_objectManager.RegisterObject(pr.PRvalue, pr.PRobjectId);
                RegisterObject(pr._value, pr, parentPr, true);
            }
        }