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!

AssemblyName.Title

This read/write property returns and sets the "friendly name" of the assembly. It is expected that Name is a short name, that is a valid language identifier, and Title then provides a friendly name, that could include spaces, etc. For example, Name = "comdlg", Title = "Microsoft Common Dialog Control". It is not expected that the title would include the version.

[Visual Basic]
Overridable Public Property Title As String
[C#]
public string Title {virtual get; virtual set;}
[C++]
public: __property virtual String* get_Title();
public: __property virtual void set_Title(String*);
[JScript]
public function get Title() : String;
public function set Title(String);

Property Value

This read/write property returns and sets the "friendly name" of the assembly.

See Also

AssemblyName Class | AssemblyName Members | System.Reflection Namespace