Свойство | Type | Description | |
---|---|---|---|
MemoryStream |
Méthode | Description | |
---|---|---|
Process ( |
Processes the specified input data.
|
|
Process ( byte Buffer ) : |
Processes the specified byte array
|
|
Process ( byte Buffer, int offset, int count ) : |
Processes the specified region of the specified byte array
|
|
Process ( string Data ) : |
Processes the specified string in UTF8 encoding.
|
|
ProcessPart ( byte Buffer ) : void |
Part processes the specified region of the specified byte array.
|
|
ProcessPart ( byte Buffer, int offset, int count ) : void |
Part processes the specified region of the specified byte array. [Efficiency] Currently the data is buffered internally and processed in one go. Use of the underlying TransformBlock methods would allow for more efficient processing and reduce memory overhead.
|
|
ProcessPart ( string Data ) : void |
Part processes the specified region of the specified string in UTF8 encoding.
|
|
TransformFinal ( ) : |
Terminates a part processing session and returns the result.
|
public Process ( |
||
Data | The input to process | |
Résultat |
public Process ( byte Buffer ) : |
||
Buffer | byte | The input to process |
Résultat |
public abstract Process ( byte Buffer, int offset, int count ) : |
||
Buffer | byte | The input to process |
offset | int | The offset into the byte array from which to begin using data. |
count | int | The number of bytes in the array to use as data. |
Résultat |
public Process ( string Data ) : |
||
Data | string | The input to process |
Résultat |
public ProcessPart ( byte Buffer ) : void | ||
Buffer | byte | The input to process |
Résultat | void |
public ProcessPart ( byte Buffer, int offset, int count ) : void | ||
Buffer | byte | The input to process |
offset | int | The offset into the byte array from which to begin using data. |
count | int | The number of bytes in the array to use as data. |
Résultat | void |
public ProcessPart ( string Data ) : void | ||
Data | string | The input to process |
Résultat | void |