Dynamicweb 8 Documentation
ToString Method (Order.DebuggingInfoCollection)
Example 

Returns a System.String that represents this instance.
Syntax
'Declaration
 
Public Overrides Function ToString() As String
public override string ToString()

Return Value

A System.String that represents this instance.
Example
class MyPage : System.Web.UI.Page
{
   private Order.DebuggingInfoCollection _debuggingInfos;
   private string GetDebugInfos(IDataReader DataReader)
   {
      _debuggingInfos = Order.DebuggingInfoCollection.Parse(Base.ChkString(DataReader["OrderDebuggingInfo"]));
      return _debuggingInfos.ToString();
   }
}
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
Base Implementation in ToString

Send Feedback