Paket | mx.utils |
Sınıf | public class Base64Encoder |
Miras Alma | Base64Encoder Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Özellik | Tanımlayan: | ||
---|---|---|---|
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
insertNewLines : Boolean = true
A Boolean flag to control whether the sequence of characters specified
for Base64Encoder.newLine are inserted every 76 characters
to wrap the encoded output. | Base64Encoder | ||
newLine : int = 10 [statik]
The character codepoint to be inserted into the encoded output to
denote a new line if insertNewLines is true. | Base64Encoder |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor. | Base64Encoder | ||
Encodes the characters of a String in Base64 and adds the result to
an internal buffer. | Base64Encoder | ||
Encodes a ByteArray in Base64 and adds the result to an internal buffer. | Base64Encoder | ||
Encodes the UTF-8 bytes of a String in Base64 and adds the result to an
internal buffer. | Base64Encoder | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Clears all buffers and resets the encoder to its initial state. | Base64Encoder | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Returns the current buffer as a Base64 encoded String. | Base64Encoder | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
Sabit | Tanımlayan: | ||
---|---|---|---|
CHARSET_UTF_8 : String = "UTF-8" [statik]
Constant definition for the string "UTF-8". | Base64Encoder |
insertNewLines | özellik |
public var insertNewLines:Boolean = true
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
A Boolean flag to control whether the sequence of characters specified
for Base64Encoder.newLine
are inserted every 76 characters
to wrap the encoded output.
The default is true.
newLine | özellik |
public static var newLine:int = 10
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
The character codepoint to be inserted into the encoded output to
denote a new line if insertNewLines
is true.
The default is 10
to represent the line feed \n
.
Base64Encoder | () | Yapıcı |
public function Base64Encoder()
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructor.
encode | () | yöntem |
public function encode(data:String, offset:uint = 0, length:uint = 0):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Encodes the characters of a String in Base64 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
toString()
to obtain a Base64 encoded String.
Parametreler
data:String — The String to encode.
| |
offset:uint (default = 0 ) — The character position from which to start encoding.
| |
length:uint (default = 0 ) — The number of characters to encode from the offset.
|
encodeBytes | () | yöntem |
public function encodeBytes(data:ByteArray, offset:uint = 0, length:uint = 0):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Encodes a ByteArray in Base64 and adds the result to an internal buffer.
Subsequent calls to this method add on to the internal buffer. After all
data have been encoded, call toString()
to obtain a
Base64 encoded String.
Parametreler
data:ByteArray — The ByteArray to encode.
| |
offset:uint (default = 0 ) — The index from which to start encoding.
| |
length:uint (default = 0 ) — The number of bytes to encode from the offset.
|
encodeUTFBytes | () | yöntem |
public function encodeUTFBytes(data:String):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Encodes the UTF-8 bytes of a String in Base64 and adds the result to an
internal buffer. The UTF-8 information does not contain a length prefix.
Subsequent calls to this method add on to the internal buffer. After all
data have been encoded, call toString()
to obtain a Base64
encoded String.
Parametreler
data:String — The String to encode.
|
reset | () | yöntem |
public function reset():void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Clears all buffers and resets the encoder to its initial state.
toString | () | yöntem |
public function toString():String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the current buffer as a Base64 encoded String. Note that calling this method also clears the buffer and resets the encoder to its initial state.
DöndürürString — The Base64 encoded String.
|
CHARSET_UTF_8 | Sabit |
public static const CHARSET_UTF_8:String = "UTF-8"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constant definition for the string "UTF-8".
Tue Jun 12 2018, 01:09 PM Z