public class Utf8JsonWriter extends NetObject implements java.lang.AutoCloseable
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Text.Json.Utf8JsonWriter
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.Text.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
|
static java.lang.String |
assemblyShortName
Assembly name: System.Text.Json
|
static java.lang.String |
className
Qualified class name: System.Text.Json.Utf8JsonWriter
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
Utf8JsonWriter() |
Utf8JsonWriter(java.lang.Object instance)
Internal constructor.
|
Utf8JsonWriter(Stream utf8Json,
JsonWriterOptions options) |
| Modifier and Type | Method and Description |
|---|---|
static Utf8JsonWriter |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into Utf8JsonWriter, a cast assert is made to check if types are compatible. |
void |
close() |
void |
Dispose() |
ValueTask |
DisposeAsync() |
void |
Flush() |
Task |
FlushAsync(CancellationToken cancellationToken) |
long |
getBytesCommitted() |
int |
getBytesPending() |
int |
getCurrentDepth() |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
JsonWriterOptions |
getOptions() |
void |
Reset() |
void |
Reset(Stream utf8Json) |
void |
setBytesCommitted(long BytesCommitted) |
void |
setBytesPending(int BytesPending) |
void |
setJCOInstance(JCObject instance) |
void |
WriteBoolean(JsonEncodedText propertyName,
boolean value) |
void |
WriteBoolean(java.lang.String propertyName,
boolean value) |
void |
WriteBooleanValue(boolean value) |
void |
WriteCommentValue(java.lang.String value) |
void |
WriteEndArray() |
void |
WriteEndObject() |
void |
WriteNull(JsonEncodedText propertyName) |
void |
WriteNull(java.lang.String propertyName) |
void |
WriteNullValue() |
void |
WriteNumber(JsonEncodedText propertyName,
Decimal value) |
void |
WriteNumber(JsonEncodedText propertyName,
double value) |
void |
WriteNumber(JsonEncodedText propertyName,
int value) |
void |
WriteNumber(JsonEncodedText propertyName,
long value) |
void |
WriteNumber(JsonEncodedText propertyName,
Single value) |
void |
WriteNumber(JsonEncodedText propertyName,
UInt32 value) |
void |
WriteNumber(JsonEncodedText propertyName,
UInt64 value) |
void |
WriteNumber(java.lang.String propertyName,
Decimal value) |
void |
WriteNumber(java.lang.String propertyName,
double value) |
void |
WriteNumber(java.lang.String propertyName,
int value) |
void |
WriteNumber(java.lang.String propertyName,
long value) |
void |
WriteNumber(java.lang.String propertyName,
Single value) |
void |
WriteNumber(java.lang.String propertyName,
UInt32 value) |
void |
WriteNumber(java.lang.String propertyName,
UInt64 value) |
void |
WriteNumberValue(Decimal value) |
void |
WriteNumberValue(double value) |
void |
WriteNumberValue(int value) |
void |
WriteNumberValue(long value) |
void |
WriteNumberValue(Single value) |
void |
WriteNumberValue(UInt32 value) |
void |
WriteNumberValue(UInt64 value) |
void |
WritePropertyName(JsonEncodedText propertyName) |
void |
WritePropertyName(java.lang.String propertyName) |
void |
WriteRawValue(java.lang.String json,
boolean skipInputValidation) |
void |
WriteStartArray() |
void |
WriteStartArray(JsonEncodedText propertyName) |
void |
WriteStartArray(java.lang.String propertyName) |
void |
WriteStartObject() |
void |
WriteStartObject(JsonEncodedText propertyName) |
void |
WriteStartObject(java.lang.String propertyName) |
void |
WriteString(JsonEncodedText propertyName,
DateTime value) |
void |
WriteString(JsonEncodedText propertyName,
DateTimeOffset value) |
void |
WriteString(JsonEncodedText propertyName,
Guid value) |
void |
WriteString(JsonEncodedText propertyName,
JsonEncodedText value) |
void |
WriteString(JsonEncodedText propertyName,
java.lang.String value) |
void |
WriteString(java.lang.String propertyName,
DateTime value) |
void |
WriteString(java.lang.String propertyName,
DateTimeOffset value) |
void |
WriteString(java.lang.String propertyName,
Guid value) |
void |
WriteString(java.lang.String propertyName,
JsonEncodedText value) |
void |
WriteString(java.lang.String propertyName,
java.lang.String value) |
void |
WriteStringValue(DateTime value) |
void |
WriteStringValue(DateTimeOffset value) |
void |
WriteStringValue(Guid value) |
void |
WriteStringValue(JsonEncodedText value) |
void |
WriteStringValue(java.lang.String value) |
public static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public Utf8JsonWriter()
throws java.lang.Throwable
java.lang.Throwablepublic Utf8JsonWriter(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic Utf8JsonWriter(Stream utf8Json, JsonWriterOptions options) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public static Utf8JsonWriter cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into Utf8JsonWriter, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedUtf8JsonWriter instancejava.lang.Throwable - in case of error during cast operationpublic void close()
throws java.lang.Exception
close in interface java.lang.AutoCloseablejava.lang.Exceptionpublic void Dispose()
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ObjectDisposedException,
ArgumentNullException,
IndexOutOfRangeException,
PlatformNotSupportedException,
FormatException,
ArrayTypeMismatchException
public ValueTask DisposeAsync() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionpublic void Flush()
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException
public Task FlushAsync(CancellationToken cancellationToken) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionpublic long getBytesCommitted()
throws java.lang.Throwable
java.lang.Throwablepublic int getBytesPending()
throws java.lang.Throwable
java.lang.Throwablepublic int getCurrentDepth()
throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in class NetObjectString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in class NetObjectString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in class NetObjectObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in class NetObjectString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in class NetObjectJCType representing the CLR Type of the instantiated Classpublic JsonWriterOptions getOptions() throws java.lang.Throwable
java.lang.Throwablepublic void Reset()
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException
public void Reset(Stream utf8Json) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
public void setBytesCommitted(long BytesCommitted)
throws java.lang.Throwable
java.lang.Throwablepublic void setBytesPending(int BytesPending)
throws java.lang.Throwable
java.lang.Throwablepublic void setJCOInstance(JCObject instance)
setJCOInstance in class NetObjectpublic void WriteBoolean(JsonEncodedText propertyName, boolean value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArrayTypeMismatchException, IndexOutOfRangeException
public void WriteBoolean(java.lang.String propertyName,
boolean value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteBooleanValue(boolean value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
OutOfMemoryException,
ArrayTypeMismatchException,
IndexOutOfRangeException
public void WriteCommentValue(java.lang.String value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteEndArray()
throws java.lang.Throwable,
ArgumentNullException,
InvalidOperationException,
ArgumentException,
OutOfMemoryException,
PlatformNotSupportedException,
IndexOutOfRangeException,
NotSupportedException
public void WriteEndObject()
throws java.lang.Throwable,
ArgumentNullException,
InvalidOperationException,
ArgumentException,
OutOfMemoryException,
PlatformNotSupportedException,
IndexOutOfRangeException,
NotSupportedException
public void WriteNull(JsonEncodedText propertyName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArrayTypeMismatchException, IndexOutOfRangeException
public void WriteNull(java.lang.String propertyName)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteNullValue()
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
OutOfMemoryException,
ArrayTypeMismatchException,
IndexOutOfRangeException
public void WriteNumber(JsonEncodedText propertyName, Decimal value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException
public void WriteNumber(JsonEncodedText propertyName, double value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ArrayTypeMismatchException, IndexOutOfRangeException
public void WriteNumber(JsonEncodedText propertyName, int value) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, OutOfMemoryException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IndexOutOfRangeException, NotSupportedException, FormatException
public void WriteNumber(JsonEncodedText propertyName, long value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
public void WriteNumber(JsonEncodedText propertyName, Single value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ArrayTypeMismatchException, IndexOutOfRangeException
public void WriteNumber(JsonEncodedText propertyName, UInt32 value) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, OutOfMemoryException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IndexOutOfRangeException, NotSupportedException, FormatException
public void WriteNumber(JsonEncodedText propertyName, UInt64 value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
public void WriteNumber(java.lang.String propertyName,
Decimal value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteNumber(java.lang.String propertyName,
double value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteNumber(java.lang.String propertyName,
int value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteNumber(java.lang.String propertyName,
long value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteNumber(java.lang.String propertyName,
Single value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteNumber(java.lang.String propertyName,
UInt32 value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteNumber(java.lang.String propertyName,
UInt64 value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteNumberValue(Decimal value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
public void WriteNumberValue(double value)
throws java.lang.Throwable,
NotSupportedException,
PlatformNotSupportedException,
ArgumentNullException,
ArgumentException,
ArgumentOutOfRangeException,
CultureNotFoundException,
ObjectDisposedException,
InvalidOperationException,
OutOfMemoryException,
FormatException,
ArrayTypeMismatchException
public void WriteNumberValue(int value)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
OutOfMemoryException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArrayTypeMismatchException,
NotSupportedException,
IndexOutOfRangeException,
FormatException
public void WriteNumberValue(long value)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
FormatException,
OutOfMemoryException,
ArrayTypeMismatchException,
NotSupportedException
public void WriteNumberValue(Single value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, FormatException, ArrayTypeMismatchException
public void WriteNumberValue(UInt32 value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
public void WriteNumberValue(UInt64 value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
public void WritePropertyName(JsonEncodedText propertyName) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, OutOfMemoryException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IndexOutOfRangeException, NotSupportedException
public void WritePropertyName(java.lang.String propertyName)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteRawValue(java.lang.String json,
boolean skipInputValidation)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
FormatException,
OutOfMemoryException,
ArrayTypeMismatchException,
JsonException
public void WriteStartArray()
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
FormatException,
OutOfMemoryException,
ArrayTypeMismatchException,
NotSupportedException
public void WriteStartArray(JsonEncodedText propertyName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
public void WriteStartArray(java.lang.String propertyName)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteStartObject()
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
FormatException,
OutOfMemoryException,
ArrayTypeMismatchException,
NotSupportedException
public void WriteStartObject(JsonEncodedText propertyName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
public void WriteStartObject(java.lang.String propertyName)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteString(JsonEncodedText propertyName, DateTime value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
public void WriteString(JsonEncodedText propertyName, DateTimeOffset value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
public void WriteString(JsonEncodedText propertyName, Guid value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
public void WriteString(JsonEncodedText propertyName, JsonEncodedText value) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, OutOfMemoryException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IndexOutOfRangeException, NotSupportedException
public void WriteString(JsonEncodedText propertyName, java.lang.String value) throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException
public void WriteString(java.lang.String propertyName,
DateTime value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteString(java.lang.String propertyName,
DateTimeOffset value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteString(java.lang.String propertyName,
Guid value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteString(java.lang.String propertyName,
JsonEncodedText value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteString(java.lang.String propertyName,
java.lang.String value)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic void WriteStringValue(DateTime value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
public void WriteStringValue(DateTimeOffset value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
public void WriteStringValue(Guid value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
public void WriteStringValue(JsonEncodedText value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException
public void WriteStringValue(java.lang.String value)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
InvalidOperationException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
FormatException,
OutOfMemoryException,
ArrayTypeMismatchException