Hi,
 -------- calling to defered CA --------------
CustomActionData cad = new CustomActionData();
cad.Add("p1", "value1");
cad.AddObject<byte[]>("p2", somedata);
session.DoAction("SomeDefereCA", cad);
---------------------------------------------------------------

------------------ code of defered CA -----------------------
CustomActionData cad = session.CustomActionData;
cad.TryGetValue("p1", out sectionName);
somedata = cad.GetObject<byte[]>("p2");
--------------------------------------------------------------------------


Dima



On Mon, Aug 4, 2008 at 5:56 PM, Benas <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> I'm wondering how to pass params to deferred Custom Actions?
>
> My WIX Property doesn't exist anymore at the time deferred custom action is
> ran.
>
>
>
> Tx for suggestions,
> Benas
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to