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!

ICodeParameter.SetName

Sets the name of this parameter. The parameter name will be used in the declaration of a property or method, or in method invokes- if the langauge supports named parameters.

[Visual Basic]
Sub SetName( _
   ByVal value As String _
)
[C#]
void SetName(
   string value
);
[C++]
void SetName(
   String* value
) = 0;
[JScript]
function SetName(
   value : String
);

Parameters

value
The new name of the parameter.

See Also

ICodeParameter Interface | ICodeParameter Members | System.ComponentModel.Design.CodeModel Namespace