Server.Packets.DataPacket.this C# (CSharp) Méthode

this() public méthode

public this ( Server.Packets.PacketField field ) : object
field Server.Packets.PacketField
Résultat object
        public object this[PacketField field]
        {
            set {
                if(this.container.ContainsKey(field)) {
                    this.container[field].Value = value;
                }
            }
            get {
                if(this.container.ContainsKey(field)) {
                    return this.container[field];
                } else {
                    return null;
                }
            }
        }

Same methods

DataPacket::this ( string fieldName ) : object