WriteRawValue() public method

public WriteRawValue ( string json ) : void
json string
return void
Example #1
0
        public void WhenWritingRawValue_ThenThrowsNotSupported()
        {
            var writer = new UsonWriter(new StringWriter());

            Assert.Throws <NotSupportedException>(() => writer.WriteRawValue(""));
        }
Example #2
0
		public void WhenWritingRawValue_ThenThrowsNotSupported()
		{
			var writer = new UsonWriter(new StringWriter());

			Assert.Throws<NotSupportedException>(() => writer.WriteRawValue(""));
		}