Pacote | mx.netmon |
Classe | public class NetworkMonitor |
Herança | NetworkMonitor Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Propriedade | Definido por | ||
---|---|---|---|
adjustNetConnectionURLImpl : Function [estático]
To be assigned by mix-in. | NetworkMonitor | ||
adjustURLRequestImpl : Function [estático]
To be assigned by mix-in. | NetworkMonitor | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
isMonitoringImpl : Function [estático]
To be assigned by mix-in. | NetworkMonitor | ||
monitorEventImpl : Function [estático]
To be assigned by mix-in. | NetworkMonitor | ||
monitorFaultImpl : Function [estático]
To be assigned by mix-in. | NetworkMonitor | ||
monitorInvocationImpl : Function [estático]
To be assigned by mix-in. | NetworkMonitor | ||
monitorResultImpl : Function [estático]
To be assigned by mix-in. | NetworkMonitor |
Método | Definido por | ||
---|---|---|---|
[estático]
Adjust the URL for NetConnectionChannel and HTTPChannel Requests
so that it goes through the monitor. | NetworkMonitor | ||
[estático]
Adjust the URLRequest so that it goes through the monitor. | NetworkMonitor | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
[estático]
Returns true if the monitor is linked and monitoring. | NetworkMonitor | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
[estático]
Tell the monitor that an event occurred. | NetworkMonitor | ||
[estático]
Tell the monitor that a fault occurred. | NetworkMonitor | ||
[estático]
Tell the monitor that an invocation is occuring. | NetworkMonitor | ||
[estático]
Tell the monitor that a result was returned. | NetworkMonitor | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object |
adjustNetConnectionURLImpl | propriedade |
public static var adjustNetConnectionURLImpl:Function
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
adjustURLRequestImpl | propriedade |
public static var adjustURLRequestImpl:Function
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
isMonitoringImpl | propriedade |
public static var isMonitoringImpl:Function
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
monitorEventImpl | propriedade |
public static var monitorEventImpl:Function
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
monitorFaultImpl | propriedade |
public static var monitorFaultImpl:Function
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
monitorInvocationImpl | propriedade |
public static var monitorInvocationImpl:Function
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
monitorResultImpl | propriedade |
public static var monitorResultImpl:Function
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
adjustNetConnectionURL | () | método |
public static function adjustNetConnectionURL(rootUrl:String, url:String):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Adjust the URL for NetConnectionChannel and HTTPChannel Requests so that it goes through the monitor. Returns the modified url.
Parâmetros
rootUrl:String — to adjust.
| |
url:String |
String |
adjustURLRequest | () | método |
public static function adjustURLRequest(urlRequest:URLRequest, rootURL:String, correlationID:String):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Adjust the URLRequest so that it goes through the monitor. The URLRequest sent to the monitor will have two headers:
actualHostPort
: The realhost:port
for the URL.correlationID
: The correlationID for the request in case it's from messaging (Image/Loader requests need to create their own correlationIDs)
Parâmetros
urlRequest:URLRequest — The URLRequest to adjust.
(Relative URLs are supported.)
| |
rootURL:String — Computes an absolute URL from the relative URL.
If necessary, pass the SWF file's URL as this value.
| |
correlationID:String — The correlationID that may be used
for associated events.
|
isMonitoring | () | método |
monitorEvent | () | método |
public static function monitorEvent(event:Event, correlationID:String):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Tell the monitor that an event occurred.
This may be used by the Loader to monitor security and IO errors.
It should not be used for the Loader's complete
event.
Parâmetros
event:Event — The event that is about to occur (or occurred).
| |
correlationID:String — The correlationID to associate with other events
or the request.
|
monitorFault | () | método |
public static function monitorFault(faultMessage:Object, actualFault:Object):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Tell the monitor that a fault occurred.
Parâmetros
faultMessage:Object — The Message that came back indicating the result.
It be null if this was due to an invocation failure.
(It is untyped here to avoid linking in the dependency.)
| |
actualFault:Object — The Fault that occurred.
(It is untyped here to avoid linking in the dependency.)
|
monitorInvocation | () | método |
public static function monitorInvocation(id:String, invocationMessage:Object, messageAgent:Object):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Tell the monitor that an invocation is occuring.
Parâmetros
id:String — The id of the tag causing the invocation
if it can be determined.
| |
invocationMessage:Object — The Message that will be sent across the wire.
(It is untyped here to avoid linking in the dependency.)
| |
messageAgent:Object |
monitorResult | () | método |
public static function monitorResult(resultMessage:Object, actualResult:Object):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Tell the monitor that a result was returned.
Parâmetros
resultMessage:Object — The Message that came back indicating the result.
(It is untyped here to avoid linking in the dependency.)
| |
actualResult:Object — the decoded result
|
Wed Jun 13 2018, 11:10 AM Z