using System;
using System.Text;
namespace Woodpecker.Specialized
{
///
/// A System.Text.StringBuilder with specialized FUSE protocol functions.
///
public class PartialMessageBuilder
{
#region Declares
private StringBuilder Content;
#endregion
#region Constructors
///
/// Initializes a new instance of the PartialMessageBuilder class.
///
public PartialMessageBuilder()
{
this.Content = new StringBuilder();
}
#endregion
#region Properties
///
/// Returns the length of the characters in the message builder.
///
public int Length
{
get
{
return this.Content.Length;
}
}
#endregion
#region Methods
///
/// Converts the value of this instance to a System.String.
///
public override string ToString()
{
return this.Content.ToString();
}
#endregion
}
}