Amf3
Amf3Type.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Harmonic.Networking.Amf.Serialization.Amf3
{
public enum Amf3Type : byte
{
Undefined,
Null,
False,
True,
Integer,
Double,
String,
XmlDocameent,
Date,
Array,
Object,
Xml,
ByteArray,
VectorInt,
VectorUInt,
VectorDouble,
VectorObject,
Dictionary
}
}