コード例 #1
0
 public static extern Iterator <byte[], byte[]> Find(StorageContext context, byte[] prefix);
コード例 #2
0
 public static extern Iterator <string, byte[]> Find(StorageContext context, string prefix);
コード例 #3
0
 public static extern void Delete(StorageContext context, byte[] key);
コード例 #4
0
 public static extern void Delete(StorageContext context, string key);
コード例 #5
0
 public static extern void Put(StorageContext context, byte[] key, BigInteger value);
コード例 #6
0
 public static extern void Put(StorageContext context, string key, string value);
コード例 #7
0
 public static extern byte[] Get(StorageContext context, string key);
コード例 #8
0
 public static extern byte[] Get(StorageContext context, byte[] key);
コード例 #9
0
 public static StorageMap CreateMap(this StorageContext context, byte prefix)
 {
     return(CreateMap(context, prefix.ToByteArray()));
 }
コード例 #10
0
 public static StorageMap CreateMap(this StorageContext context, ByteString prefix)
 {
     return(CreateMap(context, (byte[])prefix));
 }
コード例 #11
0
ファイル: StorageContext.cs プロジェクト: simplitech/neo-lux
 public override string ToString()
 {
     return(StorageContext.ToHumanKey(data));
 }