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!

Type.FullName

Gets the fully qualified name of the Type, including the namespace of the Type.

[Visual Basic]
MustOverride Public ReadOnly Property FullName As String
[C#]
public string FullName {abstract get;}
[C++]
public: __property virtual String* get_FullName() = 0;
[JScript]
public abstract function get FullName() : String;

Property Value

The fully qualified name of the Type, including the namespace of the Type.

Remarks

Type names may include trailing characters that denote additional information about the type, such as whether the type is a reference type, a pointer type or an array type. To retrieve the type name without these trailing characters, use t. GetElementType (). ToString (), where t is the type.

See Also

Type Class | Type Members | System Namespace | String