示例#1
0
            public Builder SetProperties(int index, KeyLongValue value)
            {
                if (value == null)
                {
                    throw new NullReferenceException();
                }
                _ack.Properties[index] = value;

                return(this);
            }
示例#2
0
            public Builder AddProperties(int index, KeyLongValue value)
            {
                if (value == null)
                {
                    throw new NullReferenceException();
                }
                _ack.Properties.Insert(index, value);

                return(this);
            }
示例#3
0
 public Builder()
 {
     _long = new KeyLongValue();
 }