コード例 #1
0
 /// <summary>public default constructor, usefull only for property pages</summary> 
 public AtomPerson()
 {
     this.type = AtomPersonType.Author; 
 }
コード例 #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; 
 }
コード例 #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; 
        }
コード例 #4
0
 /// <summary>public default constructor, usefull only for property pages</summary>
 public AtomPerson()
 {
     this.type = AtomPersonType.Author;
 }
コード例 #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;
        }
コード例 #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;
 }
コード例 #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;
        }
コード例 #8
0
 /// <summary>public default constructor, usefull only for property pages</summary>
 public AtomPerson()
 {
     _type = AtomPersonType.Author;
 }