104 lines
5.5 KiB
C#
104 lines
5.5 KiB
C#
/*
|
|
* Copyright (c) Contributors, http://www.openmetaverse.org/
|
|
* See CONTRIBUTORS.TXT for a full list of copyright holders.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* * Neither the name of the OpenSim Project nor the
|
|
* names of its contributors may be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
namespace Nwc.XmlRpc
|
|
{
|
|
using System;
|
|
|
|
/// <summary>Class collecting <c>String</c> tokens that are part of XML-RPC files.</summary>
|
|
public class XmlRpcXmlTokens
|
|
{
|
|
/// <summary>C# formatting string to describe an ISO 8601 date.</summary>
|
|
public const String ISO_DATETIME = "yyyyMMdd\\THH\\:mm\\:ss";
|
|
/// <summary>Base64 field indicator.</summary>
|
|
/// <remarks>Corresponds to the <base64> tag.</remarks>
|
|
public const String BASE64 = "base64";
|
|
/// <summary>String field indicator.</summary>
|
|
/// <remarks>Corresponds to the <string> tag.</remarks>
|
|
public const String STRING = "string";
|
|
/// <summary>Integer field integer.</summary>
|
|
/// <remarks>Corresponds to the <i4> tag.</remarks>
|
|
public const String INT = "i4";
|
|
/// <summary>Alternate integer field indicator.</summary>
|
|
/// <remarks>Corresponds to the <int> tag.</remarks>
|
|
public const String ALT_INT = "int";
|
|
/// <summary>Date field indicator.</summary>
|
|
/// <remarks>Corresponds to the <dateTime.iso8601> tag.</remarks>
|
|
public const String DATETIME = "dateTime.iso8601";
|
|
/// <summary>Boolean field indicator.</summary>
|
|
/// <remarks>Corresponds to the <boolean> tag.</remarks>
|
|
public const String BOOLEAN = "boolean";
|
|
/// <summary>Value token.</summary>
|
|
/// <remarks>Corresponds to the <value> tag.</remarks>
|
|
public const String VALUE = "value";
|
|
/// <summary>Name token.</summary>
|
|
/// <remarks>Corresponds to the <name> tag.</remarks>
|
|
public const String NAME = "name";
|
|
/// <summary>Array field indicator..</summary>
|
|
/// <remarks>Corresponds to the <array> tag.</remarks>
|
|
public const String ARRAY = "array";
|
|
/// <summary>Data token.</summary>
|
|
/// <remarks>Corresponds to the <data> tag.</remarks>
|
|
public const String DATA = "data";
|
|
/// <summary>Member token.</summary>
|
|
/// <remarks>Corresponds to the <member> tag.</remarks>
|
|
public const String MEMBER = "member";
|
|
/// <summary>Stuct field indicator.</summary>
|
|
/// <remarks>Corresponds to the <struct> tag.</remarks>
|
|
public const String STRUCT = "struct";
|
|
/// <summary>Double field indicator.</summary>
|
|
/// <remarks>Corresponds to the <double> tag.</remarks>
|
|
public const String DOUBLE = "double";
|
|
/// <summary>Param token.</summary>
|
|
/// <remarks>Corresponds to the <param> tag.</remarks>
|
|
public const String PARAM = "param";
|
|
/// <summary>Params token.</summary>
|
|
/// <remarks>Corresponds to the <params> tag.</remarks>
|
|
public const String PARAMS = "params";
|
|
/// <summary>MethodCall token.</summary>
|
|
/// <remarks>Corresponds to the <methodCall> tag.</remarks>
|
|
public const String METHOD_CALL = "methodCall";
|
|
/// <summary>MethodName token.</summary>
|
|
/// <remarks>Corresponds to the <methodName> tag.</remarks>
|
|
public const String METHOD_NAME = "methodName";
|
|
/// <summary>MethodResponse token</summary>
|
|
/// <remarks>Corresponds to the <methodResponse> tag.</remarks>
|
|
public const String METHOD_RESPONSE = "methodResponse";
|
|
/// <summary>Fault response token.</summary>
|
|
/// <remarks>Corresponds to the <fault> tag.</remarks>
|
|
public const String FAULT = "fault";
|
|
/// <summary>FaultCode token.</summary>
|
|
/// <remarks>Corresponds to the <faultCode> tag.</remarks>
|
|
public const String FAULT_CODE = "faultCode";
|
|
/// <summary>FaultString token.</summary>
|
|
/// <remarks>Corresponds to the <faultString> tag.</remarks>
|
|
public const String FAULT_STRING = "faultString";
|
|
}
|
|
}
|
|
|
|
|