예제 #1
0
파일: TestHelper.cs 프로젝트: akhuang/Fluqi
		internal static void ForceRender(Cookie c)
		{
			c.Render();
		}
예제 #2
0
파일: TestHelper.cs 프로젝트: akhuang/Fluqi
		internal static Cookie SetupSimpleCookieObject(TextWriter writer) 
		{
			// nothing special, just create a simple dummy tab helper as a starting point 
			// (saves having the same code everywhere!)
			Cookie c = new Cookie(writer, "");

			return c;
		}
예제 #3
0
파일: Rendering.cs 프로젝트: xuanvu/Fluqi
		/// <summary>
		/// Constructor
		/// </summary>
		/// <param name="cookie">Cookie object to set rendering options for</param>
		public Rendering(Cookie cookie)
		 : base()
		{
			this.Cookie = cookie;
		}
예제 #4
0
		/// <summary>
		/// Constructor
		/// </summary>
		/// <param name="cookie">Cookie object the options are being defined for</param>
		public CookieOptions(Cookie cookie)
		 : base()
		{
			this.Cookie = cookie;
		}
예제 #5
0
		/// <summary>
		/// Constructor
		/// </summary>
		/// <param name="cookie">Cookie object to define options for</param>
		public Options(Cookie cookie)
		 : base()
		{
			this.Cookie = cookie;
			this.Reset();
		}