The ISFSObject type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
| ContainsKey |
Returns true if an element exists with the provided key
| |
| GetBool |
Get the element for the provided key as a Boolean
| |
| GetBoolArray |
Get the element for the provided key as an array of Booleans
| |
| GetByte |
Get the element for the provided key as a signed byte (8 bit) (int in AS3)
| |
| GetByteArray |
Get the element for the provided key as a an array of byte
| |
| GetClass |
Get the element for the provided key as an instance of a custom Class.
| |
| GetDouble |
Get the element for the provided key as a double (Number in AS3)
| |
| GetDoubleArray |
Get the element for the provided key as an array of doubles
| |
| GetDump()()()() |
Return a formatted dump of the object that can logged or traced in the console for debugging purposes.
| |
| GetDump(Boolean) |
Return a formatted dump of the object that can logged or traced in the console for debugging purposes.
| |
| GetFloat |
Get the element for the provided key as a float (Number in AS3)
| |
| GetFloatArray |
Get the element for the provided key as an array of floats
| |
| GetHexDump |
Returns a detailed hex-dump of the object that can logged or traced in the console for debugging purposes.
| |
| GetInt |
Get the element for the provided key as an int (32 bit)
| |
| GetIntArray |
Get the element for the provided key as an array of int
| |
| GetKeys |
Return an array with all the keys in the SFSObject
| |
| GetLong |
Get the element for the provided key as a long int (64 bit) (Number in AS3)
| |
| GetLongArray |
Get the element for the provided key as an array of long int
| |
| GetSFSArray |
Get the element for the provided key as an SFSArray | |
| GetSFSObject |
Get the element for the provided key as an SFSObject
| |
| GetShort |
Get the element for the provided key as a short int (16 bit) (int in AS3)
| |
| GetShortArray |
Get the element for the provided key as an array of short int
| |
| GetUtfString |
Get the element for the provided key as a UTF-8 String
| |
| GetUtfStringArray |
Get the element for the provided key as an array of UTF-8 Strings
| |
| IsNull |
Checks if a specific element in the SFSObject is null
| |
| PutBool |
puts a Boolean value with the provided key
| |
| PutBoolArray |
puts an array of Booleans with the provided key
| |
| PutByte |
puts a byte value (8 bit) with the provided key
| |
| PutByteArray |
puts an array of bytes with the provided key
| |
| PutClass |
Puts an instance of a custom Class.
| |
| PutDouble |
puts a double (64 bit) with the provided key
| |
| PutDoubleArray |
puts an array of doubles with the provided key
| |
| PutFloat |
puts a float (32 bit) with the provided key
| |
| PutFloatArray |
puts an array of floats with the provided key
| |
| PutInt |
puts an int (32 bit) with the provided key
| |
| PutIntArray |
puts an array of ints with the provided key
| |
| PutLong |
puts a long int (64 bit) with the provided key
| |
| PutLongArray |
puts an array of long ints with the provided key
| |
| PutSFSArray |
puts an SFSArray with the provided key
| |
| PutSFSObject |
puts an SFSObject with the provided key
| |
| PutShort |
puts a short int (16 bit) with the provided key
| |
| PutShortArray |
puts an array of short ints with the provided key
| |
| PutUtfString |
puts a UTF-8 String with the provided key
| |
| PutUtfStringArray |
puts an array of Strings with the provided key
| |
| RemoveElement |
Removes an element
| |
| Size |
Return the number of elements in the SFSObject
| |
| ToBinary |
Return the binary form of the object
|