Class EntraApplicationIcon
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents an Entra directory application icon.
public class EntraApplicationIcon : GlobalSerializableBase, IComparable<EntraApplicationIcon>
- Inheritance
-
EntraApplicationIcon
- Implements
Constructors
EntraApplicationIcon()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.EntraApplicationIcon class.
public EntraApplicationIcon()
Properties
ApplicationIdentifier
Gets or sets the application identifier in GUID format.
public Guid ApplicationIdentifier { get; set; }
Property Value
DisplayName
Gets or sets the display name of the application.
public string DisplayName { get; set; }
Property Value
Identifier
Gets or sets the object identifier of the application.
public Guid Identifier { get; set; }
Property Value
Image
Gets or sets the image assigned to the application.
public Bitmap Image { get; set; }
Property Value
ImageData
Gets or sets the binary data of the image assigned to the application.
[Browsable(false)]
public byte[] ImageData { get; set; }
Property Value
- byte[]
Methods
CompareTo(EntraApplicationIcon)
Compares two CENTREL.XIA.Configuration.Types.EntraApplicationIcon objects to allow sorting alphabetically by application display name.
public int CompareTo(EntraApplicationIcon other)
Parameters
otherEntraApplicationIconThe CENTREL.XIA.Configuration.Types.EntraApplicationIcon to compare to.
Returns
- int
The sort order of the two CENTREL.XIA.Configuration.Types.EntraApplicationIcon objects.
GetSmallImage()
Gets the small 16x16 image.
public Bitmap GetSmallImage()
Returns
- Bitmap
A System.Drawing.Bitmap that contains the 16x16 image.
ToString()
Returns the display name of the application.
public override string ToString()
Returns
- string
The display name of the application.