Paket | mx.netmon |
Sınıf | public class NetworkMonitor |
Miras Alma | NetworkMonitor 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: | ||
---|---|---|---|
adjustNetConnectionURLImpl : Function [statik]
To be assigned by mix-in. | NetworkMonitor | ||
adjustURLRequestImpl : Function [statik]
To be assigned by mix-in. | NetworkMonitor | ||
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
isMonitoringImpl : Function [statik]
To be assigned by mix-in. | NetworkMonitor | ||
monitorEventImpl : Function [statik]
To be assigned by mix-in. | NetworkMonitor | ||
monitorFaultImpl : Function [statik]
To be assigned by mix-in. | NetworkMonitor | ||
monitorInvocationImpl : Function [statik]
To be assigned by mix-in. | NetworkMonitor | ||
monitorResultImpl : Function [statik]
To be assigned by mix-in. | NetworkMonitor |
Yöntem | Tanımlayan: | ||
---|---|---|---|
[statik]
Adjust the URL for NetConnectionChannel and HTTPChannel Requests
so that it goes through the monitor. | NetworkMonitor | ||
[statik]
Adjust the URLRequest so that it goes through the monitor. | NetworkMonitor | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
[statik]
Returns true if the monitor is linked and monitoring. | NetworkMonitor | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
[statik]
Tell the monitor that an event occurred. | NetworkMonitor | ||
[statik]
Tell the monitor that a fault occurred. | NetworkMonitor | ||
[statik]
Tell the monitor that an invocation is occuring. | NetworkMonitor | ||
[statik]
Tell the monitor that a result was returned. | NetworkMonitor | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
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 | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
adjustNetConnectionURLImpl | özellik |
public static var adjustNetConnectionURLImpl:Function
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 |
To be assigned by mix-in.
adjustURLRequestImpl | özellik |
public static var adjustURLRequestImpl:Function
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 |
To be assigned by mix-in.
isMonitoringImpl | özellik |
public static var isMonitoringImpl:Function
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 |
To be assigned by mix-in.
monitorEventImpl | özellik |
public static var monitorEventImpl:Function
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 |
To be assigned by mix-in.
monitorFaultImpl | özellik |
public static var monitorFaultImpl:Function
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 |
To be assigned by mix-in.
monitorInvocationImpl | özellik |
public static var monitorInvocationImpl:Function
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 |
To be assigned by mix-in.
monitorResultImpl | özellik |
public static var monitorResultImpl:Function
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 |
To be assigned by mix-in.
adjustNetConnectionURL | () | yöntem |
public static function adjustNetConnectionURL(rootUrl:String, url:String):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 |
Adjust the URL for NetConnectionChannel and HTTPChannel Requests so that it goes through the monitor. Returns the modified url.
Parametreler
rootUrl:String — to adjust.
| |
url:String |
String |
adjustURLRequest | () | yöntem |
public static function adjustURLRequest(urlRequest:URLRequest, rootURL:String, correlationID: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 |
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)
Parametreler
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 | () | yöntem |
monitorEvent | () | yöntem |
public static function monitorEvent(event:Event, correlationID: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 |
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.
Parametreler
event:Event — The event that is about to occur (or occurred).
| |
correlationID:String — The correlationID to associate with other events
or the request.
|
monitorFault | () | yöntem |
public static function monitorFault(faultMessage:Object, actualFault:Object):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 |
Tell the monitor that a fault occurred.
Parametreler
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 | () | yöntem |
public static function monitorInvocation(id:String, invocationMessage:Object, messageAgent:Object):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 |
Tell the monitor that an invocation is occuring.
Parametreler
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 | () | yöntem |
public static function monitorResult(resultMessage:Object, actualResult:Object):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 |
Tell the monitor that a result was returned.
Parametreler
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
|
Tue Jun 12 2018, 01:09 PM Z