NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IContextAttribute.IsContextOK

Returns a Boolean indicating whether the context parameter meets the context attribute's requirements.

[Visual Basic]
Function IsContextOK( _
   ByVal ctx As Context, _
   ByVal msg As IConstructionCallMessage _
) As Boolean
[C#]
bool IsContextOK(
   Context ctx,
   IConstructionCallMessage msg
);
[C++]
bool IsContextOK(
   Context* ctx,
   IConstructionCallMessage* msg
) = 0;
[JScript]
function IsContextOK(
   ctx : Context,
   msg : IConstructionCallMessage
) : Boolean;

Parameters

ctx
The context in which to check.
msg
[To be supplied.]

Return Value

true if the passed in context is OK; otherwise, false.

Remarks

The OUT cookie object can be used to return some specific information which is later passed to the GetPropertiesForNewContext method. It can be null.

See Also

IContextAttribute Interface | IContextAttribute Members | System.Runtime.Remoting Namespace