Pacchetto | mx.utils |
Classe | public class Base64Decoder |
Ereditarietà | Base64Decoder Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Proprietà pubbliche
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
Constructor. | Base64Decoder | ||
Decodes a Base64 encoded String and adds the result to an internal
buffer. | Base64Decoder | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Clears all buffers and resets the decoder to its initial state. | Base64Decoder | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Returns the current buffer as a decoded flash.utils.ByteArray. | Base64Decoder | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Descrizione della funzione di costruzione
Base64Decoder | () | Funzione di costruzione |
public function Base64Decoder()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor.
Descrizione dei metodi
decode | () | metodo |
public function decode(encoded:String):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Decodes a Base64 encoded String and adds the result to an internal buffer. Strings must be in ASCII format.
Subsequent calls to this method add on to the internal
buffer. After all data have been encoded, call toByteArray()
to obtain a decoded flash.utils.ByteArray
.
Parametri
encoded:String — The Base64 encoded String to decode.
|
reset | () | metodo |
public function reset():void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Clears all buffers and resets the decoder to its initial state.
toByteArray | () | metodo |
public function toByteArray():ByteArray
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns the current buffer as a decoded flash.utils.ByteArray
.
Note that calling this method also clears the buffer and resets the
decoder to its initial state.
ByteArray — The decoded flash.utils.ByteArray .
|
Tue Jun 12 2018, 02:44 PM Z