Dynamicweb 8 Documentation
Parse Method (Order.DebuggingInfoCollection)
Example 

The XML.
Parses the specified string represent XML.
Syntax
'Declaration
 
Public Shared Function Parse( _ 
   ByVal stringRepresentation As String _ 
) As Order.DebuggingInfoCollection
public static Order.DebuggingInfoCollection Parse( 
   string stringRepresentation 
)

Parameters

stringRepresentation
The XML.
Example
class MyPage : System.Web.UI.Page
{
   private Order.DebuggingInfoCollection _debuggingInfos;
   private void FillDebugInfos(IDataReader DataReader)
   {
       _debuggingInfos = Order.DebuggingInfoCollection.Parse(Base.ChkString(DataReader["OrderDebuggingInfo"]));
   }
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Order.DebuggingInfoCollection Class
Order.DebuggingInfoCollection Members

Send Feedback