Storage Class
Provides a set of methods to insert, query, and delete data in the persistent storage.
Namespace:Neo.SmartContract.Framework.Services
Assembly: Neo.SmartContract.Framework
#
Syntaxpublic static class Storage
#
PropertiesName | Description |
---|---|
CurrentContext | Returns the current storage context |
CurrentReadOnlyContext | Returns the read-only context of the current contract storage |
#
MethodsName | Description |
---|---|
Delete | Deletes the value corresponding to the key from the given storage context. This method has multiple overloads. |
Get | Gets the byte[] value corresponding to the given key from the given storage context. This method has multiple overloads. |
Put | Puts the key-value pair into the given storage context. This method has multiple overloads. |
Find | Finds the content in the given storage context. This method has multiple overloads. |
#
ConstructorThe Storage class is a static class and does not require a constructor.