WriteRawValue() public method

public WriteRawValue ( string json ) : void
json string
return void
Exemplo n.º 1
0
        public void WhenWritingRawValue_ThenThrowsNotSupported()
        {
            var writer = new UsonWriter(new StringWriter());

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

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