Esempio n. 1
0
 /// <summary>public default constructor, usefull only for property pages</summary> 
 public AtomPerson()
 {
     this.type = AtomPersonType.Author; 
 }
Esempio n. 2
0
 //////////////////////////////////////////////////////////////////////
 /// <summary>Constructor taking a type to indicate whether person is author or contributor.</summary> 
 /// <param name="type">indicates if author or contributor</param>
 //////////////////////////////////////////////////////////////////////
 public AtomPerson(AtomPersonType type)
 {
     this.type = type; 
 }
Esempio n. 3
0
        /////////////////////////////////////////////////////////////////////////////


        //////////////////////////////////////////////////////////////////////
        /// <summary>Constructor taking a type to indicate whether person is author or contributor, plus the person's name</summary> 
        /// <param name="type">indicates if author or contributor</param>
        /// <param name="name">person's name</param>
        //////////////////////////////////////////////////////////////////////
        public AtomPerson(AtomPersonType type, string name) : this(type)
        {
            this.name = name; 
        }
Esempio n. 4
0
 /// <summary>public default constructor, usefull only for property pages</summary>
 public AtomPerson()
 {
     this.type = AtomPersonType.Author;
 }
Esempio n. 5
0
        /////////////////////////////////////////////////////////////////////////////


        //////////////////////////////////////////////////////////////////////
        /// <summary>Constructor taking a type to indicate whether person is author or contributor, plus the person's name</summary>
        /// <param name="type">indicates if author or contributor</param>
        /// <param name="name">person's name</param>
        //////////////////////////////////////////////////////////////////////
        public AtomPerson(AtomPersonType type, string name) : this(type)
        {
            this.name = name;
        }
Esempio n. 6
0
 //////////////////////////////////////////////////////////////////////
 /// <summary>Constructor taking a type to indicate whether person is author or contributor.</summary>
 /// <param name="type">indicates if author or contributor</param>
 //////////////////////////////////////////////////////////////////////
 public AtomPerson(AtomPersonType type)
 {
     this.type = type;
 }
Esempio n. 7
0
        //////////////////////////////////////////////////////////////////////

        /// <summary>Constructor taking a type to indicate whether person is author or contributor.</summary>
        /// <param name="type">indicates if author or contributor</param>
        //////////////////////////////////////////////////////////////////////
        public AtomPerson(AtomPersonType type)
        {
            _type = type;
        }
Esempio n. 8
0
 /// <summary>public default constructor, usefull only for property pages</summary>
 public AtomPerson()
 {
     _type = AtomPersonType.Author;
 }