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);
		}