Dynamicweb 8 Documentation
Parse Method (OrderCaptureInfo)
Example 

The XML.
Parses the specified XML settings.
Syntax
'Declaration
 
Public Shared Function Parse( _ 
   ByVal xmlSettings As String _ 
) As OrderCaptureInfo
public static OrderCaptureInfo Parse( 
   string xmlSettings 
)

Parameters

xmlSettings
The XML.
Example
class MyPage : System.Web.UI.Page
{
   private OrderCaptureInfo _captureInfos;
   private void FillCaptureInfos(IDataReader DataReader)
   {
       _captureInfos = OrderCaptureInfo.Parse(Base.ChkString(DataReader["OrderCaptureInfo"]));
   }
}
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

OrderCaptureInfo Class
OrderCaptureInfo Members

Send Feedback