UsonWriter.WriteRawValue C# (CSharp) Method

WriteRawValue() public method

public WriteRawValue ( string json ) : void
json string
return void
	public override void WriteRawValue(string json)
	{
		throw new NotSupportedException();
	}

Usage Example

Ejemplo n.º 1
0
        public void WhenWritingRawValue_ThenThrowsNotSupported()
        {
            var writer = new UsonWriter(new StringWriter());

            Assert.Throws <NotSupportedException>(() => writer.WriteRawValue(""));
        }
All Usage Examples Of UsonWriter::WriteRawValue