ApplicationFriendlyNameAttribute Class

Sets the friendly name of the application to be used in the output of the "-Version" argument or "version" subcommand.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public class ApplicationFriendlyNameAttribute : Attribute
Inheritance
Object    Attribute    ApplicationFriendlyNameAttribute

Remarks

This attribute is used when a "-Version" argument is automatically added to the arguments of your application, and by the automatically added "version" subcommand. It can be applied to the type defining command line arguments, or to the assembly that contains it.

If not present, the automatic "-Version" argument and "version" command will use the value of the AssemblyTitleAttribute attribute, or the assembly name of the assembly containing the arguments type.

For the "version" subcommand, this attribute must be applied to the entry point assembly of your application.

Constructors

ApplicationFriendlyNameAttribute Initializes a new instance of the ApplicationFriendlyNameAttribute attribute.

Properties

Name Gets the friendly name of the application.
TypeIdWhen implemented in a derived class, gets a unique identifier for this Attribute.
(Inherited from Attribute)

Methods

EqualsReturns a value that indicates whether this instance is equal to a specified object.
(Inherited from Attribute)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeReturns the hash code for this instance.
(Inherited from Attribute)
GetTypeGets the Type of the current instance.
(Inherited from Object)
IsDefaultAttributeWhen overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
(Inherited from Attribute)
MatchWhen overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
(Inherited from Attribute)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.

See Also