Paquete | mx.core |
Clase | public class RSLData |
Herencia | RSLData Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR 2.5 |
Propiedad | Definido por | ||
---|---|---|---|
applicationDomainTarget : String [solo lectura]
The requested application domain to load the RSL into. | RSLData | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
digest : String [solo lectura]
The digest of the RSL. | RSLData | ||
hashType : String [solo lectura]
The type of hash used to create the RSL digest. | RSLData | ||
isSigned : Boolean [solo lectura]
True if the RSL has been signed by Adobe. | RSLData | ||
moduleFactory : IFlexModuleFactory
Non-null if this RSL should be loaded into an application
domain other than the application domain associated with the
module factory performing the load. | RSLData | ||
policyFileURL : String [solo lectura]
An URL that specifies the location of the policy file (optional). | RSLData | ||
rslURL : String [solo lectura]
The location of the RSL. | RSLData | ||
verifyDigest : Boolean [solo lectura]
True if the digest must be verified before loading the RSL into memory. | RSLData |
Método | Definido por | ||
---|---|---|---|
RSLData(rslURL:String = null, policyFileURL:String = null, digest:String = null, hashType:String = null, isSigned:Boolean = false, verifyDigest:Boolean = false, applicationDomainTarget:String = "default")
Constructor. | RSLData | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
applicationDomainTarget | propiedad |
applicationDomainTarget:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR 2.5 |
The requested application domain to load the RSL into. For valid values see the ApplicationDomainTarget enumeration.
Implementación
public function get applicationDomainTarget():String
Elementos de API relacionados
digest | propiedad |
hashType | propiedad |
hashType:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR 2.5 |
The type of hash used to create the RSL digest. The only supported hash
type is SHA256.TYPE_ID
.
Implementación
public function get hashType():String
isSigned | propiedad |
moduleFactory | propiedad |
moduleFactory:IFlexModuleFactory
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR 2.5 |
Non-null if this RSL should be loaded into an application domain other than the application domain associated with the module factory performing the load. If null, then load into the current application domain.
Implementación
public function get moduleFactory():IFlexModuleFactory
public function set moduleFactory(value:IFlexModuleFactory):void
policyFileURL | propiedad |
rslURL | propiedad |
verifyDigest | propiedad |
verifyDigest:Boolean
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR 2.5 |
True if the digest must be verified before loading the RSL into memory. False allows the RSL to be loaded without verification. Signed RSLs are always verified regardless of the value.
Implementación
public function get verifyDigest():Boolean
RSLData | () | Información sobre |
public function RSLData(rslURL:String = null, policyFileURL:String = null, digest:String = null, hashType:String = null, isSigned:Boolean = false, verifyDigest:Boolean = false, applicationDomainTarget:String = "default")
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR 2.5 |
Constructor.
ParámetrosrslURL:String (default = null ) — The location of the RSL.
| |
policyFileURL:String (default = null ) — The location of the policy file url (optional).
| |
digest:String (default = null ) — The digest of the RSL. This is null for an RSL without
a digest.
| |
hashType:String (default = null ) — The type of hash used to create the digest. The only
supported value is SHA256.TYPE_ID .
| |
isSigned:Boolean (default = false ) — True if the RSL has been signed by Adobe, false
otherwise.
| |
verifyDigest:Boolean (default = false ) — Detemines if the RSL's digest should be verified
after it is loaded.
| |
applicationDomainTarget:String (default = "default ") — The application domain where the the
RSL should be loaded. For valid values see the ApplicationDomainTarget
enumeration.
|
Elementos de API relacionados
Tue Jun 12 2018, 02:12 PM Z