16 lines
464 B
C#
Executable File
16 lines
464 B
C#
Executable File
namespace ThoughtWorks.CruiseControl.WebDashboard.MVC
|
|
{
|
|
public interface IRequest
|
|
{
|
|
string FindParameterStartingWith(string prefix);
|
|
string GetText(string id);
|
|
bool GetChecked(string id);
|
|
int GetInt(string id, int defaultValue);
|
|
string RawUrl { get; }
|
|
string FileNameWithoutExtension { get; }
|
|
string[] SubFolders { get; }
|
|
string ApplicationPath { get; }
|
|
string IfModifiedSince { get; }
|
|
string IfNoneMatch { get; }
|
|
}
|
|
} |