63 lines
No EOL
1.9 KiB
C#
63 lines
No EOL
1.9 KiB
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using System;
|
|
|
|
namespace WingsEmu.Packets
|
|
{
|
|
public class PacketIndexAttribute : Attribute
|
|
{
|
|
#region Instantiation
|
|
|
|
/// <summary> Specify the Index of the packet to parse this property to. </summary>
|
|
/// <param
|
|
/// name="index">
|
|
/// The zero based index starting from header (exclusive).
|
|
/// </param>
|
|
/// <param
|
|
/// name="isReturnPacket">
|
|
/// Adds an # to the Header and replaces Spaces with ^ if set to
|
|
/// true.
|
|
/// </param>
|
|
/// <param name="serializeToEnd">
|
|
/// Defines if everything from this index should
|
|
/// be serialized into the underlying property
|
|
/// </param>
|
|
/// <param name="removeSeparator">
|
|
/// Removes
|
|
/// the separator (.) for List<PacketDefinition> packets.
|
|
/// </param>
|
|
public PacketIndexAttribute(int index, bool isReturnPacket = false, bool serializeToEnd = false, bool removeSeparator = false)
|
|
{
|
|
Index = index;
|
|
IsReturnPacket = isReturnPacket;
|
|
SerializeToEnd = serializeToEnd;
|
|
RemoveSeparator = removeSeparator;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
/// <summary>
|
|
/// The zero based index starting from the header (exclusive).
|
|
/// </summary>
|
|
public int Index { get; set; }
|
|
|
|
/// <summary>
|
|
/// Adds an # to the Header and replaces Spaces with ^
|
|
/// </summary>
|
|
public bool IsReturnPacket { get; set; }
|
|
|
|
/// <summary> Removes the separator (.) for List<PacketDefinition> packets. </summary>
|
|
public bool RemoveSeparator { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines if everything from this index should be serialized into the underlying property.
|
|
/// </summary>
|
|
public bool SerializeToEnd { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |