Aerospike.Helper.Model.Set.GetValues C# (CSharp) Method

GetValues() public method

public GetValues ( ) : List
return List
        public List<NameValuePair> GetValues()
        {
            List<NameValuePair> result = new List<NameValuePair>();
            foreach(var item in  this.values)
            {
                NameValuePair nvp = this.values[item.Key];
                result.Add(nvp);
            }
            return result;
        }