Exemplo n.º 1
0
        //Methods
        /// <summary>
        /// See the base.
        /// </summary>
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            IdentitySettings cmpSettings = obj as IdentitySettings;

            return(true);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Copy constructor
 /// </summary>
 /// <param name="source">Source instance</param>
 public IdentitySettings(IdentitySettings source)
 {
     return;
 }
Exemplo n.º 3
0
        /// <summary>
        /// Creates the deep copy instance of this instance
        /// </summary>
        public IdentitySettings DeepClone()
        {
            IdentitySettings clone = new IdentitySettings(this);

            return(clone);
        }