DocumentSettingsAddSystemDocument(String, String) Method |
Adds 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,
string contents
)
Public Sub AddSystemDocument (
identifier As String,
contents As String
)
public:
void AddSystemDocument(
String^ identifier,
String^ contents
)
member AddSystemDocument :
identifier : string *
contents : string -> unit
Parameters
- identifier String
- An identifier for the document.
- contents String
- A string containing the document's contents.
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
Script to the
specified document, bypassing the configuration's document loader.
See Also