ITextStoreACPServices::Unserialize method
Syntax
HRESULT Unserialize( [in] ITfProperty *pProp, [in] const TF_PERSISTENT_PROPERTY_HEADER_ACP *pHdr, [in] IStream *pStream, [in] ITfPersistentPropertyLoaderACP *pLoader );
Parameters
- pProp [in]
-
Pointer to an ITfProperty object that receives the property data.
- pHdr [in]
-
Pointer to a TF_PERSISTENT_PROPERTY_HEADER_ACP structure that contains the header data for the property.
- pStream [in]
-
Pointer to an IStream object that contains the property data. This parameter can be NULL if pLoader is not NULL. This parameter is ignored if pLoader is not NULL.
- pLoader [in]
-
Pointer to an ITfPersistentPropertyLoaderACP object that the TSF manager will use to obtain the property data. This parameter can be NULL if pStream is not NULL.
Return value
This method can return one of these values.
| Value | Description |
|---|---|
|
The method was successful. |
|
The property data will be obtained asynchronously. |
|
A synchronous read-only lock cannot be obtained. |
|
An unspecified error occurred. |
Remarks
If pStream is specified rather than pLoader, the property data will be read from pStream during the call to Unserialize . If pLoader is specified rather than pStream, the property data will be read from pLoader asynchronously. Using pStream can cause long delays if the property data is large.
While calling this method, the application must be able to grant a synchronous read-only lock.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps | Windows Store apps] |
|
Redistributable |
TSF 1.0 on Windows 2000 Professional |
|
Header |
|
|
IDL |
|
|
DLL |
|
See also
- ITextStoreACPServices
- ITfProperty
- TF_PERSISTENT_PROPERTY_HEADER_ACP
- ITfPersistentPropertyLoaderACP
- ITextStoreACPServices::Serialize