Share via


IEEDataStorage::GetSize

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

Returns the number of bytes contained in this object.

Syntax

HRESULT GetSize(  
   ULONG* size  
);  
int GetSize(  
   out uint size  
);  

Parameters

size
[out] The number of bytes contained in this object.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

Use the GetData method to retrieve the actual data bytes.

See Also

IEEDataStorage
GetData