CodeMaid clean-up

This commit is contained in:
2016-12-21 07:27:25 +01:00
parent 577e8b4127
commit bc5c2bca6d
34 changed files with 152 additions and 175 deletions

View File

@@ -12,7 +12,7 @@ namespace VAR.Focus.Web.Code
private string _path = null;
private List<string> _files = null;
#endregion
#endregion Declarations
#region Properties
@@ -29,7 +29,7 @@ namespace VAR.Focus.Web.Code
}
}
#endregion
#endregion Properties
#region Creator
@@ -38,7 +38,7 @@ namespace VAR.Focus.Web.Code
_path = path;
}
#endregion
#endregion Creator
#region Public methods
@@ -58,6 +58,6 @@ namespace VAR.Focus.Web.Code
}
}
#endregion
#endregion Public methods
}
}
}

View File

@@ -27,7 +27,6 @@ namespace VAR.Focus.Web.Code
context.Response.Write(strObject);
}
#endregion
#endregion HttpContext
}
}

View File

@@ -40,7 +40,7 @@ namespace VAR.Focus.Web.Code
context.Response.Write(sbOutput.ToString());
}
#endregion
#endregion Private methods
#region Public methods
@@ -59,6 +59,6 @@ namespace VAR.Focus.Web.Code
}
}
#endregion
#endregion Public methods
}
}
}

View File

@@ -15,6 +15,6 @@ namespace VAR.Focus.Web.Code
bundler.WriteResponse(context.Response.OutputStream);
}
#endregion
#endregion IHttpHandler
}
}
}

View File

@@ -15,6 +15,6 @@ namespace VAR.Focus.Web.Code
bundler.WriteResponse(context.Response.OutputStream);
}
#endregion
#endregion IHttpHandler
}
}
}

View File

@@ -1,6 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using VAR.Focus.BusinessLogic;
using VAR.Focus.BusinessLogic.Entities;
@@ -16,7 +14,7 @@ namespace VAR.Focus.Web.Code
private string _cookieName = "FocusSID";
private int _cookieExpirationDays = 30;
#endregion
#endregion Declarations
#region Properties
@@ -45,7 +43,7 @@ namespace VAR.Focus.Web.Code
set { _cookieExpirationDays = value; }
}
#endregion
#endregion Properties
#region Public methods
@@ -86,7 +84,6 @@ namespace VAR.Focus.Web.Code
return true;
}
#endregion
#endregion Public methods
}
}