Microsoft.Protocols.TestSuites.MS_OXCFXICS.SerializableFieldAttribute.SerializableFieldAttribute C# (CSharp) Method

SerializableFieldAttribute() public method

Initializes a new instance of the SerializableFieldAttribute class.
public SerializableFieldAttribute ( int order ) : System
order int The order of the field in the owner's /// serialization or deserialization.
return System
        public SerializableFieldAttribute(int order)
        {
            this.order = order;
            this.littleEndian = true;
            this.minAllocSize = -1;
            this.maxAllocSize = -1;
            this.circleFill = false;
        }
SerializableFieldAttribute