Package system.text.json
Class Utf8JsonWriter
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.text.json.Utf8JsonWriter
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class Utf8JsonWriter extends NetObject implements java.lang.AutoCloseable
The base .NET class managing System.Text.Json.Utf8JsonWriter, System.Text.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51..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
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Text.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51static java.lang.String
assemblyShortName
Assembly name: System.Text.Jsonstatic java.lang.String
className
Qualified class name: System.Text.Json.Utf8JsonWriterstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description Utf8JsonWriter()
Utf8JsonWriter(java.lang.Object instance)
Internal constructor.Utf8JsonWriter(Stream utf8Json, JsonWriterOptions options)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Utf8JsonWriter
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoUtf8JsonWriter
, 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 namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeJsonWriterOptions
getOptions()
void
Reset()
void
Reset(Stream utf8Json)
void
setBytesCommitted(long BytesCommitted)
void
setBytesPending(int BytesPending)
void
setJCOInstance(JCObject instance)
void
WriteBoolean(java.lang.String propertyName, boolean value)
void
WriteBoolean(JsonEncodedText propertyName, boolean value)
void
WriteBooleanValue(boolean value)
void
WriteCommentValue(java.lang.String value)
void
WriteEndArray()
void
WriteEndObject()
void
WriteNull(java.lang.String propertyName)
void
WriteNull(JsonEncodedText propertyName)
void
WriteNullValue()
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, Decimal 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
WriteNumber(JsonEncodedText propertyName, double value)
void
WriteNumber(JsonEncodedText propertyName, int value)
void
WriteNumber(JsonEncodedText propertyName, long value)
void
WriteNumber(JsonEncodedText propertyName, Decimal value)
void
WriteNumber(JsonEncodedText propertyName, Single value)
void
WriteNumber(JsonEncodedText propertyName, UInt32 value)
void
WriteNumber(JsonEncodedText propertyName, UInt64 value)
void
WriteNumberValue(double value)
void
WriteNumberValue(int value)
void
WriteNumberValue(long value)
void
WriteNumberValue(Decimal value)
void
WriteNumberValue(Single value)
void
WriteNumberValue(UInt32 value)
void
WriteNumberValue(UInt64 value)
void
WritePropertyName(java.lang.String propertyName)
void
WritePropertyName(JsonEncodedText propertyName)
void
WriteRawValue(java.lang.String json, boolean skipInputValidation)
void
WriteStartArray()
void
WriteStartArray(java.lang.String propertyName)
void
WriteStartArray(JsonEncodedText propertyName)
void
WriteStartObject()
void
WriteStartObject(java.lang.String propertyName)
void
WriteStartObject(JsonEncodedText propertyName)
void
WriteString(java.lang.String 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(JsonEncodedText propertyName, java.lang.String value)
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
WriteStringValue(java.lang.String value)
void
WriteStringValue(DateTime value)
void
WriteStringValue(DateTimeOffset value)
void
WriteStringValue(Guid value)
void
WriteStringValue(JsonEncodedText value)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Text.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Text.Json- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Text.Json.Utf8JsonWriter- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Utf8JsonWriter
public Utf8JsonWriter(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
Utf8JsonWriter
public Utf8JsonWriter() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Utf8JsonWriter
public Utf8JsonWriter(Stream utf8Json, JsonWriterOptions options) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Utf8JsonWriter cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoUtf8JsonWriter
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Utf8JsonWriter
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
FlushAsync
public Task FlushAsync(CancellationToken cancellationToken) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
-
DisposeAsync
public ValueTask DisposeAsync() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
-
Dispose
public void Dispose() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ObjectDisposedException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, ArrayTypeMismatchException
-
Flush
public void Flush() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Reset
public void Reset() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Reset
public void Reset(Stream utf8Json) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
WriteBoolean
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
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteBoolean
public void WriteBoolean(JsonEncodedText propertyName, boolean value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArrayTypeMismatchException, IndexOutOfRangeException
-
WriteBooleanValue
public void WriteBooleanValue(boolean value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArrayTypeMismatchException, IndexOutOfRangeException
-
WriteCommentValue
public void WriteCommentValue(java.lang.String value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteEndArray
public void WriteEndArray() throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, OutOfMemoryException, PlatformNotSupportedException, IndexOutOfRangeException, NotSupportedException
-
WriteEndObject
public void WriteEndObject() throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, OutOfMemoryException, PlatformNotSupportedException, IndexOutOfRangeException, NotSupportedException
-
WriteNull
public void WriteNull(java.lang.String propertyName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteNull
public void WriteNull(JsonEncodedText propertyName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArrayTypeMismatchException, IndexOutOfRangeException
-
WriteNullValue
public void WriteNullValue() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArrayTypeMismatchException, IndexOutOfRangeException
-
WriteNumber
public void WriteNumber(java.lang.String propertyName, double value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteNumber
public void WriteNumber(java.lang.String propertyName, int value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteNumber
public void WriteNumber(java.lang.String propertyName, long value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteNumber
public void WriteNumber(java.lang.String propertyName, Single value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteNumber
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
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteNumber
public void WriteNumber(java.lang.String propertyName, UInt32 value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteNumber
public void WriteNumber(java.lang.String propertyName, UInt64 value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteNumber
public void WriteNumber(JsonEncodedText propertyName, double value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ArrayTypeMismatchException, IndexOutOfRangeException
-
WriteNumber
public void WriteNumber(JsonEncodedText propertyName, int value) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, OutOfMemoryException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IndexOutOfRangeException, NotSupportedException, FormatException
-
WriteNumber
public void WriteNumber(JsonEncodedText propertyName, long value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
-
WriteNumber
public void WriteNumber(JsonEncodedText propertyName, Single value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, ArrayTypeMismatchException, IndexOutOfRangeException
-
WriteNumber
public void WriteNumber(JsonEncodedText propertyName, Decimal value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException
-
WriteNumber
public void WriteNumber(JsonEncodedText propertyName, UInt32 value) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, OutOfMemoryException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IndexOutOfRangeException, NotSupportedException, FormatException
-
WriteNumber
public void WriteNumber(JsonEncodedText propertyName, UInt64 value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
-
WriteNumberValue
public void WriteNumberValue(double value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, FormatException, ArrayTypeMismatchException
-
WriteNumberValue
public void WriteNumberValue(int value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
-
WriteNumberValue
public void WriteNumberValue(long value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
-
WriteNumberValue
public void WriteNumberValue(Single value) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, FormatException, ArrayTypeMismatchException
-
WriteNumberValue
public void WriteNumberValue(Decimal value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
-
WriteNumberValue
public void WriteNumberValue(UInt32 value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
-
WriteNumberValue
public void WriteNumberValue(UInt64 value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
-
WritePropertyName
public void WritePropertyName(java.lang.String propertyName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WritePropertyName
public void WritePropertyName(JsonEncodedText propertyName) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, OutOfMemoryException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IndexOutOfRangeException, NotSupportedException
-
WriteRawValue
public void WriteRawValue(java.lang.String json, boolean skipInputValidation) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, JsonException
-
WriteStartArray
public void WriteStartArray() throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
-
WriteStartArray
public void WriteStartArray(java.lang.String propertyName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteStartArray
public void WriteStartArray(JsonEncodedText propertyName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
-
WriteStartObject
public void WriteStartObject() throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
-
WriteStartObject
public void WriteStartObject(java.lang.String propertyName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteStartObject
public void WriteStartObject(JsonEncodedText propertyName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
-
WriteString
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
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteString
public void WriteString(java.lang.String propertyName, DateTimeOffset value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteString
public void WriteString(java.lang.String propertyName, Guid value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteString
public 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
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteString
public void WriteString(java.lang.String propertyName, JsonEncodedText value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
WriteString
public void WriteString(JsonEncodedText propertyName, DateTime value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
-
WriteString
public void WriteString(JsonEncodedText propertyName, DateTimeOffset value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
-
WriteString
public void WriteString(JsonEncodedText propertyName, Guid value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException, FormatException
-
WriteString
public void WriteString(JsonEncodedText propertyName, java.lang.String value) throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException
-
WriteString
public void WriteString(JsonEncodedText propertyName, JsonEncodedText value) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, OutOfMemoryException, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IndexOutOfRangeException, NotSupportedException
-
WriteStringValue
public void WriteStringValue(DateTime value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
-
WriteStringValue
public void WriteStringValue(DateTimeOffset value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
-
WriteStringValue
public void WriteStringValue(Guid value) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException, NotSupportedException
-
WriteStringValue
public void WriteStringValue(java.lang.String value) throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, ArrayTypeMismatchException
-
WriteStringValue
public void WriteStringValue(JsonEncodedText value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, NotSupportedException, IndexOutOfRangeException
-
close
public void close() throws java.lang.Exception
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Throws:
java.lang.Exception
-
getBytesPending
public int getBytesPending() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setBytesPending
public void setBytesPending(int BytesPending) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getCurrentDepth
public int getCurrentDepth() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getBytesCommitted
public long getBytesCommitted() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setBytesCommitted
public void setBytesCommitted(long BytesCommitted) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getOptions
public JsonWriterOptions getOptions() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-