DocumentCreateProcessingInstruction Method |
Creates a ProcessingInstruction node given the specified name and data strings.
Namespace: Aspose.Html.DomAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 22.5
Syntaxpublic ProcessingInstruction CreateProcessingInstruction(
string target,
string data
)
Public Function CreateProcessingInstruction (
target As String,
data As String
) As ProcessingInstruction
public:
ProcessingInstruction^ CreateProcessingInstruction(
String^ target,
String^ data
)
member CreateProcessingInstruction :
target : string *
data : string -> ProcessingInstruction
Parameters
- target
- Type: SystemString
The target. - data
- Type: SystemString
The instruction data.
Return Value
Type:
ProcessingInstructionThe
ProcessingInstruction.
See Also