Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C#

How to Retrieve EMC Centera Cluster/Pool Capabilities

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
19 Oct 200714 min read 70.6K   1.3K   15  
This article shows you how to connect to a Centera Storage appliance and get the Centera Cluster Capabilities.
using System;
using System.Collections.Generic;
using System.Text;

namespace AdrdProjectCentera1
{
    public class AdrdCenteraClusterInfoItem : System.Object, ICloneable
    {
        #region Class Private Variables
        ///<summary>
        ///This is a private class variable to hold the value of the field ClusterID
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Clusterid is the private variable used in the Property
        ///Clusterid to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Clusterid_Dirty is used in the Property Clusterid SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Clusterid_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Clusterid</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Clusterid_Dirty</term>
        /// <description>True if the Set method Clusterid is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Clusterid_IsNull</term>
        /// <description>True if the value of m_Clusterid is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Clusterid= "";
        ///        private System.Boolean m_Clusterid_Dirty = false;
        ///        private System.Boolean m_Clusterid_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Clusterid = "";
        private System.Boolean m_Clusterid_Dirty = false;
        private System.Boolean m_Clusterid_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field ClusterName
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Clustername is the private variable used in the Property
        ///Clustername to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Clustername_Dirty is used in the Property Clustername SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Clustername_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Clustername</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Clustername_Dirty</term>
        /// <description>True if the Set method Clustername is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Clustername_IsNull</term>
        /// <description>True if the value of m_Clustername is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Clustername= "";
        ///        private System.Boolean m_Clustername_Dirty = false;
        ///        private System.Boolean m_Clustername_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Clustername = "";
        private System.Boolean m_Clustername_Dirty = false;
        private System.Boolean m_Clustername_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field CentraStarVersion
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Centrastarversion is the private variable used in the Property
        ///Centrastarversion to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Centrastarversion_Dirty is used in the Property Centrastarversion SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Centrastarversion_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Centrastarversion</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Centrastarversion_Dirty</term>
        /// <description>True if the Set method Centrastarversion is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Centrastarversion_IsNull</term>
        /// <description>True if the value of m_Centrastarversion is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Centrastarversion= "";
        ///        private System.Boolean m_Centrastarversion_Dirty = false;
        ///        private System.Boolean m_Centrastarversion_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Centrastarversion = "";
        private System.Boolean m_Centrastarversion_Dirty = false;
        private System.Boolean m_Centrastarversion_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field SDKVersion
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Sdkversion is the private variable used in the Property
        ///Sdkversion to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Sdkversion_Dirty is used in the Property Sdkversion SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Sdkversion_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Sdkversion</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Sdkversion_Dirty</term>
        /// <description>True if the Set method Sdkversion is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Sdkversion_IsNull</term>
        /// <description>True if the value of m_Sdkversion is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Sdkversion= "";
        ///        private System.Boolean m_Sdkversion_Dirty = false;
        ///        private System.Boolean m_Sdkversion_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Sdkversion = "";
        private System.Boolean m_Sdkversion_Dirty = false;
        private System.Boolean m_Sdkversion_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field Capacity
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Capacity is the private variable used in the Property
        ///Capacity to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Capacity_Dirty is used in the Property Capacity SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Capacity_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Capacity</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Capacity_Dirty</term>
        /// <description>True if the Set method Capacity is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Capacity_IsNull</term>
        /// <description>True if the value of m_Capacity is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Capacity= "";
        ///        private System.Boolean m_Capacity_Dirty = false;
        ///        private System.Boolean m_Capacity_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Capacity = "";
        private System.Boolean m_Capacity_Dirty = false;
        private System.Boolean m_Capacity_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field FreeSpace
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Freespace is the private variable used in the Property
        ///Freespace to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Freespace_Dirty is used in the Property Freespace SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Freespace_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Freespace</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Freespace_Dirty</term>
        /// <description>True if the Set method Freespace is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Freespace_IsNull</term>
        /// <description>True if the value of m_Freespace is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Freespace= "";
        ///        private System.Boolean m_Freespace_Dirty = false;
        ///        private System.Boolean m_Freespace_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Freespace = "";
        private System.Boolean m_Freespace_Dirty = false;
        private System.Boolean m_Freespace_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field BlobNamingSchemes
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Blobnamingschemes is the private variable used in the Property
        ///Blobnamingschemes to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Blobnamingschemes_Dirty is used in the Property Blobnamingschemes SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Blobnamingschemes_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Blobnamingschemes</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Blobnamingschemes_Dirty</term>
        /// <description>True if the Set method Blobnamingschemes is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Blobnamingschemes_IsNull</term>
        /// <description>True if the value of m_Blobnamingschemes is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Blobnamingschemes= "";
        ///        private System.Boolean m_Blobnamingschemes_Dirty = false;
        ///        private System.Boolean m_Blobnamingschemes_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Blobnamingschemes = "";
        private System.Boolean m_Blobnamingschemes_Dirty = false;
        private System.Boolean m_Blobnamingschemes_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field CenteraEdition
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Centeraedition is the private variable used in the Property
        ///Centeraedition to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Centeraedition_Dirty is used in the Property Centeraedition SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Centeraedition_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Centeraedition</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Centeraedition_Dirty</term>
        /// <description>True if the Set method Centeraedition is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Centeraedition_IsNull</term>
        /// <description>True if the value of m_Centeraedition is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Centeraedition= "";
        ///        private System.Boolean m_Centeraedition_Dirty = false;
        ///        private System.Boolean m_Centeraedition_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Centeraedition = "";
        private System.Boolean m_Centeraedition_Dirty = false;
        private System.Boolean m_Centeraedition_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field ClipBufferSize
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Clipbuffersize is the private variable used in the Property
        ///Clipbuffersize to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Clipbuffersize_Dirty is used in the Property Clipbuffersize SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Clipbuffersize_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Clipbuffersize</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Clipbuffersize_Dirty</term>
        /// <description>True if the Set method Clipbuffersize is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Clipbuffersize_IsNull</term>
        /// <description>True if the value of m_Clipbuffersize is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Clipbuffersize= "";
        ///        private System.Boolean m_Clipbuffersize_Dirty = false;
        ///        private System.Boolean m_Clipbuffersize_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Clipbuffersize = "";
        private System.Boolean m_Clipbuffersize_Dirty = false;
        private System.Boolean m_Clipbuffersize_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field DeleteAllowed
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Deleteallowed is the private variable used in the Property
        ///Deleteallowed to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Deleteallowed_Dirty is used in the Property Deleteallowed SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Deleteallowed_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Deleteallowed</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Deleteallowed_Dirty</term>
        /// <description>True if the Set method Deleteallowed is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Deleteallowed_IsNull</term>
        /// <description>True if the value of m_Deleteallowed is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Deleteallowed= "";
        ///        private System.Boolean m_Deleteallowed_Dirty = false;
        ///        private System.Boolean m_Deleteallowed_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Deleteallowed = "";
        private System.Boolean m_Deleteallowed_Dirty = false;
        private System.Boolean m_Deleteallowed_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field DeletionsLogged
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Deletionslogged is the private variable used in the Property
        ///Deletionslogged to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Deletionslogged_Dirty is used in the Property Deletionslogged SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Deletionslogged_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Deletionslogged</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Deletionslogged_Dirty</term>
        /// <description>True if the Set method Deletionslogged is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Deletionslogged_IsNull</term>
        /// <description>True if the value of m_Deletionslogged is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Deletionslogged= "";
        ///        private System.Boolean m_Deletionslogged_Dirty = false;
        ///        private System.Boolean m_Deletionslogged_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Deletionslogged = "";
        private System.Boolean m_Deletionslogged_Dirty = false;
        private System.Boolean m_Deletionslogged_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field ExistsAllowed
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Existsallowed is the private variable used in the Property
        ///Existsallowed to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Existsallowed_Dirty is used in the Property Existsallowed SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Existsallowed_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Existsallowed</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Existsallowed_Dirty</term>
        /// <description>True if the Set method Existsallowed is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Existsallowed_IsNull</term>
        /// <description>True if the value of m_Existsallowed is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Existsallowed= "";
        ///        private System.Boolean m_Existsallowed_Dirty = false;
        ///        private System.Boolean m_Existsallowed_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Existsallowed = "";
        private System.Boolean m_Existsallowed_Dirty = false;
        private System.Boolean m_Existsallowed_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field QueryAllowed
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Queryallowed is the private variable used in the Property
        ///Queryallowed to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Queryallowed_Dirty is used in the Property Queryallowed SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Queryallowed_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Queryallowed</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Queryallowed_Dirty</term>
        /// <description>True if the Set method Queryallowed is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Queryallowed_IsNull</term>
        /// <description>True if the value of m_Queryallowed is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Queryallowed= "";
        ///        private System.Boolean m_Queryallowed_Dirty = false;
        ///        private System.Boolean m_Queryallowed_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Queryallowed = "";
        private System.Boolean m_Queryallowed_Dirty = false;
        private System.Boolean m_Queryallowed_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field RetentionDefault
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Retentiondefault is the private variable used in the Property
        ///Retentiondefault to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Retentiondefault_Dirty is used in the Property Retentiondefault SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Retentiondefault_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Retentiondefault</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Retentiondefault_Dirty</term>
        /// <description>True if the Set method Retentiondefault is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Retentiondefault_IsNull</term>
        /// <description>True if the value of m_Retentiondefault is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Retentiondefault= "";
        ///        private System.Boolean m_Retentiondefault_Dirty = false;
        ///        private System.Boolean m_Retentiondefault_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Retentiondefault = "";
        private System.Boolean m_Retentiondefault_Dirty = false;
        private System.Boolean m_Retentiondefault_IsNull = false;

        ///<summary>
        ///This is a private class variable to hold the value of the field ReplicaAddress
        ///
        /// Prog. By: Adel S. Edd
        ///The Class Type :System.String
        ///<copywrite>Adrdweb.com and Adel S. Eddin</copywrite>
        ///<Date>10/1/2007 12:00:00 AM</Date>
        ///<remarks>
        ///1) The Variable m_Replicaaddress is the private variable used in the Property
        ///Replicaaddress to save the value Sysobject_xtype from the database object.
        ///2) The Variable m_Replicaaddress_Dirty is used in the Property Replicaaddress SET Method
        ///to indicate that the values have changed
        ///3) The Variable m_Replicaaddress_IsNull indicate if the variable m_Sysobject_xtype is null or not
        /// <list type="table">
        /// <listheader>
        /// <term>Variable Name</term>
        /// <description>Value of Element</description>
        /// </listheader>
        /// <item>
        /// <term>m_Replicaaddress</term>
        /// <description>Desc</description>
        /// </item>
        /// <item>
        /// <term>m_Replicaaddress_Dirty</term>
        /// <description>True if the Set method Replicaaddress is called otherwise false</description>
        /// </item>
        /// <item> 
        /// <term>m_Replicaaddress_IsNull</term>
        /// <description>True if the value of m_Replicaaddress is null, otherwise false</description>
        /// </item>
        /// </list>
        /// </remarks>
        /// <code>
        ///        private System.String m_Replicaaddress= "";
        ///        private System.Boolean m_Replicaaddress_Dirty = false;
        ///        private System.Boolean m_Replicaaddress_IsNull = false;
        /// </code>
        ///</summary>
        /// <seealso cref="System.String" />
        private System.String m_Replicaaddress = "";
        private System.Boolean m_Replicaaddress_Dirty = false;
        private System.Boolean m_Replicaaddress_IsNull = false;

        #endregion
        #region Class Constructor Method
        public AdrdCenteraClusterInfoItem()
            : base()
        {
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Clusterid
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Clusterid = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Clusterid = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Clustername
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Clustername = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Clustername = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Centrastarversion
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Centrastarversion = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Centrastarversion = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Sdkversion
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Sdkversion = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Sdkversion = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Capacity
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Capacity = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Capacity = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Freespace
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Freespace = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Freespace = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Blobnamingschemes
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Blobnamingschemes = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Blobnamingschemes = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Centeraedition
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Centeraedition = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Centeraedition = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Clipbuffersize
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Clipbuffersize = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Clipbuffersize = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Deleteallowed
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Deleteallowed = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Deleteallowed = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Deletionslogged
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Deletionslogged = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Deletionslogged = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Existsallowed
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Existsallowed = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Existsallowed = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Queryallowed
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Queryallowed = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Queryallowed = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Retentiondefault
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Retentiondefault = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Retentiondefault = "";
            ///<summary>
            ///This is the initialization of the private class variable to hold the value of the field m_Replicaaddress
            ///
            ///<remarks>
            ///</remarks>
            ///<code>
            ///        m_Replicaaddress = "";
            ///</code>
            ///</summary>
            /// <seealso cref="System.String" />
            m_Replicaaddress = "";
        }
        #endregion
        #region Properties
        ///<summary>
        ///Gets or Sets the filed  Clusterid value
        ///
        ///</summary>
        ///<code>
        ///public System.String Clusterid
        ///{
        ///get
        ///	{
        ///		return m_Clusterid;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Clusterid = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Clusterid");
        ///
        ///       m_Clusterid_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Clusterid  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Clusterid = "Hello World";
        ///		Temp_Clusterid = obj.Clusterid;
        ///		Console.Write(Temp_Clusterid)
        /// 
        /// The following is an example on how ro set the value of the Clusterid 
        /// 
        ///		System.String Temp_Clusterid = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Clusterid = Temp_Clusterid; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Clusterid) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Clusterid
        {
            get
            {
                return m_Clusterid;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Clusterid = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Clusterid");

                m_Clusterid_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Clusterid_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsClusteridDirty
        ///{
        ///get
        ///	{
        ///       return m_Clusterid_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Clusterid_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property ClusteridDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Clusterid = false;
        ///		Temp_Clusterid = obj.Clusterid;
        ///		Console.Write(Temp_Clusterid.ToString())
        /// 
        /// The following is an example on how ro set the value of the ClusteridDirty 
        /// 
        ///		System.String Temp_ClusteridDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.ClusteridDirty = Temp_Clusterid; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.ClusteridDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsClusteridDirty
        {
            get
            {
                return m_Clusterid_Dirty;
            }
            set
            {
                m_Clusterid_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Clusterid_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Clusterid_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Clusterid_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Clusterid_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_ClusteridIsNull = false;
        ///		Temp_ClusteridIsNull = obj.Clusterid;
        ///		Console.Write(Temp_ClusteridIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the ClusteridIsNull 
        /// 
        ///		System.String Temp_ClusteridIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.ClusteridIsNull = Temp_Clusterid; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.ClusteridIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Clusterid_IsNull
        {
            get
            {
                return m_Clusterid_IsNull;
            }
            set
            {
                m_Clusterid_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Clustername value
        ///
        ///</summary>
        ///<code>
        ///public System.String Clustername
        ///{
        ///get
        ///	{
        ///		return m_Clustername;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Clustername = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Clustername");
        ///
        ///       m_Clustername_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Clustername  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Clustername = "Hello World";
        ///		Temp_Clustername = obj.Clustername;
        ///		Console.Write(Temp_Clustername)
        /// 
        /// The following is an example on how ro set the value of the Clustername 
        /// 
        ///		System.String Temp_Clustername = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Clustername = Temp_Clustername; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Clustername) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Clustername
        {
            get
            {
                return m_Clustername;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Clustername = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Clustername");

                m_Clustername_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Clustername_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsClusternameDirty
        ///{
        ///get
        ///	{
        ///       return m_Clustername_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Clustername_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property ClusternameDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Clustername = false;
        ///		Temp_Clustername = obj.Clustername;
        ///		Console.Write(Temp_Clustername.ToString())
        /// 
        /// The following is an example on how ro set the value of the ClusternameDirty 
        /// 
        ///		System.String Temp_ClusternameDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.ClusternameDirty = Temp_Clustername; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.ClusternameDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsClusternameDirty
        {
            get
            {
                return m_Clustername_Dirty;
            }
            set
            {
                m_Clustername_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Clustername_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Clustername_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Clustername_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Clustername_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_ClusternameIsNull = false;
        ///		Temp_ClusternameIsNull = obj.Clustername;
        ///		Console.Write(Temp_ClusternameIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the ClusternameIsNull 
        /// 
        ///		System.String Temp_ClusternameIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.ClusternameIsNull = Temp_Clustername; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.ClusternameIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Clustername_IsNull
        {
            get
            {
                return m_Clustername_IsNull;
            }
            set
            {
                m_Clustername_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Centrastarversion value
        ///
        ///</summary>
        ///<code>
        ///public System.String Centrastarversion
        ///{
        ///get
        ///	{
        ///		return m_Centrastarversion;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Centrastarversion = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Centrastarversion");
        ///
        ///       m_Centrastarversion_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Centrastarversion  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Centrastarversion = "Hello World";
        ///		Temp_Centrastarversion = obj.Centrastarversion;
        ///		Console.Write(Temp_Centrastarversion)
        /// 
        /// The following is an example on how ro set the value of the Centrastarversion 
        /// 
        ///		System.String Temp_Centrastarversion = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Centrastarversion = Temp_Centrastarversion; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Centrastarversion) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Centrastarversion
        {
            get
            {
                return m_Centrastarversion;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Centrastarversion = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Centrastarversion");

                m_Centrastarversion_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Centrastarversion_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsCentrastarversionDirty
        ///{
        ///get
        ///	{
        ///       return m_Centrastarversion_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Centrastarversion_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property CentrastarversionDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Centrastarversion = false;
        ///		Temp_Centrastarversion = obj.Centrastarversion;
        ///		Console.Write(Temp_Centrastarversion.ToString())
        /// 
        /// The following is an example on how ro set the value of the CentrastarversionDirty 
        /// 
        ///		System.String Temp_CentrastarversionDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.CentrastarversionDirty = Temp_Centrastarversion; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.CentrastarversionDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsCentrastarversionDirty
        {
            get
            {
                return m_Centrastarversion_Dirty;
            }
            set
            {
                m_Centrastarversion_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Centrastarversion_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Centrastarversion_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Centrastarversion_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Centrastarversion_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_CentrastarversionIsNull = false;
        ///		Temp_CentrastarversionIsNull = obj.Centrastarversion;
        ///		Console.Write(Temp_CentrastarversionIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the CentrastarversionIsNull 
        /// 
        ///		System.String Temp_CentrastarversionIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.CentrastarversionIsNull = Temp_Centrastarversion; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.CentrastarversionIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Centrastarversion_IsNull
        {
            get
            {
                return m_Centrastarversion_IsNull;
            }
            set
            {
                m_Centrastarversion_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Sdkversion value
        ///
        ///</summary>
        ///<code>
        ///public System.String Sdkversion
        ///{
        ///get
        ///	{
        ///		return m_Sdkversion;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Sdkversion = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Sdkversion");
        ///
        ///       m_Sdkversion_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Sdkversion  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Sdkversion = "Hello World";
        ///		Temp_Sdkversion = obj.Sdkversion;
        ///		Console.Write(Temp_Sdkversion)
        /// 
        /// The following is an example on how ro set the value of the Sdkversion 
        /// 
        ///		System.String Temp_Sdkversion = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Sdkversion = Temp_Sdkversion; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Sdkversion) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Sdkversion
        {
            get
            {
                return m_Sdkversion;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Sdkversion = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Sdkversion");

                m_Sdkversion_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Sdkversion_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsSdkversionDirty
        ///{
        ///get
        ///	{
        ///       return m_Sdkversion_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Sdkversion_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property SdkversionDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Sdkversion = false;
        ///		Temp_Sdkversion = obj.Sdkversion;
        ///		Console.Write(Temp_Sdkversion.ToString())
        /// 
        /// The following is an example on how ro set the value of the SdkversionDirty 
        /// 
        ///		System.String Temp_SdkversionDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.SdkversionDirty = Temp_Sdkversion; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.SdkversionDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsSdkversionDirty
        {
            get
            {
                return m_Sdkversion_Dirty;
            }
            set
            {
                m_Sdkversion_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Sdkversion_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Sdkversion_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Sdkversion_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Sdkversion_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_SdkversionIsNull = false;
        ///		Temp_SdkversionIsNull = obj.Sdkversion;
        ///		Console.Write(Temp_SdkversionIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the SdkversionIsNull 
        /// 
        ///		System.String Temp_SdkversionIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.SdkversionIsNull = Temp_Sdkversion; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.SdkversionIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Sdkversion_IsNull
        {
            get
            {
                return m_Sdkversion_IsNull;
            }
            set
            {
                m_Sdkversion_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Capacity value
        ///
        ///</summary>
        ///<code>
        ///public System.String Capacity
        ///{
        ///get
        ///	{
        ///		return m_Capacity;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Capacity = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Capacity");
        ///
        ///       m_Capacity_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Capacity  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Capacity = "Hello World";
        ///		Temp_Capacity = obj.Capacity;
        ///		Console.Write(Temp_Capacity)
        /// 
        /// The following is an example on how ro set the value of the Capacity 
        /// 
        ///		System.String Temp_Capacity = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Capacity = Temp_Capacity; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Capacity) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Capacity
        {
            get
            {
                return m_Capacity;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Capacity = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Capacity");

                m_Capacity_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Capacity_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsCapacityDirty
        ///{
        ///get
        ///	{
        ///       return m_Capacity_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Capacity_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property CapacityDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Capacity = false;
        ///		Temp_Capacity = obj.Capacity;
        ///		Console.Write(Temp_Capacity.ToString())
        /// 
        /// The following is an example on how ro set the value of the CapacityDirty 
        /// 
        ///		System.String Temp_CapacityDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.CapacityDirty = Temp_Capacity; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.CapacityDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsCapacityDirty
        {
            get
            {
                return m_Capacity_Dirty;
            }
            set
            {
                m_Capacity_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Capacity_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Capacity_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Capacity_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Capacity_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_CapacityIsNull = false;
        ///		Temp_CapacityIsNull = obj.Capacity;
        ///		Console.Write(Temp_CapacityIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the CapacityIsNull 
        /// 
        ///		System.String Temp_CapacityIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.CapacityIsNull = Temp_Capacity; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.CapacityIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Capacity_IsNull
        {
            get
            {
                return m_Capacity_IsNull;
            }
            set
            {
                m_Capacity_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Freespace value
        ///
        ///</summary>
        ///<code>
        ///public System.String Freespace
        ///{
        ///get
        ///	{
        ///		return m_Freespace;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Freespace = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Freespace");
        ///
        ///       m_Freespace_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Freespace  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Freespace = "Hello World";
        ///		Temp_Freespace = obj.Freespace;
        ///		Console.Write(Temp_Freespace)
        /// 
        /// The following is an example on how ro set the value of the Freespace 
        /// 
        ///		System.String Temp_Freespace = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Freespace = Temp_Freespace; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Freespace) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Freespace
        {
            get
            {
                return m_Freespace;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Freespace = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Freespace");

                m_Freespace_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Freespace_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsFreespaceDirty
        ///{
        ///get
        ///	{
        ///       return m_Freespace_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Freespace_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property FreespaceDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Freespace = false;
        ///		Temp_Freespace = obj.Freespace;
        ///		Console.Write(Temp_Freespace.ToString())
        /// 
        /// The following is an example on how ro set the value of the FreespaceDirty 
        /// 
        ///		System.String Temp_FreespaceDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.FreespaceDirty = Temp_Freespace; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.FreespaceDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsFreespaceDirty
        {
            get
            {
                return m_Freespace_Dirty;
            }
            set
            {
                m_Freespace_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Freespace_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Freespace_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Freespace_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Freespace_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_FreespaceIsNull = false;
        ///		Temp_FreespaceIsNull = obj.Freespace;
        ///		Console.Write(Temp_FreespaceIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the FreespaceIsNull 
        /// 
        ///		System.String Temp_FreespaceIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.FreespaceIsNull = Temp_Freespace; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.FreespaceIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Freespace_IsNull
        {
            get
            {
                return m_Freespace_IsNull;
            }
            set
            {
                m_Freespace_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Blobnamingschemes value
        ///
        ///</summary>
        ///<code>
        ///public System.String Blobnamingschemes
        ///{
        ///get
        ///	{
        ///		return m_Blobnamingschemes;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Blobnamingschemes = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Blobnamingschemes");
        ///
        ///       m_Blobnamingschemes_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Blobnamingschemes  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Blobnamingschemes = "Hello World";
        ///		Temp_Blobnamingschemes = obj.Blobnamingschemes;
        ///		Console.Write(Temp_Blobnamingschemes)
        /// 
        /// The following is an example on how ro set the value of the Blobnamingschemes 
        /// 
        ///		System.String Temp_Blobnamingschemes = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Blobnamingschemes = Temp_Blobnamingschemes; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Blobnamingschemes) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Blobnamingschemes
        {
            get
            {
                return m_Blobnamingschemes;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Blobnamingschemes = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Blobnamingschemes");

                m_Blobnamingschemes_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Blobnamingschemes_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsBlobnamingschemesDirty
        ///{
        ///get
        ///	{
        ///       return m_Blobnamingschemes_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Blobnamingschemes_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property BlobnamingschemesDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Blobnamingschemes = false;
        ///		Temp_Blobnamingschemes = obj.Blobnamingschemes;
        ///		Console.Write(Temp_Blobnamingschemes.ToString())
        /// 
        /// The following is an example on how ro set the value of the BlobnamingschemesDirty 
        /// 
        ///		System.String Temp_BlobnamingschemesDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.BlobnamingschemesDirty = Temp_Blobnamingschemes; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.BlobnamingschemesDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsBlobnamingschemesDirty
        {
            get
            {
                return m_Blobnamingschemes_Dirty;
            }
            set
            {
                m_Blobnamingschemes_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Blobnamingschemes_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Blobnamingschemes_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Blobnamingschemes_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Blobnamingschemes_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_BlobnamingschemesIsNull = false;
        ///		Temp_BlobnamingschemesIsNull = obj.Blobnamingschemes;
        ///		Console.Write(Temp_BlobnamingschemesIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the BlobnamingschemesIsNull 
        /// 
        ///		System.String Temp_BlobnamingschemesIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.BlobnamingschemesIsNull = Temp_Blobnamingschemes; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.BlobnamingschemesIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Blobnamingschemes_IsNull
        {
            get
            {
                return m_Blobnamingschemes_IsNull;
            }
            set
            {
                m_Blobnamingschemes_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Centeraedition value
        ///
        ///</summary>
        ///<code>
        ///public System.String Centeraedition
        ///{
        ///get
        ///	{
        ///		return m_Centeraedition;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Centeraedition = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Centeraedition");
        ///
        ///       m_Centeraedition_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Centeraedition  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Centeraedition = "Hello World";
        ///		Temp_Centeraedition = obj.Centeraedition;
        ///		Console.Write(Temp_Centeraedition)
        /// 
        /// The following is an example on how ro set the value of the Centeraedition 
        /// 
        ///		System.String Temp_Centeraedition = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Centeraedition = Temp_Centeraedition; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Centeraedition) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Centeraedition
        {
            get
            {
                return m_Centeraedition;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Centeraedition = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Centeraedition");

                m_Centeraedition_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Centeraedition_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsCenteraeditionDirty
        ///{
        ///get
        ///	{
        ///       return m_Centeraedition_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Centeraedition_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property CenteraeditionDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Centeraedition = false;
        ///		Temp_Centeraedition = obj.Centeraedition;
        ///		Console.Write(Temp_Centeraedition.ToString())
        /// 
        /// The following is an example on how ro set the value of the CenteraeditionDirty 
        /// 
        ///		System.String Temp_CenteraeditionDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.CenteraeditionDirty = Temp_Centeraedition; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.CenteraeditionDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsCenteraeditionDirty
        {
            get
            {
                return m_Centeraedition_Dirty;
            }
            set
            {
                m_Centeraedition_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Centeraedition_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Centeraedition_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Centeraedition_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Centeraedition_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_CenteraeditionIsNull = false;
        ///		Temp_CenteraeditionIsNull = obj.Centeraedition;
        ///		Console.Write(Temp_CenteraeditionIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the CenteraeditionIsNull 
        /// 
        ///		System.String Temp_CenteraeditionIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.CenteraeditionIsNull = Temp_Centeraedition; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.CenteraeditionIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Centeraedition_IsNull
        {
            get
            {
                return m_Centeraedition_IsNull;
            }
            set
            {
                m_Centeraedition_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Clipbuffersize value
        ///
        ///</summary>
        ///<code>
        ///public System.String Clipbuffersize
        ///{
        ///get
        ///	{
        ///		return m_Clipbuffersize;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Clipbuffersize = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Clipbuffersize");
        ///
        ///       m_Clipbuffersize_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Clipbuffersize  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Clipbuffersize = "Hello World";
        ///		Temp_Clipbuffersize = obj.Clipbuffersize;
        ///		Console.Write(Temp_Clipbuffersize)
        /// 
        /// The following is an example on how ro set the value of the Clipbuffersize 
        /// 
        ///		System.String Temp_Clipbuffersize = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Clipbuffersize = Temp_Clipbuffersize; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Clipbuffersize) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Clipbuffersize
        {
            get
            {
                return m_Clipbuffersize;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Clipbuffersize = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Clipbuffersize");

                m_Clipbuffersize_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Clipbuffersize_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsClipbuffersizeDirty
        ///{
        ///get
        ///	{
        ///       return m_Clipbuffersize_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Clipbuffersize_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property ClipbuffersizeDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Clipbuffersize = false;
        ///		Temp_Clipbuffersize = obj.Clipbuffersize;
        ///		Console.Write(Temp_Clipbuffersize.ToString())
        /// 
        /// The following is an example on how ro set the value of the ClipbuffersizeDirty 
        /// 
        ///		System.String Temp_ClipbuffersizeDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.ClipbuffersizeDirty = Temp_Clipbuffersize; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.ClipbuffersizeDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsClipbuffersizeDirty
        {
            get
            {
                return m_Clipbuffersize_Dirty;
            }
            set
            {
                m_Clipbuffersize_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Clipbuffersize_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Clipbuffersize_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Clipbuffersize_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Clipbuffersize_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_ClipbuffersizeIsNull = false;
        ///		Temp_ClipbuffersizeIsNull = obj.Clipbuffersize;
        ///		Console.Write(Temp_ClipbuffersizeIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the ClipbuffersizeIsNull 
        /// 
        ///		System.String Temp_ClipbuffersizeIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.ClipbuffersizeIsNull = Temp_Clipbuffersize; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.ClipbuffersizeIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Clipbuffersize_IsNull
        {
            get
            {
                return m_Clipbuffersize_IsNull;
            }
            set
            {
                m_Clipbuffersize_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Deleteallowed value
        ///
        ///</summary>
        ///<code>
        ///public System.String Deleteallowed
        ///{
        ///get
        ///	{
        ///		return m_Deleteallowed;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Deleteallowed = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Deleteallowed");
        ///
        ///       m_Deleteallowed_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Deleteallowed  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Deleteallowed = "Hello World";
        ///		Temp_Deleteallowed = obj.Deleteallowed;
        ///		Console.Write(Temp_Deleteallowed)
        /// 
        /// The following is an example on how ro set the value of the Deleteallowed 
        /// 
        ///		System.String Temp_Deleteallowed = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Deleteallowed = Temp_Deleteallowed; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Deleteallowed) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Deleteallowed
        {
            get
            {
                return m_Deleteallowed;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Deleteallowed = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Deleteallowed");

                m_Deleteallowed_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Deleteallowed_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsDeleteallowedDirty
        ///{
        ///get
        ///	{
        ///       return m_Deleteallowed_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Deleteallowed_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property DeleteallowedDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Deleteallowed = false;
        ///		Temp_Deleteallowed = obj.Deleteallowed;
        ///		Console.Write(Temp_Deleteallowed.ToString())
        /// 
        /// The following is an example on how ro set the value of the DeleteallowedDirty 
        /// 
        ///		System.String Temp_DeleteallowedDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.DeleteallowedDirty = Temp_Deleteallowed; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.DeleteallowedDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsDeleteallowedDirty
        {
            get
            {
                return m_Deleteallowed_Dirty;
            }
            set
            {
                m_Deleteallowed_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Deleteallowed_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Deleteallowed_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Deleteallowed_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Deleteallowed_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_DeleteallowedIsNull = false;
        ///		Temp_DeleteallowedIsNull = obj.Deleteallowed;
        ///		Console.Write(Temp_DeleteallowedIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the DeleteallowedIsNull 
        /// 
        ///		System.String Temp_DeleteallowedIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.DeleteallowedIsNull = Temp_Deleteallowed; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.DeleteallowedIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Deleteallowed_IsNull
        {
            get
            {
                return m_Deleteallowed_IsNull;
            }
            set
            {
                m_Deleteallowed_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Deletionslogged value
        ///
        ///</summary>
        ///<code>
        ///public System.String Deletionslogged
        ///{
        ///get
        ///	{
        ///		return m_Deletionslogged;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Deletionslogged = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Deletionslogged");
        ///
        ///       m_Deletionslogged_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Deletionslogged  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Deletionslogged = "Hello World";
        ///		Temp_Deletionslogged = obj.Deletionslogged;
        ///		Console.Write(Temp_Deletionslogged)
        /// 
        /// The following is an example on how ro set the value of the Deletionslogged 
        /// 
        ///		System.String Temp_Deletionslogged = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Deletionslogged = Temp_Deletionslogged; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Deletionslogged) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Deletionslogged
        {
            get
            {
                return m_Deletionslogged;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Deletionslogged = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Deletionslogged");

                m_Deletionslogged_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Deletionslogged_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsDeletionsloggedDirty
        ///{
        ///get
        ///	{
        ///       return m_Deletionslogged_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Deletionslogged_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property DeletionsloggedDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Deletionslogged = false;
        ///		Temp_Deletionslogged = obj.Deletionslogged;
        ///		Console.Write(Temp_Deletionslogged.ToString())
        /// 
        /// The following is an example on how ro set the value of the DeletionsloggedDirty 
        /// 
        ///		System.String Temp_DeletionsloggedDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.DeletionsloggedDirty = Temp_Deletionslogged; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.DeletionsloggedDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsDeletionsloggedDirty
        {
            get
            {
                return m_Deletionslogged_Dirty;
            }
            set
            {
                m_Deletionslogged_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Deletionslogged_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Deletionslogged_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Deletionslogged_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Deletionslogged_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_DeletionsloggedIsNull = false;
        ///		Temp_DeletionsloggedIsNull = obj.Deletionslogged;
        ///		Console.Write(Temp_DeletionsloggedIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the DeletionsloggedIsNull 
        /// 
        ///		System.String Temp_DeletionsloggedIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.DeletionsloggedIsNull = Temp_Deletionslogged; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.DeletionsloggedIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Deletionslogged_IsNull
        {
            get
            {
                return m_Deletionslogged_IsNull;
            }
            set
            {
                m_Deletionslogged_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Existsallowed value
        ///
        ///</summary>
        ///<code>
        ///public System.String Existsallowed
        ///{
        ///get
        ///	{
        ///		return m_Existsallowed;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Existsallowed = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Existsallowed");
        ///
        ///       m_Existsallowed_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Existsallowed  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Existsallowed = "Hello World";
        ///		Temp_Existsallowed = obj.Existsallowed;
        ///		Console.Write(Temp_Existsallowed)
        /// 
        /// The following is an example on how ro set the value of the Existsallowed 
        /// 
        ///		System.String Temp_Existsallowed = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Existsallowed = Temp_Existsallowed; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Existsallowed) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Existsallowed
        {
            get
            {
                return m_Existsallowed;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Existsallowed = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Existsallowed");

                m_Existsallowed_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Existsallowed_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsExistsallowedDirty
        ///{
        ///get
        ///	{
        ///       return m_Existsallowed_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Existsallowed_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property ExistsallowedDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Existsallowed = false;
        ///		Temp_Existsallowed = obj.Existsallowed;
        ///		Console.Write(Temp_Existsallowed.ToString())
        /// 
        /// The following is an example on how ro set the value of the ExistsallowedDirty 
        /// 
        ///		System.String Temp_ExistsallowedDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.ExistsallowedDirty = Temp_Existsallowed; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.ExistsallowedDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsExistsallowedDirty
        {
            get
            {
                return m_Existsallowed_Dirty;
            }
            set
            {
                m_Existsallowed_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Existsallowed_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Existsallowed_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Existsallowed_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Existsallowed_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_ExistsallowedIsNull = false;
        ///		Temp_ExistsallowedIsNull = obj.Existsallowed;
        ///		Console.Write(Temp_ExistsallowedIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the ExistsallowedIsNull 
        /// 
        ///		System.String Temp_ExistsallowedIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.ExistsallowedIsNull = Temp_Existsallowed; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.ExistsallowedIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Existsallowed_IsNull
        {
            get
            {
                return m_Existsallowed_IsNull;
            }
            set
            {
                m_Existsallowed_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Queryallowed value
        ///
        ///</summary>
        ///<code>
        ///public System.String Queryallowed
        ///{
        ///get
        ///	{
        ///		return m_Queryallowed;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Queryallowed = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Queryallowed");
        ///
        ///       m_Queryallowed_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Queryallowed  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Queryallowed = "Hello World";
        ///		Temp_Queryallowed = obj.Queryallowed;
        ///		Console.Write(Temp_Queryallowed)
        /// 
        /// The following is an example on how ro set the value of the Queryallowed 
        /// 
        ///		System.String Temp_Queryallowed = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Queryallowed = Temp_Queryallowed; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Queryallowed) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Queryallowed
        {
            get
            {
                return m_Queryallowed;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Queryallowed = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Queryallowed");

                m_Queryallowed_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Queryallowed_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsQueryallowedDirty
        ///{
        ///get
        ///	{
        ///       return m_Queryallowed_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Queryallowed_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property QueryallowedDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Queryallowed = false;
        ///		Temp_Queryallowed = obj.Queryallowed;
        ///		Console.Write(Temp_Queryallowed.ToString())
        /// 
        /// The following is an example on how ro set the value of the QueryallowedDirty 
        /// 
        ///		System.String Temp_QueryallowedDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.QueryallowedDirty = Temp_Queryallowed; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.QueryallowedDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsQueryallowedDirty
        {
            get
            {
                return m_Queryallowed_Dirty;
            }
            set
            {
                m_Queryallowed_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Queryallowed_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Queryallowed_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Queryallowed_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Queryallowed_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_QueryallowedIsNull = false;
        ///		Temp_QueryallowedIsNull = obj.Queryallowed;
        ///		Console.Write(Temp_QueryallowedIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the QueryallowedIsNull 
        /// 
        ///		System.String Temp_QueryallowedIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.QueryallowedIsNull = Temp_Queryallowed; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.QueryallowedIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Queryallowed_IsNull
        {
            get
            {
                return m_Queryallowed_IsNull;
            }
            set
            {
                m_Queryallowed_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Retentiondefault value
        ///
        ///</summary>
        ///<code>
        ///public System.String Retentiondefault
        ///{
        ///get
        ///	{
        ///		return m_Retentiondefault;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Retentiondefault = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Retentiondefault");
        ///
        ///       m_Retentiondefault_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Retentiondefault  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Retentiondefault = "Hello World";
        ///		Temp_Retentiondefault = obj.Retentiondefault;
        ///		Console.Write(Temp_Retentiondefault)
        /// 
        /// The following is an example on how ro set the value of the Retentiondefault 
        /// 
        ///		System.String Temp_Retentiondefault = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Retentiondefault = Temp_Retentiondefault; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Retentiondefault) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Retentiondefault
        {
            get
            {
                return m_Retentiondefault;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Retentiondefault = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Retentiondefault");

                m_Retentiondefault_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Retentiondefault_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsRetentiondefaultDirty
        ///{
        ///get
        ///	{
        ///       return m_Retentiondefault_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Retentiondefault_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property RetentiondefaultDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Retentiondefault = false;
        ///		Temp_Retentiondefault = obj.Retentiondefault;
        ///		Console.Write(Temp_Retentiondefault.ToString())
        /// 
        /// The following is an example on how ro set the value of the RetentiondefaultDirty 
        /// 
        ///		System.String Temp_RetentiondefaultDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.RetentiondefaultDirty = Temp_Retentiondefault; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.RetentiondefaultDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsRetentiondefaultDirty
        {
            get
            {
                return m_Retentiondefault_Dirty;
            }
            set
            {
                m_Retentiondefault_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Retentiondefault_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Retentiondefault_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Retentiondefault_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Retentiondefault_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_RetentiondefaultIsNull = false;
        ///		Temp_RetentiondefaultIsNull = obj.Retentiondefault;
        ///		Console.Write(Temp_RetentiondefaultIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the RetentiondefaultIsNull 
        /// 
        ///		System.String Temp_RetentiondefaultIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.RetentiondefaultIsNull = Temp_Retentiondefault; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.RetentiondefaultIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Retentiondefault_IsNull
        {
            get
            {
                return m_Retentiondefault_IsNull;
            }
            set
            {
                m_Retentiondefault_IsNull = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Replicaaddress value
        ///
        ///</summary>
        ///<code>
        ///public System.String Replicaaddress
        ///{
        ///get
        ///	{
        ///		return m_Replicaaddress;
        ///	}
        ///set
        ///	{
        ///	   if (value.GetType().ToString().ToLower()  == "System.String".ToLower()    )
        ///	         m_Replicaaddress = value ;
        ///	   else
        ///	      throw new Exception("Invalid Value Assigned to the Variable m_Replicaaddress");
        ///
        ///       m_Replicaaddress_Dirty = true;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.String
        /// </returns>
        /// <example>
        /// 
        /// The following is an example on how to get the value from the property Replicaaddress  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Replicaaddress = "Hello World";
        ///		Temp_Replicaaddress = obj.Replicaaddress;
        ///		Console.Write(Temp_Replicaaddress)
        /// 
        /// The following is an example on how ro set the value of the Replicaaddress 
        /// 
        ///		System.String Temp_Replicaaddress = "Hello World"; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.Replicaaddress = Temp_Replicaaddress; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.Replicaaddress) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.String Replicaaddress
        {
            get
            {
                return m_Replicaaddress;
            }
            set
            {
                if (value.GetType().ToString().ToLower() == "System.String".ToLower())
                    m_Replicaaddress = value;
                else
                    throw new Exception("Invalid Value Assigned to the Variable m_Replicaaddress");

                m_Replicaaddress_Dirty = true;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Replicaaddress_Dirty value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean IsReplicaaddressDirty
        ///{
        ///get
        ///	{
        ///       return m_Replicaaddress_Dirty ;
        ///	}
        ///set
        ///	{
        ///       m_Replicaaddress_Dirty = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        /// </returns>
        /// <example>
        /// The following is an example on how to get the value from the property ReplicaaddressDirty  
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_Replicaaddress = false;
        ///		Temp_Replicaaddress = obj.Replicaaddress;
        ///		Console.Write(Temp_Replicaaddress.ToString())
        /// 
        /// The following is an example on how ro set the value of the ReplicaaddressDirty 
        /// 
        ///		System.String Temp_ReplicaaddressDirty = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.ReplicaaddressDirty = Temp_Replicaaddress; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.ReplicaaddressDirty.ToString()) 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean IsReplicaaddressDirty
        {
            get
            {
                return m_Replicaaddress_Dirty;
            }
            set
            {
                m_Replicaaddress_Dirty = value;
            }
        }

        ///<summary>
        ///Gets or Sets the filed  Replicaaddress_IsNull value
        ///
        ///</summary>
        ///<code>
        ///public System.Boolean Replicaaddress_IsNull
        ///{
        ///get
        ///	{
        ///       return m_Replicaaddress_IsNull ;
        ///	}
        ///set
        ///	{
        ///       m_Replicaaddress_IsNull = value;
        ///	}
        ///}
        ///
        ///
        ///</code>
        /// <returns>
        /// System.Boolean
        ///</returns>
        /// <example>
        /// 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem();
        ///		System.String Temp_ReplicaaddressIsNull = false;
        ///		Temp_ReplicaaddressIsNull = obj.Replicaaddress;
        ///		Console.Write(Temp_ReplicaaddressIsNull.ToString())
        /// 
        /// The following is an example on how to set the value of the ReplicaaddressIsNull 
        /// 
        ///		System.String Temp_ReplicaaddressIsNull = ; 
        ///		AdrdCenteraClusterInfoItem obj = new AdrdCenteraClusterInfoItem(); 
        ///		obj.ReplicaaddressIsNull = Temp_Replicaaddress; 
        ///		//Now we call the Get to output the value to the Console 
        ///		Console.Write(obj.ReplicaaddressIsNull.ToString()); 
        ///		 
        /// </example>
        /// <seealso cref="System.String" />
        public System.Boolean Replicaaddress_IsNull
        {
            get
            {
                return m_Replicaaddress_IsNull;
            }
            set
            {
                m_Replicaaddress_IsNull = value;
            }
        }

        #endregion
        #region Clone Method for the IClonable Interface
        ///<summary>
        ///Supports cloning, which creates a new instance of a class with the same value as an existing instance of the classAdrdCenteraClusterInfoItem
        ///</summary>
        ///<remarks>
        ///The code snippet below is the full code implementation of the Clone Method
        ///</remarks>
        ///<code>
        ///		public object Clone()
        ///		{
        ///		AdrdCenteraClusterInfoItem AdrdCenteraClusterInfoItemObj   = new AdrdCenteraClusterInfoItem();
        ///		System.String strClusterid="";
        ///		strClusterid = this.Clusterid;
        ///		AdrdCenteraClusterInfoItemObj.m_Clusterid = strClusterid;
        ///		
        ///		System.String strClustername="";
        ///		strClustername = this.Clustername;
        ///		AdrdCenteraClusterInfoItemObj.m_Clustername = strClustername;
        ///		
        ///		System.String strCentrastarversion="";
        ///		strCentrastarversion = this.Centrastarversion;
        ///		AdrdCenteraClusterInfoItemObj.m_Centrastarversion = strCentrastarversion;
        ///		
        ///		System.String strSdkversion="";
        ///		strSdkversion = this.Sdkversion;
        ///		AdrdCenteraClusterInfoItemObj.m_Sdkversion = strSdkversion;
        ///		
        ///		System.String strCapacity="";
        ///		strCapacity = this.Capacity;
        ///		AdrdCenteraClusterInfoItemObj.m_Capacity = strCapacity;
        ///		
        ///		System.String strFreespace="";
        ///		strFreespace = this.Freespace;
        ///		AdrdCenteraClusterInfoItemObj.m_Freespace = strFreespace;
        ///		
        ///		System.String strBlobnamingschemes="";
        ///		strBlobnamingschemes = this.Blobnamingschemes;
        ///		AdrdCenteraClusterInfoItemObj.m_Blobnamingschemes = strBlobnamingschemes;
        ///		
        ///		System.String strCenteraedition="";
        ///		strCenteraedition = this.Centeraedition;
        ///		AdrdCenteraClusterInfoItemObj.m_Centeraedition = strCenteraedition;
        ///		
        ///		System.String strClipbuffersize="";
        ///		strClipbuffersize = this.Clipbuffersize;
        ///		AdrdCenteraClusterInfoItemObj.m_Clipbuffersize = strClipbuffersize;
        ///		
        ///		System.String strDeleteallowed="";
        ///		strDeleteallowed = this.Deleteallowed;
        ///		AdrdCenteraClusterInfoItemObj.m_Deleteallowed = strDeleteallowed;
        ///		
        ///		System.String strDeletionslogged="";
        ///		strDeletionslogged = this.Deletionslogged;
        ///		AdrdCenteraClusterInfoItemObj.m_Deletionslogged = strDeletionslogged;
        ///		
        ///		System.String strExistsallowed="";
        ///		strExistsallowed = this.Existsallowed;
        ///		AdrdCenteraClusterInfoItemObj.m_Existsallowed = strExistsallowed;
        ///		
        ///		System.String strQueryallowed="";
        ///		strQueryallowed = this.Queryallowed;
        ///		AdrdCenteraClusterInfoItemObj.m_Queryallowed = strQueryallowed;
        ///		
        ///		System.String strRetentiondefault="";
        ///		strRetentiondefault = this.Retentiondefault;
        ///		AdrdCenteraClusterInfoItemObj.m_Retentiondefault = strRetentiondefault;
        ///		
        ///		System.String strReplicaaddress="";
        ///		strReplicaaddress = this.Replicaaddress;
        ///		AdrdCenteraClusterInfoItemObj.m_Replicaaddress = strReplicaaddress;
        ///		
        ///		return AdrdCenteraClusterInfoItemObj;
        ///		}
        ///		
        ///</code>
        ///
        ///<example>
        ///
        ///   AdrdCenteraClusterInfoItem Obj		= new AdrdCenteraClusterInfoItem();
        ///   AdrdCenteraClusterInfoItem copyObj	= new AdrdCenteraClusterInfoItem();
        ///   //make copyObj copy of Obj. The cast is used because the Clone method return type is object
        ///   copyObj = (AdrdCenteraClusterInfoItem)Obj.Clone();
        ///   
        ///</example>
        ///
        /// <seealso cref="ICloneable Interface" />
        /// <seealso cref="System.Object" />

        public object Clone()
        {
            AdrdCenteraClusterInfoItem AdrdCenteraClusterInfoItemObj = new AdrdCenteraClusterInfoItem();
            System.String strClusterid = "";
            strClusterid = this.Clusterid;
            AdrdCenteraClusterInfoItemObj.m_Clusterid = strClusterid;

            System.String strClustername = "";
            strClustername = this.Clustername;
            AdrdCenteraClusterInfoItemObj.m_Clustername = strClustername;

            System.String strCentrastarversion = "";
            strCentrastarversion = this.Centrastarversion;
            AdrdCenteraClusterInfoItemObj.m_Centrastarversion = strCentrastarversion;

            System.String strSdkversion = "";
            strSdkversion = this.Sdkversion;
            AdrdCenteraClusterInfoItemObj.m_Sdkversion = strSdkversion;

            System.String strCapacity = "";
            strCapacity = this.Capacity;
            AdrdCenteraClusterInfoItemObj.m_Capacity = strCapacity;

            System.String strFreespace = "";
            strFreespace = this.Freespace;
            AdrdCenteraClusterInfoItemObj.m_Freespace = strFreespace;

            System.String strBlobnamingschemes = "";
            strBlobnamingschemes = this.Blobnamingschemes;
            AdrdCenteraClusterInfoItemObj.m_Blobnamingschemes = strBlobnamingschemes;

            System.String strCenteraedition = "";
            strCenteraedition = this.Centeraedition;
            AdrdCenteraClusterInfoItemObj.m_Centeraedition = strCenteraedition;

            System.String strClipbuffersize = "";
            strClipbuffersize = this.Clipbuffersize;
            AdrdCenteraClusterInfoItemObj.m_Clipbuffersize = strClipbuffersize;

            System.String strDeleteallowed = "";
            strDeleteallowed = this.Deleteallowed;
            AdrdCenteraClusterInfoItemObj.m_Deleteallowed = strDeleteallowed;

            System.String strDeletionslogged = "";
            strDeletionslogged = this.Deletionslogged;
            AdrdCenteraClusterInfoItemObj.m_Deletionslogged = strDeletionslogged;

            System.String strExistsallowed = "";
            strExistsallowed = this.Existsallowed;
            AdrdCenteraClusterInfoItemObj.m_Existsallowed = strExistsallowed;

            System.String strQueryallowed = "";
            strQueryallowed = this.Queryallowed;
            AdrdCenteraClusterInfoItemObj.m_Queryallowed = strQueryallowed;

            System.String strRetentiondefault = "";
            strRetentiondefault = this.Retentiondefault;
            AdrdCenteraClusterInfoItemObj.m_Retentiondefault = strRetentiondefault;

            System.String strReplicaaddress = "";
            strReplicaaddress = this.Replicaaddress;
            AdrdCenteraClusterInfoItemObj.m_Replicaaddress = strReplicaaddress;

            return AdrdCenteraClusterInfoItemObj;
        }
        #endregion
        #region OverRide the ToString Method of the inhereted class Object
        public override string ToString()
        {
            return "Adrdweb.AdrdCenteraClusterInfoItem";
        }
        #endregion
        #region OverRide the GetHashCode Method of the inhereted class Object
        public override int GetHashCode()
        {
            return 291937504;
        }
        #endregion
        #region OverRide the Equals Method of the inhereted class Object
        ///<summary>
        ///Determines whether two Object instances are equal.
        ///</summary>
        ///<remarks>
        ///The code snippet below is the full code implementation of the Equal Method
        ///</remarks>
        ///<code>
        ///		public override bool Equals(Object AdrdCenteraClusterInfoItemObj)
        ///		{
        ///			bool bFlag = true;
        ///		int intVariableLength = 0 ;
        ///		AdrdCenteraClusterInfoItem _objAdrdCenteraClusterInfoItem = new AdrdCenteraClusterInfoItem();
        ///		_objAdrdCenteraClusterInfoItem = (AdrdCenteraClusterInfoItem)AdrdCenteraClusterInfoItemObj;
        ///		try
        ///		{
        ///				System.String strClusterIDOne="";
        ///				System.String strClusterIDTwo="";
        ///				strClusterIDOne= this.Clusterid;
        ///				strClusterIDTwo= _objAdrdCenteraClusterInfoItem.Clusterid;
        ///				if (strClusterIDOne  != strClusterIDTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strClusterNameOne="";
        ///				System.String strClusterNameTwo="";
        ///				strClusterNameOne= this.Clustername;
        ///				strClusterNameTwo= _objAdrdCenteraClusterInfoItem.Clustername;
        ///				if (strClusterNameOne  != strClusterNameTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strCentraStarVersionOne="";
        ///				System.String strCentraStarVersionTwo="";
        ///				strCentraStarVersionOne= this.Centrastarversion;
        ///				strCentraStarVersionTwo= _objAdrdCenteraClusterInfoItem.Centrastarversion;
        ///				if (strCentraStarVersionOne  != strCentraStarVersionTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strSDKVersionOne="";
        ///				System.String strSDKVersionTwo="";
        ///				strSDKVersionOne= this.Sdkversion;
        ///				strSDKVersionTwo= _objAdrdCenteraClusterInfoItem.Sdkversion;
        ///				if (strSDKVersionOne  != strSDKVersionTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strCapacityOne="";
        ///				System.String strCapacityTwo="";
        ///				strCapacityOne= this.Capacity;
        ///				strCapacityTwo= _objAdrdCenteraClusterInfoItem.Capacity;
        ///				if (strCapacityOne  != strCapacityTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strFreeSpaceOne="";
        ///				System.String strFreeSpaceTwo="";
        ///				strFreeSpaceOne= this.Freespace;
        ///				strFreeSpaceTwo= _objAdrdCenteraClusterInfoItem.Freespace;
        ///				if (strFreeSpaceOne  != strFreeSpaceTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strBlobNamingSchemesOne="";
        ///				System.String strBlobNamingSchemesTwo="";
        ///				strBlobNamingSchemesOne= this.Blobnamingschemes;
        ///				strBlobNamingSchemesTwo= _objAdrdCenteraClusterInfoItem.Blobnamingschemes;
        ///				if (strBlobNamingSchemesOne  != strBlobNamingSchemesTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strCenteraEditionOne="";
        ///				System.String strCenteraEditionTwo="";
        ///				strCenteraEditionOne= this.Centeraedition;
        ///				strCenteraEditionTwo= _objAdrdCenteraClusterInfoItem.Centeraedition;
        ///				if (strCenteraEditionOne  != strCenteraEditionTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strClipBufferSizeOne="";
        ///				System.String strClipBufferSizeTwo="";
        ///				strClipBufferSizeOne= this.Clipbuffersize;
        ///				strClipBufferSizeTwo= _objAdrdCenteraClusterInfoItem.Clipbuffersize;
        ///				if (strClipBufferSizeOne  != strClipBufferSizeTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strDeleteAllowedOne="";
        ///				System.String strDeleteAllowedTwo="";
        ///				strDeleteAllowedOne= this.Deleteallowed;
        ///				strDeleteAllowedTwo= _objAdrdCenteraClusterInfoItem.Deleteallowed;
        ///				if (strDeleteAllowedOne  != strDeleteAllowedTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strDeletionsLoggedOne="";
        ///				System.String strDeletionsLoggedTwo="";
        ///				strDeletionsLoggedOne= this.Deletionslogged;
        ///				strDeletionsLoggedTwo= _objAdrdCenteraClusterInfoItem.Deletionslogged;
        ///				if (strDeletionsLoggedOne  != strDeletionsLoggedTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strExistsAllowedOne="";
        ///				System.String strExistsAllowedTwo="";
        ///				strExistsAllowedOne= this.Existsallowed;
        ///				strExistsAllowedTwo= _objAdrdCenteraClusterInfoItem.Existsallowed;
        ///				if (strExistsAllowedOne  != strExistsAllowedTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strQueryAllowedOne="";
        ///				System.String strQueryAllowedTwo="";
        ///				strQueryAllowedOne= this.Queryallowed;
        ///				strQueryAllowedTwo= _objAdrdCenteraClusterInfoItem.Queryallowed;
        ///				if (strQueryAllowedOne  != strQueryAllowedTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strRetentionDefaultOne="";
        ///				System.String strRetentionDefaultTwo="";
        ///				strRetentionDefaultOne= this.Retentiondefault;
        ///				strRetentionDefaultTwo= _objAdrdCenteraClusterInfoItem.Retentiondefault;
        ///				if (strRetentionDefaultOne  != strRetentionDefaultTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		try
        ///		{
        ///				System.String strReplicaAddressOne="";
        ///				System.String strReplicaAddressTwo="";
        ///				strReplicaAddressOne= this.Replicaaddress;
        ///				strReplicaAddressTwo= _objAdrdCenteraClusterInfoItem.Replicaaddress;
        ///				if (strReplicaAddressOne  != strReplicaAddressTwo)
        ///				{
        ///				return false;
        ///				}
        ///			}
        ///		catch
        ///		{
        ///				return false;
        ///		}
        ///		

        ///		
        ///		return true;
        ///		}
        ///		
        ///</code>
        ///
        ///<example>
        ///
        ///   AdrdCenteraClusterInfoItem Obj		= new AdrdCenteraClusterInfoItem();
        ///   AdrdCenteraClusterInfoItem copyObj	= new AdrdCenteraClusterInfoItem();
        ///   //make copyObj copy of Obj. The cast is used because the Clone method return type is object
        ///   if (copyObj.Equals(Obj))
        ///		{
        ///			Console.Write("Two Objects are Equals");
        ///		}
        ///   
        ///</example>
        ///
        /// <seealso cref="Object.Equals" />
        /// <seealso cref="System.Object" />

        public override bool Equals(Object AdrdCenteraClusterInfoItemObj)
        {


            AdrdCenteraClusterInfoItem _objAdrdCenteraClusterInfoItem = new AdrdCenteraClusterInfoItem();
            _objAdrdCenteraClusterInfoItem = (AdrdCenteraClusterInfoItem)AdrdCenteraClusterInfoItemObj;
            try
            {
                System.String strClusterIDOne = "";
                System.String strClusterIDTwo = "";
                strClusterIDOne = this.Clusterid;
                strClusterIDTwo = _objAdrdCenteraClusterInfoItem.Clusterid;
                if (strClusterIDOne != strClusterIDTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strClusterNameOne = "";
                System.String strClusterNameTwo = "";
                strClusterNameOne = this.Clustername;
                strClusterNameTwo = _objAdrdCenteraClusterInfoItem.Clustername;
                if (strClusterNameOne != strClusterNameTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strCentraStarVersionOne = "";
                System.String strCentraStarVersionTwo = "";
                strCentraStarVersionOne = this.Centrastarversion;
                strCentraStarVersionTwo = _objAdrdCenteraClusterInfoItem.Centrastarversion;
                if (strCentraStarVersionOne != strCentraStarVersionTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strSDKVersionOne = "";
                System.String strSDKVersionTwo = "";
                strSDKVersionOne = this.Sdkversion;
                strSDKVersionTwo = _objAdrdCenteraClusterInfoItem.Sdkversion;
                if (strSDKVersionOne != strSDKVersionTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strCapacityOne = "";
                System.String strCapacityTwo = "";
                strCapacityOne = this.Capacity;
                strCapacityTwo = _objAdrdCenteraClusterInfoItem.Capacity;
                if (strCapacityOne != strCapacityTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strFreeSpaceOne = "";
                System.String strFreeSpaceTwo = "";
                strFreeSpaceOne = this.Freespace;
                strFreeSpaceTwo = _objAdrdCenteraClusterInfoItem.Freespace;
                if (strFreeSpaceOne != strFreeSpaceTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strBlobNamingSchemesOne = "";
                System.String strBlobNamingSchemesTwo = "";
                strBlobNamingSchemesOne = this.Blobnamingschemes;
                strBlobNamingSchemesTwo = _objAdrdCenteraClusterInfoItem.Blobnamingschemes;
                if (strBlobNamingSchemesOne != strBlobNamingSchemesTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strCenteraEditionOne = "";
                System.String strCenteraEditionTwo = "";
                strCenteraEditionOne = this.Centeraedition;
                strCenteraEditionTwo = _objAdrdCenteraClusterInfoItem.Centeraedition;
                if (strCenteraEditionOne != strCenteraEditionTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strClipBufferSizeOne = "";
                System.String strClipBufferSizeTwo = "";
                strClipBufferSizeOne = this.Clipbuffersize;
                strClipBufferSizeTwo = _objAdrdCenteraClusterInfoItem.Clipbuffersize;
                if (strClipBufferSizeOne != strClipBufferSizeTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strDeleteAllowedOne = "";
                System.String strDeleteAllowedTwo = "";
                strDeleteAllowedOne = this.Deleteallowed;
                strDeleteAllowedTwo = _objAdrdCenteraClusterInfoItem.Deleteallowed;
                if (strDeleteAllowedOne != strDeleteAllowedTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strDeletionsLoggedOne = "";
                System.String strDeletionsLoggedTwo = "";
                strDeletionsLoggedOne = this.Deletionslogged;
                strDeletionsLoggedTwo = _objAdrdCenteraClusterInfoItem.Deletionslogged;
                if (strDeletionsLoggedOne != strDeletionsLoggedTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strExistsAllowedOne = "";
                System.String strExistsAllowedTwo = "";
                strExistsAllowedOne = this.Existsallowed;
                strExistsAllowedTwo = _objAdrdCenteraClusterInfoItem.Existsallowed;
                if (strExistsAllowedOne != strExistsAllowedTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strQueryAllowedOne = "";
                System.String strQueryAllowedTwo = "";
                strQueryAllowedOne = this.Queryallowed;
                strQueryAllowedTwo = _objAdrdCenteraClusterInfoItem.Queryallowed;
                if (strQueryAllowedOne != strQueryAllowedTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strRetentionDefaultOne = "";
                System.String strRetentionDefaultTwo = "";
                strRetentionDefaultOne = this.Retentiondefault;
                strRetentionDefaultTwo = _objAdrdCenteraClusterInfoItem.Retentiondefault;
                if (strRetentionDefaultOne != strRetentionDefaultTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }
            try
            {
                System.String strReplicaAddressOne = "";
                System.String strReplicaAddressTwo = "";
                strReplicaAddressOne = this.Replicaaddress;
                strReplicaAddressTwo = _objAdrdCenteraClusterInfoItem.Replicaaddress;
                if (strReplicaAddressOne != strReplicaAddressTwo)
                {
                    return false;
                }
            }
            catch
            {
                return false;
            }


            return true;
        }
        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Chief Technology Officer Time Warner Cable
United States United States
Adel has over 30 years of experience in planning, architecting, developing, and implementing state of the art information technology solutions involving SOA, Microservices, Blockchain, AI, REST, DCOM, CORBA, SSO, SAML, Low Latency, High availability, IoT, Embedded Systems, Robotics, SCADA, VOIP, and OSS Technologies. He is highly technical leader with extensive hands-on experiences that cover architecting, coding, and deployment of complex IT solutions and systems with a strong passion for “all things IT”. Adel Led large cross-functional teams with diverse technical backgrounds and designed and managed all the needed budget controls and deliverables. He is having strong knowledge of financial, medical/pharmaceutical, and industrial domains. He also is having strong Agile and CMMI processes experiences.
Mr. Eddin is known in the DevOps space as a leader in the development of DevOps operations and processes, continuous integration, continuous builds, source control, infrastructure build-outs, and cloud integrations on-premises and on the cloud.
In the last 15 years, Adel led number of large cloud technologies initiatives that that include public clouds (AZURE, AWS), private on-premises cloud (VMware vSphere), and Hybrid cloud implementations (VMware vSphere). He is also recognized as a leader in the security space. He demonstrated extensive knowledge in all aspects of IT security including, but not limited to physical security, coding security, P2PE, Ciphering, and Encryption with both hard (appliance or IOT based) and soft (software code based) implementations.
He has strong background in software development life cycle, software development management, infrastructure management, and IT software and hardware “build-outs”. He also managed multi-million-dollar IT projects that covered all corners of the globe using on-shore and off-shore resources and covering a wide range of the information technology spectrum.

Comments and Discussions