System.Xml.XmlReaderBinarySupport.ReadContentAsBase64 C# (CSharp) Méthode

ReadContentAsBase64() public méthode

public ReadContentAsBase64 ( byte buffer, int offset, int length ) : int
buffer byte
offset int
length int
Résultat int
		public int ReadContentAsBase64 (
			byte [] buffer, int offset, int length)
		{
			CheckState (false, CommandState.ReadContentAsBase64);
			return ReadBase64 (buffer, offset, length);
		}

Usage Example

Exemple #1
0
 public virtual int ReadContentAsBase64(
     byte [] buffer, int offset, int length)
 {
     CheckSupport();
     return(binary.ReadContentAsBase64(
                buffer, offset, length));
 }