MemcacheGetT Method (String) |
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 T Get<T>(
string key
)
Public Function Get(Of T) (
key As String
) As T
public:
generic<typename T>
virtual T Get(
String^ key
) sealed
abstract Get :
key : string -> 'T
override Get :
key : string -> 'T
Parameters
- key
- Type: SystemString
key where data is stored
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:Adf.Memcache.Get``1(System.String)"]
Return Value
Type:
Tthe object that was previously stored, or null if it was not previously stored
Implements
ICacheGetT(String)See Also