| Visual Basic (Declaration) | |
|---|---|
Public Overrides NotOverridable Sub WriteDocType( _ ByVal name As String, _ ByVal pubid As String, _ ByVal sysid As String, _ ByVal subset As String _ ) | |
| Visual Basic (Usage) | |
|---|---|
Dim instance As XmlFastInfosetWriter Dim name As String Dim pubid As String Dim sysid As String Dim subset As String instance.WriteDocType(name, pubid, sysid, subset) | |
| Delphi | |
|---|---|
public procedure WriteDocType( name: String; pubid: String; sysid: String; subset: String ); override; | |
| JScript | |
|---|---|
public override function WriteDocType( name : String, pubid : String, sysid : String, subset : String ); | |
| Managed Extensions for C++ | |
|---|---|
public: void WriteDocType( string* name, string* pubid, string* sysid, string* subset ) override | |
| C++/CLI | |
|---|---|
public: void WriteDocType( String^ name, String^ pubid, String^ sysid, String^ subset ) override | |
Parameters
- name
- The name of the DOCTYPE. This must be non-empty.
- pubid
- If non-null it also writes PUBLIC "pubid" "sysid" where pubid and sysid are replaced with the value of the given arguments.
- sysid
- If pubid is a null reference (Nothing in Visual Basic) and sysid is non-null it writes SYSTEM "sysid" where sysid is replaced with the value of this argument.
- subset
If non-null it writes [subset] where subset is replaced with the value of this argument.
Writing DOCTYPE is presently not supported by XmlFastInfosetWriter.