Skip to content

uwidgets.core.models.assemblyinfo

GitHub Action edited this page Oct 3, 2024 · 6 revisions

AssemblyInfo

Namespace: uWidgets.Core.Models

Represents the information of an assembly.

public class AssemblyInfo : System.IEquatable`1[[uWidgets.Core.Models.AssemblyInfo, uWidgets.Core, Version=0.5.0.0, Culture=neutral, PublicKeyToken=null]]

Inheritance ObjectAssemblyInfo
Implements IEquatable<AssemblyInfo>
Attributes NullableContextAttribute, NullableAttribute

Properties

EqualityContract

protected Type EqualityContract { get; }

Property Value

Type

FilePath

The path to the file that contains the assembly.

public string FilePath { get; set; }

Property Value

String

AssemblyName

public string AssemblyName { get; set; }

Property Value

String

DisplayName

Display name of the assembly.

public string DisplayName { get; set; }

Property Value

String

Author

Author of the assembly.

public string Author { get; set; }

Property Value

String

Version

Version of the assembly.

public Version Version { get; set; }

Property Value

Version

IconData

Icon data of the assembly.

public string IconData { get; set; }

Property Value

String

Constructors

AssemblyInfo(String, String, String, String, Version, String)

Represents the information of an assembly.

public AssemblyInfo(string FilePath, string AssemblyName, string DisplayName, string Author, Version Version, string IconData)

Parameters

FilePath String
The path to the file that contains the assembly.

AssemblyName String

DisplayName String
Display name of the assembly.

Author String
Author of the assembly.

Version Version
Version of the assembly.

IconData String
Icon data of the assembly.

AssemblyInfo(AssemblyInfo)

protected AssemblyInfo(AssemblyInfo original)

Parameters

original AssemblyInfo

Methods

ToString()

public string ToString()

Returns

String

PrintMembers(StringBuilder)

protected bool PrintMembers(StringBuilder builder)

Parameters

builder StringBuilder

Returns

Boolean

GetHashCode()

public int GetHashCode()

Returns

Int32

Equals(Object)

public bool Equals(object obj)

Parameters

obj Object

Returns

Boolean

Equals(AssemblyInfo)

public bool Equals(AssemblyInfo other)

Parameters

other AssemblyInfo

Returns

Boolean

<Clone>$()

public AssemblyInfo <Clone>$()

Returns

AssemblyInfo

Deconstruct(String&, String&, String&, String&, Version&, String&)

public void Deconstruct(String& FilePath, String& AssemblyName, String& DisplayName, String& Author, Version& Version, String& IconData)

Parameters

FilePath String&

AssemblyName String&

DisplayName String&

Author String&

Version Version&

IconData String&

Clone this wiki locally