IPropertyProxyEESide::CreateReplacementObjectIPropertyProxyEESide::CreateReplacementObject
Crée une copie d’un objet de données spécifiques à l’évaluateur d’expression (EE).Creates a copy of a data object specific to the expression evaluator (EE).
SyntaxeSyntax
HRESULT CreateReplacementObject(
IEEDataStorage* dataIn,
IEEDataStorage** dataOut
);
int CreateReplacementObject(
IEEDataStorage dataIn,
out IEEDataStorage dataOut
);
ParamètresParameters
dataIn
[in] Un IEEDataStorage objet contenant les données à copier.[in] An IEEDataStorage object holding the data to be copied.
dataOut
[out] Retourne un nouveau IEEDataStorage
objet.[out] Returns a new IEEDataStorage
object.
Valeur de retourReturn Value
En cas de réussite, retourne S_OK
; sinon, retourne un code d’erreur.If successful, returns S_OK
; otherwise, returns an error code.
NotesRemarks
Cette méthode reçoit un IEEDataStorage objet qui représente un tableau d’octets.This method is given an IEEDataStorage object representing an array of bytes. Cet objet de données entrantes n’est pas généralement implémenté par le Java EE.This incoming data object is typically not implemented by the EE. Toutefois, l’objet retourné par cette méthode est toujours implémenté par EE, ce qui vous permet du mettre en œuvre EE la IEEDataStorage
interface sur toute classe est souhaitée.However, the object returned by this method is always implemented by the EE, which lets the EE implement the IEEDataStorage
interface on whatever class is desired.
Notez que les données fournies en entrant IEEDataStorage
objet doit être les mêmes données dans la sortie IEEDataStorage
objet.Note that the data supplied by the incoming IEEDataStorage
object must be the same data in the outgoing IEEDataStorage
object.
Voir aussiSee Also
IPropertyProxyEESide IPropertyProxyEESide
IEEDataStorageIEEDataStorage