Search Results for

    Show / Hide Table of Contents

    Class VirtualizationSettings

    Represents virtualization profile settings.

    Inheritance
    object
    VirtualizationSettings
    Implements
    IEquatable<VirtualizationSettings>
    IValidator
    Inherited Members
    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 VirtualizationSettings : IEquatable<VirtualizationSettings>, IValidator

    Constructors

    VirtualizationSettings()

    Declaration
    public VirtualizationSettings()

    Properties

    Activate

    Gets or sets the flag that indicates whether the new virtual service should be activated if possible.

    Declaration
    [DataMember]
    public bool Activate { get; set; }
    Property Value
    Type Description
    bool

    Addresses

    Gets collection of the default endpoints.

    Declaration
    [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Justification = "Required for de-serialization.")]
    [DataMember]
    public Collection<DefaultNodeAddress> Addresses { get; }
    Property Value
    Type Description
    Collection<DefaultNodeAddress>

    BehaviorId

    Gets or sets the service behavior identifier the new virtual service will use.

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

    BehaviorName

    Gets or sets the service behavior name the new virtual service will use.

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

    ErrorMessage

    When implemented, gets the message indicating the errors found during validation process.

    Declaration
    public string ErrorMessage { get; }
    Property Value
    Type Description
    string
    Remarks

    This property should be checked only if Validate() method returns False. If Validate() method returns True, this property should return Null.

    ExtensionData

    Declaration
    public ExtensionDataObject ExtensionData { get; set; }
    Property Value
    Type Description
    ExtensionDataObject

    MessageProcessing

    Gets or sets the message processing pipeline configuration.

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

    MonitoringProfile

    Gets or sets the monitoring profile. The default value is None.

    Declaration
    [DataMember]
    public MonitoringProfile MonitoringProfile { get; set; }
    Property Value
    Type Description
    MonitoringProfile

    Rules

    Gets collection of the default authorization rules.

    Declaration
    [DataMember]
    [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Justification = "Required for de-serialization.")]
    public Collection<DefaultAuthorizationRule> Rules { get; }
    Property Value
    Type Description
    Collection<DefaultAuthorizationRule>

    ServiceNamePrefix

    Gets or sets the service name prefix that will be used to create a new or lookup an existing virtual service.

    Declaration
    [DataMember]
    public string ServiceNamePrefix { get; set; }
    Property Value
    Type Description
    string

    ServiceNameSuffix

    Gets or sets the service name suffix that will be used to create a new or lookup an existing virtual service.

    Declaration
    [DataMember]
    public string ServiceNameSuffix { get; set; }
    Property Value
    Type Description
    string

    ServiceVersionSettings

    Gets service version advanced configuration settings. This property applies only to virtual services.

    Declaration
    [DataMember]
    public ServiceVersionSettings ServiceVersionSettings { get; }
    Property Value
    Type Description
    ServiceVersionSettings

    Methods

    Equals(VirtualizationSettings)

    Declaration
    public bool Equals(VirtualizationSettings other)
    Parameters
    Type Name Description
    VirtualizationSettings other
    Returns
    Type Description
    bool

    Equals(object)

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

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    Overrides
    object.GetHashCode()

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    string
    Overrides
    object.ToString()

    Validate()

    When implemented, evaluates the state of the object.

    Declaration
    public bool Validate()
    Returns
    Type Description
    bool

    True if state is valid; otherwise, false.

    Implements

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