System.Runtime.Serialization.XmlReaderDelegator.XmlReaderDelegator.ReadContentAsBase64 C# (CSharp) Method

ReadContentAsBase64() public method

public ReadContentAsBase64 ( ) : byte[]
return byte[]
        public virtual byte[] ReadContentAsBase64()
        {
            if (isEndOfEmptyElement)
                return new byte[0];

            if (dictionaryReader == null)
            {
                return ReadContentAsBase64(reader.ReadContentAsString());
            }
            else
            {
                return dictionaryReader.ReadContentAsBase64();
            }
        }

Same methods

XmlReaderDelegator.XmlReaderDelegator::ReadContentAsBase64 ( string str ) : byte[]
XmlReaderDelegator.XmlReaderDelegator