System.Xml.XmlReader.XmlReader.CheckSupport C# (CSharp) Метод

CheckSupport() приватный Метод

private CheckSupport ( ) : void
Результат void
		private void CheckSupport ()
		{
			// Default implementation expects both.
			if (!CanReadBinaryContent || !CanReadValueChunk)
				throw new NotSupportedException ();
			if (binary == null)
				binary = new XmlReaderBinarySupport (this);
		}