패키지 | mx.netmon |
클래스 | public class NetworkMonitor |
상속 | NetworkMonitor Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
속성 | 정의 주체 | ||
---|---|---|---|
adjustNetConnectionURLImpl : Function [정적]
To be assigned by mix-in. | NetworkMonitor | ||
adjustURLRequestImpl : Function [정적]
To be assigned by mix-in. | NetworkMonitor | ||
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
isMonitoringImpl : Function [정적]
To be assigned by mix-in. | NetworkMonitor | ||
monitorEventImpl : Function [정적]
To be assigned by mix-in. | NetworkMonitor | ||
monitorFaultImpl : Function [정적]
To be assigned by mix-in. | NetworkMonitor | ||
monitorInvocationImpl : Function [정적]
To be assigned by mix-in. | NetworkMonitor | ||
monitorResultImpl : Function [정적]
To be assigned by mix-in. | NetworkMonitor |
메서드 | 정의 주체 | ||
---|---|---|---|
[정적]
Adjust the URL for NetConnectionChannel and HTTPChannel Requests
so that it goes through the monitor. | NetworkMonitor | ||
[정적]
Adjust the URLRequest so that it goes through the monitor. | NetworkMonitor | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
[정적]
Returns true if the monitor is linked and monitoring. | NetworkMonitor | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
[정적]
Tell the monitor that an event occurred. | NetworkMonitor | ||
[정적]
Tell the monitor that a fault occurred. | NetworkMonitor | ||
[정적]
Tell the monitor that an invocation is occuring. | NetworkMonitor | ||
[정적]
Tell the monitor that a result was returned. | NetworkMonitor | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
adjustNetConnectionURLImpl | 속성 |
public static var adjustNetConnectionURLImpl:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
adjustURLRequestImpl | 속성 |
public static var adjustURLRequestImpl:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
isMonitoringImpl | 속성 |
public static var isMonitoringImpl:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
monitorEventImpl | 속성 |
public static var monitorEventImpl:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
monitorFaultImpl | 속성 |
public static var monitorFaultImpl:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
monitorInvocationImpl | 속성 |
public static var monitorInvocationImpl:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
monitorResultImpl | 속성 |
public static var monitorResultImpl:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
To be assigned by mix-in.
adjustNetConnectionURL | () | 메서드 |
public static function adjustNetConnectionURL(rootUrl:String, url:String):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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.
매개 변수
rootUrl:String — to adjust.
| |
url:String |
String |
adjustURLRequest | () | 메서드 |
public static function adjustURLRequest(urlRequest:URLRequest, rootURL:String, correlationID:String):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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)
매개 변수
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 | () | 메서드 |
monitorEvent | () | 메서드 |
public static function monitorEvent(event:Event, correlationID:String):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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.
매개 변수
event:Event — The event that is about to occur (or occurred).
| |
correlationID:String — The correlationID to associate with other events
or the request.
|
monitorFault | () | 메서드 |
public static function monitorFault(faultMessage:Object, actualFault:Object):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Tell the monitor that a fault occurred.
매개 변수
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 | () | 메서드 |
public static function monitorInvocation(id:String, invocationMessage:Object, messageAgent:Object):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Tell the monitor that an invocation is occuring.
매개 변수
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 | () | 메서드 |
public static function monitorResult(resultMessage:Object, actualResult:Object):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Tell the monitor that a result was returned.
매개 변수
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, 03:17 PM Z