Class SqlAssembly
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents a assembly found in a SQL server database.
public class SqlAssembly : BaseTypeSection, IComparable<SqlAssembly>
- Inheritance
-
SqlAssembly
- Implements
Constructors
SqlAssembly()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.SqlAssembly class.
public SqlAssembly()
Properties
AssemblySecurityLevel
Gets or sets the security level of the assembly.
public SqlAssemblySecurityLevel AssemblySecurityLevel { get; set; }
Property Value
AssemblySecurityLevelString
Gets the security level of the assembly as a human readable string.
public string AssemblySecurityLevelString { get; set; }
Property Value
DateCreated
Gets or sets the date and time the assembly was created.
public DateTime DateCreated { get; set; }
Property Value
ExtendedProperties
Gets or sets the extended properties defined for the assembly.
public SqlExtendedProperties ExtendedProperties { get; set; }
Property Value
Identifier
Gets or sets the unique identifier for the assembly. This is for internal use only.
public Guid Identifier { get; set; }
Property Value
IsStrongNamed
Gets or sets whether the assembly has been digitally signed.
public BooleanOption IsStrongNamed { get; set; }
Property Value
IsSystemObject
Gets or sets whether the assembly is a system object.
public BooleanOption IsSystemObject { get; set; }
Property Value
Name
Gets or sets the name of the assembly.
public string Name { get; set; }
Property Value
Owner
Gets or sets the owner of the assembly.
public string Owner { get; set; }
Property Value
Version
Gets or sets the version of the assembly.
public SerializableVersion Version { get; set; }
Property Value
- SerializableVersion
Methods
Clone()
Returns a CENTREL.XIA.Configuration.Types.SqlAssembly cloned from this object.
public SqlAssembly Clone()
Returns
- SqlAssembly
A CENTREL.XIA.Configuration.Types.SqlAssembly.
CompareTo(SqlAssembly)
Compares two CENTREL.XIA.Configuration.Types.SqlAssembly objects to allow sorting alphabetically by name.
public int CompareTo(SqlAssembly other)
Parameters
other
SqlAssemblyThe CENTREL.XIA.Configuration.Types.SqlAssembly to compare to.
Returns
- int
The sort order of the two CENTREL.XIA.Configuration.Types.SqlAssembly objects.