This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
One Way Programming Tasks
Marking a method as one way
public class Foo
{
[OneWayAttribute()]
public void Method1(int i, float f, String s, Object o);
}
Call a one way method
SomeObject someObject = new SomeObject();
Foo foo = new Foo();
foo.Method(1, 2.3, “Hi”, someObject);