XmlConvert.VerifyPublicId(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the passed in string instance if all the characters in the string argument are valid public id characters.
public:
static System::String ^ VerifyPublicId(System::String ^ publicId);
public static string VerifyPublicId (string publicId);
static member VerifyPublicId : string -> string
Public Shared Function VerifyPublicId (publicId As String) As String
Parameters
Returns
The passed-in string if all the characters in the argument are valid public id characters.
Remarks
No other values than the passed in argument should be returned. The characters valid for public id do not vary between XML editions, so no XmlVersion
overload is required.
See XML 1.0 spec (fourth edition) production [13] PubidChar
for details on the allowed characters
If the parameter is null, an ArgumentNullException
will be thrown. If any of the characters are not valid public id characters, an XmlException
is thrown with information about the first invalid character encountered.