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

SkipIgnorableBase64Chars() private méthode

private SkipIgnorableBase64Chars ( char chars, int charsLength, int i ) : int
chars char
charsLength int
i int
Résultat int
		private int SkipIgnorableBase64Chars (char [] chars, int charsLength, int i)
		{
			while (chars [i] == '=' || XmlChar.IsWhitespace (chars [i]))
				if (charsLength == ++i)
					break;
			return i;
		}