MemcacheGet Method (String, Type) |
Retrieve a key from the server, using a specific hash.
If the data was compressed or serialized when compressed, it will automatically
be decompressed or serialized, as appropriate. (Inclusive or)
Non-serialized data will be returned as a string, so explicit conversion to
numeric types will be necessary, if desired
Namespace: AdfAssembly: Adf (in Adf.dll) Version: 4.1.5549.27750
Syntax public Object Get(
string key,
Type type
)
Public Function Get (
key As String,
type As Type
) As Object
public:
Object^ Get(
String^ key,
Type^ type
)
member Get :
key : string *
type : Type -> Object
Parameters
- key
- Type: SystemString
key where data is stored - type
- Type: SystemType
[Missing <param name="type"/> documentation for "M:Adf.Memcache.Get(System.String,System.Type)"]
Return Value
Type:
Objectthe object that was previously stored, or null if it was not previously stored
See Also