20 lines
336 B
C#
20 lines
336 B
C#
using System;
|
|
using System.Collections.Specialized;
|
|
using System.Web;
|
|
namespace SPSolutions.Trust
|
|
{
|
|
public interface ITrustRequest
|
|
{
|
|
bool IsValid
|
|
{
|
|
get;
|
|
}
|
|
string ValidationErrorMessage
|
|
{
|
|
get;
|
|
}
|
|
string CreateQueryString(HttpServerUtility httpUtil);
|
|
void FillFromQueryString(NameValueCollection queryString);
|
|
}
|
|
}
|