SenseNet.Portal.Site.GetProperty C# (CSharp) Method

GetProperty() public method

public GetProperty ( string name ) : object
name string
return object
		public override object GetProperty(string name)
		{
			switch (name)
			{
				case "Description":
					return this.Description;
				case "PendingUserLang":
					return this.PendingUserLang;
				case "Language":
					return this.Language;
                case "EnableClientBasedCulture":
                    return this.EnableClientBasedCulture;
				case "UrlList":
					return this.UrlList;
				case "StartPage":
					return this.StartPage;
				case "LoginPage":
					return this.LoginPage;
                case "SiteSkin":
                    return this.SiteSkin;
                case DENYCROSSSITEACCESSPROPERTY:
                    return this.DenyCrossSiteAccess;
                //case "StatisticalLog":
                //    return this.StatisticalLog;
                //case "AuditLog":
                //    return this.AuditLog;
				default:
					return base.GetProperty(name);
			}
		}
		public override void SetProperty(string name, object value)