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!

ICodeClass.FullName

The namespace and name of the class.

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

Property Value

A string containing the namespace and name of the class.

Example

This value can be used by NGWS runtime reflection to obtain a Class reference:

public Class GetClassFromCodeClass(ICodeClass cls) {
    return Class.GetClass(cls.GetFullName());
    }

See Also

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