SortedTreeFileGetMetadataTKey, TValue Method
Gets the metadata from the archive file associated with the specified key and value types.
Namespace: SnapDB.Snap.StorageAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public byte[]? GetMetadata<TKey, TValue>()
where TKey : new(), SnapTypeBase<TKey>
where TValue : new(), SnapTypeBase<TValue>
Public Function GetMetadata(Of TKey As {New, SnapTypeBase(Of TKey)}, TValue As {New, SnapTypeBase(Of TValue)}) As Byte()
public:
generic<typename TKey, typename TValue>
where TKey : gcnew(), SnapTypeBase<TKey>
where TValue : gcnew(), SnapTypeBase<TValue>
array<unsigned char>^ GetMetadata()
JavaScript does not support generic types or methods.
- TKey
- The type parameter specifying the data type for keys.
- TValue
- The type parameter specifying the data type for values.
ByteMetadata extracted from archive file; otherwise,
null if no metadata exists.