패키지 | mx.rpc.xml |
인터페이스 | public interface IXMLEncoder |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
공용 속성
속성 | 정의 주체 | ||
---|---|---|---|
strictNillability : Boolean
When strictNillability is set to true, null values
are encoded according to XML Schema rules (requires nillable=true
to be set in the definition). | IXMLEncoder | ||
xmlSpecialCharsFilter : Function
The function to be used to escape XML special characters before encoding
any simple content. | IXMLEncoder |
공용 메서드
메서드 | 정의 주체 | ||
---|---|---|---|
Encodes an ActionScript value as XML. | IXMLEncoder | ||
Resets the encoder to its initial state, including resetting any
Schema scope to the top level. | IXMLEncoder |
속성 세부 정보
strictNillability | 속성 |
strictNillability:Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
When strictNillability is set to true
, null values
are encoded according to XML Schema rules (requires nillable=true
to be set in the definition). When strictNillability is set to
false
, null values are always encoded with the
xsi:nil="true"
attribute. The default is false
.
구현
public function get strictNillability():Boolean
public function set strictNillability(value:Boolean):void
xmlSpecialCharsFilter | 속성 |
xmlSpecialCharsFilter:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
The function to be used to escape XML special characters before encoding any simple content.
구현
public function get xmlSpecialCharsFilter():Function
public function set xmlSpecialCharsFilter(value:Function):void
메서드 세부 정보
encode | () | 메서드 |
public function encode(value:*, name:QName = null, type:QName = null, definition:XML = null):XMLList
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Encodes an ActionScript value as XML.
매개 변수
value:* — The ActionScript value to encode as XML.
| |
name:QName (default = null ) — The QName of an XML Schema element that
describes how to encode the value, or the name to be used for the
encoded XML node when a type parameter is also specified.
| |
type:QName (default = null ) — The QName of an XML Schema simpleType or
complexType definition that describes how to encode the
value.
| |
definition:XML (default = null ) — If neither a top-level element nor type exists in the
schema to describe how to encode this value, a custom element definition
can be provided.
|
XMLList — Returns an XML encoding of the given ActionScript value.
|
reset | () | 메서드 |
public function reset():void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Resets the encoder to its initial state, including resetting any Schema scope to the top level.
Tue Jun 12 2018, 03:17 PM Z