Package system.io
Class TextWriter
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.io.TextWriter
-
- All Implemented Interfaces:
AutoCloseable
,IJCOBridgeReflected
- Direct Known Subclasses:
IndentedTextWriter
,StreamWriter
,StringWriter
public class TextWriter extends MarshalByRefObject implements AutoCloseable
The base .NET class managing System.IO.TextWriter, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.IO.TextWriter
Powered by JCOBridge: more info at https://www.jcobridge.com
- Version:
- 1.14.3.0
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static String
assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798estatic String
assemblyShortName
Assembly name: System.Private.CoreLibstatic String
className
Qualified class name: System.IO.TextWriterstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description TextWriter()
TextWriter(Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TextWriter
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoTextWriter
, a cast assert is made to check if types are compatible.void
close()
void
Close()
void
Dispose()
ValueTask
DisposeAsync()
void
Flush()
Task
FlushAsync()
Encoding
getEncoding()
IFormatProvider
getFormatProvider()
String
getJCOAssemblyName()
Returns the reflected Assembly nameString
getJCOClassName()
Returns the reflected Class nameObject
getJCOInstance()
Returns the instantiated classString
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeString
getNewLine()
void
setJCOInstance(JCObject instance)
void
setNewLine(String NewLine)
static TextWriter
Synchronized(TextWriter writer)
void
Write(boolean value)
void
Write(char value)
void
Write(char[] buffer)
void
Write(char[] buffer, int index, int count)
void
Write(double value)
void
Write(int value)
void
Write(long value)
void
Write(String value)
void
Write(String format, NetObject arg0)
void
Write(String format, NetObject... arg)
void
Write(String format, NetObject arg0, NetObject arg1)
void
Write(String format, NetObject arg0, NetObject arg1, NetObject arg2)
void
Write(JCORefOut dupParam0)
void
Write(JCORefOut dupParam0, int dupParam1, int dupParam2)
void
Write(NetObject value)
void
Write(Decimal value)
void
Write(Single value)
void
Write(StringBuilder value)
void
Write(UInt32 value)
void
Write(UInt64 value)
Task
WriteAsync(char value)
Task
WriteAsync(char[] buffer)
Task
WriteAsync(char[] buffer, int index, int count)
Task
WriteAsync(String value)
Task
WriteAsync(JCORefOut dupParam0)
Task
WriteAsync(JCORefOut dupParam0, int dupParam1, int dupParam2)
Task
WriteAsync(StringBuilder value, CancellationToken cancellationToken)
void
WriteLine()
void
WriteLine(boolean value)
void
WriteLine(char value)
void
WriteLine(char[] buffer)
void
WriteLine(char[] buffer, int index, int count)
void
WriteLine(double value)
void
WriteLine(int value)
void
WriteLine(long value)
void
WriteLine(String value)
void
WriteLine(String format, NetObject arg0)
void
WriteLine(String format, NetObject... arg)
void
WriteLine(String format, NetObject arg0, NetObject arg1)
void
WriteLine(String format, NetObject arg0, NetObject arg1, NetObject arg2)
void
WriteLine(JCORefOut dupParam0)
void
WriteLine(JCORefOut dupParam0, int dupParam1, int dupParam2)
void
WriteLine(NetObject value)
void
WriteLine(Decimal value)
void
WriteLine(Single value)
void
WriteLine(StringBuilder value)
void
WriteLine(UInt32 value)
void
WriteLine(UInt64 value)
Task
WriteLineAsync()
Task
WriteLineAsync(char value)
Task
WriteLineAsync(char[] buffer)
Task
WriteLineAsync(char[] buffer, int index, int count)
Task
WriteLineAsync(String value)
Task
WriteLineAsync(JCORefOut dupParam0)
Task
WriteLineAsync(JCORefOut dupParam0, int dupParam1, int dupParam2)
Task
WriteLineAsync(StringBuilder value, CancellationToken cancellationToken)
-
Methods inherited from class system.MarshalByRefObject
GetLifetimeService, InitializeLifetimeService
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toObjectFromArray, toObjectFromArray, toString, ToString, translateException
-
-
-
-
Field Detail
-
assemblyFullName
public static final String assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e- See Also:
- Constant Field Values
-
assemblyShortName
public static final String assemblyShortName
Assembly name: System.Private.CoreLib- See Also:
- Constant Field Values
-
className
public static final String className
Qualified class name: System.IO.TextWriter- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classMarshalByRefObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classMarshalByRefObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public 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 classMarshalByRefObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classMarshalByRefObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classMarshalByRefObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classMarshalByRefObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static TextWriter cast(IJCOBridgeReflected from) throws Throwable
Try to cast theIJCOBridgeReflected
instance intoTextWriter
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
TextWriter
instance- Throws:
Throwable
- in case of error during cast operation
-
Synchronized
public static TextWriter Synchronized(TextWriter writer) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
FlushAsync
public Task FlushAsync() throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException
-
WriteAsync
public Task WriteAsync(char value) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException
-
WriteAsync
public Task WriteAsync(char[] buffer, int index, int count) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, EventSourceException, OutOfMemoryException
-
WriteAsync
public Task WriteAsync(JCORefOut dupParam0, int dupParam1, int dupParam2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, EventSourceException, OutOfMemoryException
-
WriteAsync
public Task WriteAsync(char[] buffer) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, EventSourceException, OutOfMemoryException
-
WriteAsync
public Task WriteAsync(JCORefOut dupParam0) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, EventSourceException, OutOfMemoryException
-
WriteAsync
public Task WriteAsync(String value) throws Throwable, PlatformNotSupportedException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, NotSupportedException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException
-
WriteAsync
public Task WriteAsync(StringBuilder value, CancellationToken cancellationToken) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException
-
WriteLineAsync
public Task WriteLineAsync() throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, EventSourceException
-
WriteLineAsync
public Task WriteLineAsync(char value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException
-
WriteLineAsync
public Task WriteLineAsync(char[] buffer, int index, int count) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, EventSourceException, OutOfMemoryException
-
WriteLineAsync
public Task WriteLineAsync(JCORefOut dupParam0, int dupParam1, int dupParam2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, EventSourceException, OutOfMemoryException
-
WriteLineAsync
public Task WriteLineAsync(char[] buffer) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, TaskSchedulerException, PlatformNotSupportedException, IndexOutOfRangeException
-
WriteLineAsync
public Task WriteLineAsync(JCORefOut dupParam0) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, TaskSchedulerException, PlatformNotSupportedException, IndexOutOfRangeException
-
WriteLineAsync
public Task WriteLineAsync(String value) throws Throwable, PlatformNotSupportedException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, NotSupportedException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException
-
WriteLineAsync
public Task WriteLineAsync(StringBuilder value, CancellationToken cancellationToken) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException
-
DisposeAsync
public ValueTask DisposeAsync() throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Close
public void Close() throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException
-
Dispose
public void Dispose() throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException
-
Write
public void Write(boolean value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException
-
Write
public void Write(char[] buffer, int index, int count) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
Write
public void Write(JCORefOut dupParam0, int dupParam1, int dupParam2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
Write
public void Write(char[] buffer) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Write
public void Write(JCORefOut dupParam0) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Write
public void Write(double value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, FormatException, ArgumentException, NotSupportedException, ArgumentOutOfRangeException, ArrayTypeMismatchException
-
Write
public void Write(int value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException
-
Write
public void Write(long value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException
-
Write
public void Write(Single value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, FormatException, ArgumentException, NotSupportedException, ArgumentOutOfRangeException, ArrayTypeMismatchException
-
Write
public void Write(Decimal value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, FormatException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException
-
Write
public void Write(NetObject value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentException
-
Write
public void Write(String format, NetObject arg0, NetObject arg1, NetObject arg2) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, FormatException
-
Write
public void Write(String format, NetObject arg0, NetObject arg1) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, FormatException
-
Write
public void Write(String format, NetObject arg0) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, FormatException
-
Write
public void Write(String format, NetObject... arg) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, FormatException
-
Write
public void Write(String value) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException
-
Write
public void Write(StringBuilder value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException
-
Write
public void Write(UInt32 value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentException
-
Write
public void Write(UInt64 value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentException
-
WriteLine
public void WriteLine() throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException
-
WriteLine
public void WriteLine(boolean value) throws Throwable, PlatformNotSupportedException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException
-
WriteLine
public void WriteLine(char value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
WriteLine
public void WriteLine(char[] buffer, int index, int count) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
WriteLine
public void WriteLine(JCORefOut dupParam0, int dupParam1, int dupParam2) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
WriteLine
public void WriteLine(char[] buffer) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException
-
WriteLine
public void WriteLine(JCORefOut dupParam0) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException
-
WriteLine
public void WriteLine(double value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, InvalidOperationException, FormatException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException
-
WriteLine
public void WriteLine(int value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, FormatException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException
-
WriteLine
public void WriteLine(long value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, FormatException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException
-
WriteLine
public void WriteLine(Single value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, InvalidOperationException, FormatException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException
-
WriteLine
public void WriteLine(Decimal value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException
-
WriteLine
public void WriteLine(NetObject value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, CultureNotFoundException
-
WriteLine
public void WriteLine(String format, NetObject arg0, NetObject arg1, NetObject arg2) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, FormatException
-
WriteLine
public void WriteLine(String format, NetObject arg0, NetObject arg1) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, FormatException
-
WriteLine
public void WriteLine(String format, NetObject arg0) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, FormatException
-
WriteLine
public void WriteLine(String format, NetObject... arg) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, FormatException
-
WriteLine
public void WriteLine(String value) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException
-
WriteLine
public void WriteLine(StringBuilder value) throws Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
WriteLine
public void WriteLine(UInt32 value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentException
-
WriteLine
public void WriteLine(UInt64 value) throws Throwable, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentException
-
close
public void close() throws Exception
- Specified by:
close
in interfaceAutoCloseable
- Throws:
Exception
-
getFormatProvider
public IFormatProvider getFormatProvider() throws Throwable, ArgumentNullException, IndexOutOfRangeException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException
-
setNewLine
public void setNewLine(String NewLine) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException
-
-