共用方式為


XmlLoadSettings.ProhibitDtd 屬性

定義

取得或設定值,指定是否禁止或允許在 XML DOM 檔中包含 DTD。

public:
 property bool ProhibitDtd { bool get(); void set(bool value); };
bool ProhibitDtd();

void ProhibitDtd(bool value);
public bool ProhibitDtd { get; set; }
var boolean = xmlLoadSettings.prohibitDtd;
xmlLoadSettings.prohibitDtd = boolean;
Public Property ProhibitDtd As Boolean

屬性值

Boolean

bool

True 是表示 禁止在 XML DOM 檔中包含 DTD;false 表示允許包含。 預設值為 true。

備註

此屬性可讓您禁止 DTD 使用,並有助於防止在某些情況下遭到阻斷服務攻擊。 例如,如果 DTD 包含大量實體參考,而且在剖析和載入檔 XML 時需要解析,應用程式可能會變得沒有回應。

適用於