Search Results for

    Show / Hide Table of Contents

    Class Issuer

    Represents a trusted security token issuer.

    Inheritance
    object
    DomainObjectBase
    Issuer
    Implements
    IValidator
    IExtensibleDataObject
    IEquatable<Issuer>
    Inherited Members
    DomainObjectBase.Id
    DomainObjectBase.Key
    DomainObjectBase.Created
    DomainObjectBase.Updated
    DomainObjectBase.ErrorMessage
    DomainObjectBase.ExtensionData
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetType()
    Namespace: Nevatech.Vsb.Repository.Entities
    Assembly: Nevatech.Vsb.Repository.dll
    Syntax
    [DataContract(Namespace = "http://schemas.nevatech.com/sentinet/2011/02")]
    public sealed class Issuer : DomainObjectBase, IValidator, IExtensibleDataObject, IEquatable<Issuer>

    Constructors

    Issuer()

    Declaration
    public Issuer()

    Properties

    Certificate

    Gets or sets the issuer signing X.509 certificate.

    Declaration
    [DataMember(EmitDefaultValue = false)]
    [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
    public byte[] Certificate { get; set; }
    Property Value
    Type Description
    byte[]

    CertificateInfo

    Gets X.509 certificate info for the stored certificate.

    Declaration
    public CertificateInfo CertificateInfo { get; }
    Property Value
    Type Description
    CertificateInfo

    FriendlyName

    Gets or sets the friendly display name of the issuer.

    Declaration
    [DataMember(EmitDefaultValue = false)]
    public string FriendlyName { get; set; }
    Property Value
    Type Description
    string

    IsLocal

    Gets flag indicating that issuer is locally assigned to the node. If false then issuer is globally assigned to all nodes in repository.

    Declaration
    public bool IsLocal { get; }
    Property Value
    Type Description
    bool

    IsMajorObject

    Gets the flag indicating that current object is a major entity.

    Declaration
    public override bool IsMajorObject { get; }
    Property Value
    Type Description
    bool
    Overrides
    DomainObjectBase.IsMajorObject

    IssuerName

    Gets or sets the issuer name as it is going to be presented in authenticated claims.

    Declaration
    [DataMember(EmitDefaultValue = false)]
    public string IssuerName { get; set; }
    Property Value
    Type Description
    string

    NodeId

    Gets or sets the identifier of the node where issuer is trusted. If not set then issuer is trusted on all nodes connected to repository.

    Declaration
    [DataMember(EmitDefaultValue = false)]
    public int? NodeId { get; set; }
    Property Value
    Type Description
    int?

    ObjectType

    Gets object type identifier.

    Declaration
    public override EntityType ObjectType { get; }
    Property Value
    Type Description
    EntityType
    Overrides
    DomainObjectBase.ObjectType

    Thumbprint

    Gets or sets the issuer signing X.509 certificate thumbprint.

    Declaration
    [DataMember(EmitDefaultValue = false)]
    public string Thumbprint { get; set; }
    Property Value
    Type Description
    string

    Methods

    Compress()

    Clears unnecessary to runtime data to reduce message payload.

    Declaration
    public void Compress()

    Equals(Issuer)

    Determines whether the specified issuer is equal to the current issuer.

    Declaration
    public bool Equals(Issuer other)
    Parameters
    Type Name Description
    Issuer other

    The issuer to compare with the current issuer.

    Returns
    Type Description
    bool

    True, if issuers are equal. False, if issuers are not equal.

    Equals(object)

    Determines whether the specified object is equal to the current object.

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    object obj

    The object to compare with the current object.

    Returns
    Type Description
    bool

    True, if objects are equal. False, if objects are not equal.

    Overrides
    DomainObjectBase.Equals(object)

    GetHashCode()

    Returns the hash code for this instance.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int

    Hash code of the current instance.

    Overrides
    DomainObjectBase.GetHashCode()

    ToString()

    Returns a string that represents the current object.

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    A string that represents the current object.

    Overrides
    DomainObjectBase.ToString()

    Validate()

    Evaluates the state of this object.

    Declaration
    public override bool Validate()
    Returns
    Type Description
    bool

    True if state is valid; otherwise, false.

    Overrides
    DomainObjectBase.Validate()

    Implements

    IValidator
    IExtensibleDataObject
    IEquatable<T>
    In This Article
    Back to top Nevatech Sentinet 6.7 Online Documentation