PDIParserParseString Method
This method is used to parse one or more PDI objects from a string
Namespace: EWSoftware.PDI.ParserAssembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public void ParseString(
string pdiText
)
Public Sub ParseString (
pdiText As String
)
public:
void ParseString(
String^ pdiText
)
member ParseString :
pdiText : string -> unit
Parameters
- pdiText String
- The PDI information to parse
The derived class will build a list of objects based on the data stream. See the derived
classes for more information. The method will parse all data from the start of the string to the end
of the string.
VCardParser vcp = new VCardParser();
vcp.ParseString(vCardsText);
VCardCollection vCards = vcp.VCards;
Dim vcp As New VCardParser
vcp.ParseString(vCardsText)
Dim vCards As VCardCollection = vcp.VCards
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
PDIParserException | This is thrown if there is an error parsing the data stream.
Inner exceptions may contain additional information about the cause of the error. |