コード例 #1
0
ファイル: Configuration.cs プロジェクト: jiahao42/weverca
        private LibraryConfiguration(LibraryConfiguration source)
        {
            this.Highlighting = source.Highlighting.DeepCopy();
            this.Date         = source.Date.DeepCopy();
#if !SILVERLIGHT
            this.Mailer        = source.Mailer.DeepCopy();
            this.Session       = source.Session.DeepCopy();
            this.Serialization = source.Serialization.DeepCopy();
#endif
        }
コード例 #2
0
ファイル: Configuration.cs プロジェクト: jiahao42/weverca
        public LibraryConfiguration()
        {
            this.Highlighting = new HighlightingSection();
            this.Date         = new DateSection();
#if !SILVERLIGHT
            this.Mailer        = new MailerSection();
            this.Session       = new SessionSection();
            this.Serialization = new SerializationSection();
#endif
        }
コード例 #3
0
ファイル: Configuration.cs プロジェクト: dw4dev/Phalanger
        private LibraryConfiguration(LibraryConfiguration source)
        {
            this.Highlighting = source.Highlighting.DeepCopy();
            this.Date = source.Date.DeepCopy();
#if !SILVERLIGHT
            this.Mailer = source.Mailer.DeepCopy();
            this.Session = source.Session.DeepCopy();
            this.Serialization = source.Serialization.DeepCopy();
#endif
        }
コード例 #4
0
ファイル: Configuration.cs プロジェクト: dw4dev/Phalanger
        public LibraryConfiguration()
        {
            this.Highlighting = new HighlightingSection();
            this.Date = new DateSection();
#if !SILVERLIGHT
            this.Mailer = new MailerSection();
            this.Session = new SessionSection();
            this.Serialization = new SerializationSection();
#endif
        }