flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph iTextSharp.text.io
iTextSharp.text.io.RASInputStream[[RASInputStream]]
end
subgraph System.IO
System.IO.Stream[[Stream]]
end
System.IO.Stream --> iTextSharp.text.io.RASInputStream
| Returns | Name |
|---|
void | Flush() |
int | Read(byte``[] buffer, int offset, int len) |
int | ReadByte() |
long | Seek(long offset, SeekOrigin origin) |
void | SetLength(long value) |
void | Write(byte``[] buffer, int offset, int count) |
Source code
public RASInputStream(IRandomAccessSource source)
Source code
public override void Flush()
Source code
public override int Read(byte[] buffer, int offset, int len)
| Type | Name | Description |
|---|
byte``[] | buffer | |
int | offset | |
int | len | |
Source code
public override int ReadByte()
Source code
public override long Seek(long offset, SeekOrigin origin)
| Type | Name | Description |
|---|
long | offset | |
SeekOrigin | origin | |
Source code
public override void SetLength(long value)
| Type | Name | Description |
|---|
long | value | |
Source code
public override void Write(byte[] buffer, int offset, int count)
| Type | Name | Description |
|---|
byte``[] | buffer | |
int | offset | |
int | count | |
public override bool CanRead { get; }
public override bool CanSeek { get; }
public override bool CanWrite { get; }
public override long Length { get; }
public override long Position { get; set; }
Generated with ModularDoc