|
Home > Archive > BizTalk Server Orchestration > March 2005 > How to create object in expression shpe of Orchestration
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How to create object in expression shpe of Orchestration
|
|
|
| Hi,
I know it is very stupid, but I am trying to create object in expression
shape.
Sth like: System.IO.FileInfo fi= new System.IO.FileInfo(@"c:\test\c.txt");
Biztalk don't recognize that , how to do it?
Thanks a lot,
Jason
| |
| Michel Prévost 2005-03-23, 6:01 pm |
| You need to create an orchestration variable of type FileInfo, and
initialize it from the an Expression shape:
myFileInfoVar = new System.IO.FileInfo(@"c:\test\c.txt");
"NEWS" <jasonh@sympatico.ca> wrote in message
news:u8ZP8Z9LFHA.3844@TK2MSFTNGP14.phx.gbl...
> Hi,
>
> I know it is very stupid, but I am trying to create object in expression
> shape.
>
> Sth like: System.IO.FileInfo fi= new System.IO.FileInfo(@"c:\test\c.txt");
>
> Biztalk don't recognize that , how to do it?
>
> Thanks a lot,
>
> Jason
>
>
>
|
|
|
|
|