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!

ValueProvider.IsLocalVariableDeclaration

Gets whether or not the specified statement is the local variable declaration for this value provider.

[Visual Basic]
Overridable Public Function IsLocalVariableDeclaration( _
   ByVal stmt As ICodeStatement _
) As Boolean
[C#]
public virtual bool IsLocalVariableDeclaration(
   ICodeStatement stmt
);
[C++]
public: virtual bool IsLocalVariableDeclaration(
   ICodeStatement* stmt
);
[JScript]
public function IsLocalVariableDeclaration(
   stmt : ICodeStatement
) : Boolean;

Parameters

stmt
The statement to check.

Return Value

true if the specified statement is the local variable declaration for this value provider, otherwise false.

See Also

ValueProvider Class | ValueProvider Members | System.ComponentModel.Design Namespace