/// <summary> /// Tests if the cookie has the Secure flag /// </summary> /// <param name="more"></param> /// <param name="customMessage"></param> /// <returns></returns> public static IMore <Cookie> Secure( this ICanAddMatcher <Cookie> more, string customMessage ) { return(more.Secure(() => customMessage)); }
/// <summary> /// Tests if the cookie has the Secure flag /// </summary> /// <param name="more"></param> /// <returns></returns> public static IMore <Cookie> Secure( this ICanAddMatcher <Cookie> more ) { return(more.Secure(NULL_STRING)); }