コード例 #1
0
ファイル: LogConfig.cs プロジェクト: Orvid/NAntUniversalTasks
 /// <summary>
 /// Return a human readable representation of the object.
 /// </summary>
 /// <returns>A human readable representation of the object.</returns>
 public override String ToString()
 {
     ICSharpCode.SharpCvsLib.Util.ToStringFormatter formatter =
         new ICSharpCode.SharpCvsLib.Util.ToStringFormatter("LogConfig");
     formatter.AddProperty("DebugLog", this.DebugLog);
     return(formatter.ToString());
 }
コード例 #2
0
ファイル: Folder.cs プロジェクト: khongten001/makestudio
 /// <summary>
 /// Render the object as a human readable string.
 /// </summary>
 /// <returns></returns>
 public override String ToString()
 {
     ICSharpCode.SharpCvsLib.Util.ToStringFormatter formatter = new
                                                                ICSharpCode.SharpCvsLib.Util.ToStringFormatter("Folder");
     formatter.AddProperty("Repository", this.Repository);
     formatter.AddProperty("Root", this.Root);
     formatter.AddProperty("Tag", this.Tag);
     formatter.AddProperty("Entries", this.Entries);
     return(formatter.ToString());
 }
コード例 #3
0
 /// <summary>
 /// Return a human readable representation of the object.
 /// </summary>
 /// <returns>A human readable representation of the object.</returns>
 public override String ToString()
 {
     ICSharpCode.SharpCvsLib.Util.ToStringFormatter formatter =
         new ICSharpCode.SharpCvsLib.Util.ToStringFormatter("Debug");
     formatter.AddProperty("Enabled", this.Enabled);
     formatter.AddProperty("RequestFile", this.RequestFile);
     formatter.AddProperty("ResponseFile", this.ResponseFile);
     formatter.AddProperty("LogStackTrace", this.LogStackTrace);
     return(formatter.ToString());
 }
コード例 #4
0
ファイル: Folders.cs プロジェクト: khongten001/makestudio
 /// <summary>
 /// Return a human readable string that represents the folders contained
 ///     in this dictionary object.
 /// </summary>
 /// <returns>A human readable string that represents this collection
 ///     of folders.</returns>
 public override String ToString()
 {
     ICSharpCode.SharpCvsLib.Util.ToStringFormatter formatter = new
                                                                ICSharpCode.SharpCvsLib.Util.ToStringFormatter("Entries");
     foreach (DictionaryEntry entry in Dictionary)
     {
         formatter.AddProperty("Folder key", entry.Key);
         formatter.AddProperty("Folder value", entry.Value);
     }
     return(formatter.ToString());
 }
コード例 #5
0
        /// <summary>
        /// Return a human readable representation of the object.
        /// </summary>
        /// <returns>A human readable representation of the object.</returns>
        public override String ToString()
        {
            ICSharpCode.SharpCvsLib.Util.ToStringFormatter formatter =
                new ICSharpCode.SharpCvsLib.Util.ToStringFormatter("SharpCvsLibConfig");
            formatter.AddProperty("AuthSleep", this.AuthSleep);
            formatter.AddProperty("Log", this.Log);
            formatter.AddProperty("Timeout", this.Timeout);
            formatter.AddProperty("Verbose", this.Verbose);

            return(formatter.ToString());
        }
コード例 #6
0
ファイル: Folder.cs プロジェクト: Orvid/NAntUniversalTasks
 /// <summary>
 /// Render the object as a human readable string.
 /// </summary>
 /// <returns></returns>
 public override String ToString() {
     ICSharpCode.SharpCvsLib.Util.ToStringFormatter formatter = new
         ICSharpCode.SharpCvsLib.Util.ToStringFormatter("Folder");
     formatter.AddProperty("Repository", this.Repository);
     formatter.AddProperty("Root", this.Root);
     formatter.AddProperty("Tag", this.Tag);
     formatter.AddProperty("Entries", this.Entries);
     return formatter.ToString();
 }
コード例 #7
0
ファイル: LogConfig.cs プロジェクト: Orvid/NAntUniversalTasks
 /// <summary>
 /// Return a human readable representation of the object.
 /// </summary>
 /// <returns>A human readable representation of the object.</returns>
 public override String ToString () {
     ICSharpCode.SharpCvsLib.Util.ToStringFormatter formatter = 
         new ICSharpCode.SharpCvsLib.Util.ToStringFormatter("LogConfig");
     formatter.AddProperty("DebugLog", this.DebugLog);
     return formatter.ToString ();
 }
コード例 #8
0
ファイル: Folders.cs プロジェクト: Orvid/NAntUniversalTasks
 /// <summary>
 /// Return a human readable string that represents the folders contained
 ///     in this dictionary object.
 /// </summary>
 /// <returns>A human readable string that represents this collection
 ///     of folders.</returns>
 public override String ToString () {
     ICSharpCode.SharpCvsLib.Util.ToStringFormatter formatter = new
         ICSharpCode.SharpCvsLib.Util.ToStringFormatter("Entries");
     foreach (DictionaryEntry entry in Dictionary) {
         formatter.AddProperty("Folder key", entry.Key);
         formatter.AddProperty("Folder value", entry.Value);
     }
     return formatter.ToString();
 }
コード例 #9
0
ファイル: Debug.cs プロジェクト: Orvid/NAntUniversalTasks
 /// <summary>
 /// Return a human readable representation of the object.
 /// </summary>
 /// <returns>A human readable representation of the object.</returns>
 public override String ToString () {
     ICSharpCode.SharpCvsLib.Util.ToStringFormatter formatter =
         new ICSharpCode.SharpCvsLib.Util.ToStringFormatter("Debug");
     formatter.AddProperty("Enabled", this.Enabled);
     formatter.AddProperty("RequestFile", this.RequestFile);
     formatter.AddProperty("ResponseFile", this.ResponseFile);
     formatter.AddProperty("LogStackTrace", this.LogStackTrace);
     return formatter.ToString();
 }
コード例 #10
0
        /// <summary>
        /// Return a human readable representation of the object.
        /// </summary>
        /// <returns>A human readable representation of the object.</returns>
        public override String ToString () {
            ICSharpCode.SharpCvsLib.Util.ToStringFormatter formatter = 
                new ICSharpCode.SharpCvsLib.Util.ToStringFormatter ("SharpCvsLibConfig");
            formatter.AddProperty("AuthSleep", this.AuthSleep);
            formatter.AddProperty("Log", this.Log);
            formatter.AddProperty("Timeout", this.Timeout);
            formatter.AddProperty("Verbose", this.Verbose);

            return formatter.ToString();
        }