System.Xml.XmlReader.XmlReader.CheckSupport C# (CSharp) Méthode

CheckSupport() private méthode

private CheckSupport ( ) : void
Résultat void
		private void CheckSupport ()
		{
			// Default implementation expects both.
			if (!CanReadBinaryContent || !CanReadValueChunk)
				throw new NotSupportedException ();
			if (binary == null)
				binary = new XmlReaderBinarySupport (this);
		}