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!

ParameterInfo.IsLcid

Retrieves whether this is an Lcid parameter.

Retrieves whether the culture identifier is set for the current ParameterInfo.

[Visual Basic]
Public ReadOnly Property IsLcid As Boolean
[C#]
public bool IsLcid {get;}
[C++]
public: __property bool get_IsLcid();
[JScript]
public function get IsLcid() : Boolean;

Property Value

Read-only.

Retrieves whether Lcid is set for this parameter.

true if the parameter is Lcid; otherwise, false.

Remarks

This method depends on an optional metadata flag. This flag may be inserted by compilers, but the compilers are not obligated to do so.

This method utilizes the ParameterAttributes.Lcid method.

To get the ParameterInfo array, first get the method. From the method, get the Type. From the Type, get the ParameterInfo array.

If the parameter is a culture identifier parameter, the IsLcid is True. Otherwise it is False.

See Also

ParameterInfo Class | ParameterInfo Members | System.Reflection Namespace