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!

ICodeSourceFile.CreateNameReferenceExpression (String)

Constructs a name reference expression. A name reference is basically a reference to any object in this object's namespace (or an absolute reference to any object).

[Visual Basic]
Overloads Function CreateNameReferenceExpression( _
   ByVal name As String _
) As ICodeNameReferenceExpression
[C#]
ICodeNameReferenceExpression CreateNameReferenceExpression(
   string name
);
[C++]
ICodeNameReferenceExpression* CreateNameReferenceExpression(
   String* name
) = 0;
[JScript]
function CreateNameReferenceExpression(
   name : String
) : ICodeNameReferenceExpression;

Parameters

name
The name of the object to reference.

Return Value

The newly created name reference expression.

See Also

ICodeSourceFile Interface | ICodeSourceFile Members | System.ComponentModel.Design.CodeModel Namespace | ICodeSourceFile.CreateNameReferenceExpression Overload List