Instance Property
インスタンスプロパティ
shouldResolveExternalEntities
A Boolean value that determines whether the parser reports declarations of external entities.
あるブール値、それはパーサーが外部エンティティの宣言を報告するかどうかを決定します。
Declaration
宣言
var shouldResolveExternalEntities: Bool
{ get set }
Discussion
議論
true
if the parser reports declarations of external entities, false
otherwise. The default value is false
. If you set this property to true
, you may cause other I/O operations, either network-based or disk-based, to load the external DTD.
true
、もしパーサーが外部エンティティの宣言を報告するならば、そうでなければfalse
。省略時の値は、false
です。あなたがこのプロパティをtrue
に設定するならば、あなたは他の I/O 演算を引き起こすかもしれません、ネットワーク基盤またはディスク基盤のどちらかで、外部DTDをロードするために。
The parser reports declarations of external entities with the delegate method parser(_:foundExternalEntityDeclarationWithName:publicID:systemID:)
.
パーサーは、外部エンティティの宣言を、委任先メソッドparser(_:foundExternalEntityDeclarationWithName:publicID:systemID:)
で報告します。
See Also
参照
Managing Parser Behavior
パーサー挙動を管理する
var shouldProcessNamespaces: Bool
A Boolean value that determines whether the parser reports the namespaces and qualified names of elements.
あるブール値、それはパーサーが要素の名前空間と修飾名を報告するかどうかを決定します。
var shouldReportNamespacePrefixes: Bool
A Boolean value that determines whether the parser reports the prefixes indicating the scope of namespace declarations.
あるブール値、それはパーサーが名前空間宣言のスコープを指し示す接頭辞を報告するかどうかを決定します。