Pchp.Library.Streams.TextElement.TextElement C# (CSharp) Method

TextElement() public method

public TextElement ( PhpString str, Encoding encoding ) : System
str Pchp.Core.PhpString
encoding System.Text.Encoding
return System
        public TextElement(PhpString str, Encoding encoding)
        {
            Debug.Assert(str != null);
            _data = str.ContainsBinaryData
                ? (object)str.ToBytes(encoding)
                : str.ToString(encoding);

            Debug.Assert(IsText ^ IsBinary);
        }

Same methods

TextElement::TextElement ( byte bytes ) : System
TextElement::TextElement ( string text ) : System