DocumentSettingsAddSystemDocument(String, Document) Method |
Adds the specified document as a system document to the configuration.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public void AddSystemDocument(
string identifier,
Document document
)
Public Sub AddSystemDocument (
identifier As String,
document As Document
)
public:
void AddSystemDocument(
String^ identifier,
Document^ document
)
member AddSystemDocument :
identifier : string *
document : Document -> unit
Parameters
- identifier String
- An identifier for the document.
- document Document
- The document to be added as a system document.
Remarks
System documents take precedence over loaded documents. Once this method is invoked,
document access using this configuration will always map the combination of
identifier and the specified document's category to the specified
document, bypassing the configuration's document loader.
See Also