1.3.3.1 Using STRING Typed Buffers
The Tuxedo .NET Workstation Client uses class
TypedString to define STRING typed buffer
characters. TypedString instances can be used directly
to communicate with AppContext methods such
astpcall(). See the following code snippet illustrates
Using TypedString Class (C# code example).
……
TypedString snd_str = new TypedString ("Hello World");
TypedString rcv_str = new TypedString(1000);
AppContext ctx = AppContext.tpinit(null);
……
ctx.tpcall("TOUPPER", snd_str, rcv_str, 0);
……
ctx.tpterm();
……Parent topic: Using Typed Buffers