#region Disclaimer/Info
///////////////////////////////////////////////////////////////////////////////////////////////////
// Subtext WebLog
//
// Subtext is an open source weblog system that is a fork of the .TEXT
// weblog system.
//
// For updated news and information please visit http://subtextproject.com/
// Subtext is hosted at Google Code at http://code.google.com/p/subtext/
// The development mailing list is at subtext@googlegroups.com
//
// This project is licensed under the BSD license. See the License.txt file for more information.
///////////////////////////////////////////////////////////////////////////////////////////////////
#endregion
#region Notes
///////////////////////////////////////////////////////////////////////////////////////////////////
// The code in this file is freely distributable.
//
// ASPNetWeblog is not responsible for, shall have no liability for
// and disclaims all warranties whatsoever, expressed or implied, related to this code,
// including without limitation any warranties related to performance, security, stability,
// or non-infringement of title of the control.
//
// If you have any questions, comments or concerns, please contact
// Scott Watermasysk, Scott@TripleASP.Net.
//
// For more information on this control, updates, and other tools to integrate blogging
// into your existing applications, please visit, http://aspnetweblog.com
//
// Based off of code by Simon Fell http://www.pocketsoap.com/weblog/
//
///////////////////////////////////////////////////////////////////////////////////////////////////
#endregion
namespace Subtext.Framework.Tracking{
/// <summary>
/// Defines the allowable Trackback response codes.
/// </summary>
public enum TrackbackResponseCode
{
/// <summary>
/// The trackback ping was succesful.
/// </summary>
Success = 0,
/// <summary>
/// The trackback ping was unsuccesful.
/// </summary>
Error = 1,
}
}
|