pUSH CHANGES

This commit is contained in:
ouellette 2022-11-17 14:32:36 -07:00
parent 580e90f6a2
commit 7e283d3d36
98 changed files with 561367 additions and 10 deletions

Binary file not shown.

View File

@ -162,7 +162,7 @@
</site>
<site name="Fab2ApprovalSystem" id="2">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Users\Ouellette\Desktop\VSProjects\Mesa_FI\Fab2ApprovalSystem\Fab2ApprovalSystem-branch-Prod20190626\Fab2ApprovalSystem" />
<virtualDirectory path="/" physicalPath="C:\Users\ouellette\Desktop\VSProjects\FabApproval\MesaFabApproval\Fab2ApprovalSystem" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:42146:localhost" />

Binary file not shown.

Binary file not shown.

View File

@ -162,7 +162,7 @@
</site>
<site name="Fab2ApprovalSystem" id="2">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Users\Ouellette\Desktop\VSProjects\Mesa_FI\Fab2ApprovalSystem\Fab2ApprovalSystem-branch-Prod20190626\Fab2ApprovalSystem" />
<virtualDirectory path="/" physicalPath="C:\Users\ouellette\Desktop\VSProjects\FabApproval\MesaFabApproval\Fab2ApprovalSystem" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:42146:localhost" />

View File

@ -28,6 +28,7 @@ namespace Fab2ApprovalSystem.Controllers
UserUtilities userDMO = new UserUtilities();
UserAccountDMO originalUserDMO = new UserAccountDMO();
TrainingDMO trainingDMO = new TrainingDMO();
MiscDMO miscDMO = new MiscDMO();
/// <summary>
@ -700,6 +701,101 @@ namespace Fab2ApprovalSystem.Controllers
}
}
public bool ApprovalsReminderNotifications()
{
try
{
//Get list of approvals
List<ApproveListModel> approveList = miscDMO.GetApprovalReminderList();
foreach (var item in approveList)
{
try
{
NotifyApprover(item.AssignedEmail, item.Title, item.IssueID, item.DocType);
}
catch(Exception e)
{
EventLogDMO.Add(new WinEventLog() { IssueID = item.ApprovalKey, UserID = "SYSTEM", DocumentType = "Approval Reminders", OperationType = "Email", Comments = e.Message });
}
//We want to update the last notification anyway so we don't continue trying on something that may be failing.
miscDMO.UpdateApprovalNotifyDate(item.ApprovalKey);
}
// List<ApproveListModel> approveList = miscDMO.
return true;
}
catch
{
return false;
}
}
public void NotifyApprover(string toEmail, string title, int issueId, string docType)
{
try
{
string emailSentList = "";
//List<string> emailIst = ldDMO.GetApproverEmailList(@issueID, currentStep).Distinct().ToList();
//List<string> emailIst = MiscDMO.GetApproverEmailListByDocument(@ecnNumber, currentStep, documentType).Distinct().ToList();
//string ecnCreatedByEmail = MiscDMO.GetEmail(ecnCreatedById);
string emailTemplate = "ApprovalReminders.txt";
string userEmail = string.Empty;
string subject = string.Empty;
string senderName = docType;
subject = docType + " Approval Reminder: " + title;
EmailNotification en = new EmailNotification(subject, ConfigurationManager.AppSettings["EmailTemplatesPath"]);
string[] emailparams = new string[4];
emailparams[0] = docType;
emailparams[1] = title;
emailparams[2] = issueId.ToString();
userEmail = toEmail;
//#if(DEBUG)
//string SenderEmail = "MesaFabApproval@infineon.com";
//userEmail = "jonathan.ouellette@infineon.com";
//#endif
en.SendNotificationEmail(emailTemplate, GlobalVars.SENDER_EMAIL, senderName, userEmail, "jonathan.ouellette@infineon.com", subject, emailparams);
//en.SendNotificationEmail(emailTemplate, SenderEmail, senderName, userEmail, null, subject, emailparams);
//emailSentList = ecnCreatedByEmail;
try
{
EventLogDMO.Add(new WinEventLog() { IssueID = issueId, UserID = @User.Identity.Name, DocumentType = docType, OperationType = "Email", Comments = "Approval reminders" });
}
catch { }
//EmailNotification en = new EmailNotification(subject, ConfigurationManager.AppSettings["EmailTemplatesPath"]);
//string[] emailparams = new string[4];
//emailparams[0] = issueID.ToString();
//emailparams[1] = issueID.ToString();
//emailparams[2] = GlobalVars.hostURL;
//emailparams[3] =Session[GlobalVars.SESSION_USERNAME].ToString();
//en.SendNotificationEmail(emailTemplate, GlobalVars.SENDER_EMAIL, senderName, emailIst, null, subject, emailparams);
}
catch (Exception e)
{
string detailedException = "";
try
{
detailedException = e.InnerException.ToString();
}
catch
{
detailedException = e.Message;
}
EventLogDMO.Add(new WinEventLog() { IssueID = issueId, UserID = @User.Identity.Name, DocumentType = docType, OperationType = "Email", Comments = "Approval reminders" });
throw e;
}
}
}
}

View File

@ -72,6 +72,15 @@ namespace Fab2ApprovalSystem.Controllers
{
return request.CreateResponse(HttpStatusCode.InternalServerError);
}
case "ApprovalReminders":
if (homeFunctions.ApprovalsReminderNotifications())
{
return request.CreateResponse(HttpStatusCode.OK);
}
else
{
return request.CreateResponse(HttpStatusCode.InternalServerError);
}
default:
return request.CreateResponse(HttpStatusCode.InternalServerError, "Action Not Found");

View File

@ -13,7 +13,7 @@ using Fab2ApprovalSystem.ViewModels;
namespace Fab2ApprovalSystem.DMO
{
public static class MiscDMO
public class MiscDMO
{
/// <summary>
@ -626,7 +626,20 @@ namespace Fab2ApprovalSystem.DMO
return data;
}
public List<ApproveListModel> GetApprovalReminderList()
{
IDbConnection db = new SqlConnection(ConfigurationManager.ConnectionStrings["FabApprovalConnection"].ConnectionString);
var approvals = db.Query<ApproveListModel>("GetApprovalForNotifcation", null, commandType: CommandType.StoredProcedure).ToList();
return approvals;
}
public void UpdateApprovalNotifyDate(int approvalId)
{
IDbConnection db = new SqlConnection(ConfigurationManager.ConnectionStrings["FabApprovalConnection"].ConnectionString);
var parameters = new DynamicParameters();
parameters.Add("@ApprovalId", approvalId);
db.Query<CredentialsStorage>("UpdateApprovalLastNotifyDate", param: parameters, commandType: CommandType.StoredProcedure).Single();
//return data;
}
//================================================================== End of Class
}
}

View File

@ -0,0 +1,24 @@
<font size="2" face="verdana">
*****Please DO NOT reply to this email*****
<br/><br/>
This is a reminder that you have an Approval waiting for you to review.
<br/><br/>
Please log on to the Mesa Approval website to view the assignment and act accordingly.
<br/><br/>
Document Type: {0}
<br/>
Title: {1}
<br/>
<br/>
http://messa016ec.ec.local:8021/{0}/Edit?IssueID={2}
<br/><br/>
If you have any questions or trouble logging on please contact a site administrator.
<br/><br/>
Thank you!
</font>

View File

@ -54,11 +54,11 @@
<HintPath>..\..\..\..\Utilities\SSRSHelper\Release\DocumentFormat.OpenXml.dll</HintPath>
</Reference>
<Reference Include="Kendo.Mvc">
<HintPath>D:\Fab2ApprovalSystem\Kendo.Mvc.dll</HintPath>
<HintPath>..\Kendo\Mvc5\Kendo.Mvc.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="SSRSHelper">
<HintPath>D:\Fab2ApprovalSystem\SSRSHelper.dll</HintPath>
<HintPath>..\references\SSRSHelper.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
@ -146,6 +146,7 @@
<Compile Include="Models\AllUserModel.cs" />
<Compile Include="Models\ApprovalLog.cs" />
<Compile Include="Models\ApprovalLogHistory.cs" />
<Compile Include="Models\ApproveListModel.cs" />
<Compile Include="Models\ChangeControlModel.cs" />
<Compile Include="Models\Common.cs" />
<Compile Include="Models\C_8DAuditedStandard.cs">
@ -338,6 +339,7 @@
<Content Include="Content\kendo\kendo.rtl.min.css" />
<Content Include="Content\kendo\kendo.silver.min.css" />
<Content Include="Content\kendo\kendo.uniform.min.css" />
<Content Include="EmailTemplates\ApprovalReminders.txt" />
<Content Include="EmailTemplates\CorrectiveActionAICompleted.txt" />
<Content Include="EmailTemplates\CorrectiveActionCompleted.txt" />
<Content Include="EmailTemplates\CorrectiveActionSectionApproved.txt" />

View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Fab2ApprovalSystem.Models
{
public class ApproveListModel
{
public int ApprovalKey { get; set; }
public int IssueID { get; set; }
public string AssignedName { get; set; }
public string AssignedEmail { get; set; }
public string AssignedFullName { get; set; }
public DateTime LastNotification { get; set; }
public DateTime AssignedDate { get; set; }
public DateTime RoleAssignedDate { get; set; }
public string DocType { get; set; }
public string Title { get; set; }
}
}

View File

@ -7,12 +7,12 @@ by editing this MSBuild file. In order to learn more about this please visit htt
<PropertyGroup>
<WebPublishMethod>FileSystem</WebPublishMethod>
<PublishProvider>FileSystem</PublishProvider>
<LastUsedBuildConfiguration>Debug</LastUsedBuildConfiguration>
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
<LastUsedPlatform>Any CPU</LastUsedPlatform>
<SiteUrlToLaunchAfterPublish />
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
<ExcludeApp_Data>False</ExcludeApp_Data>
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
<ExcludeApp_Data>false</ExcludeApp_Data>
<publishUrl>C:\Users\Ouellette\Desktop\FabApprovalDeployDev</publishUrl>
<DeleteExistingFiles>True</DeleteExistingFiles>
<DeleteExistingFiles>true</DeleteExistingFiles>
</PropertyGroup>
</Project>

Binary file not shown.

Binary file not shown.

BIN
references/Dapper.dll Normal file

Binary file not shown.

BIN
references/Dapper.pdb Normal file

Binary file not shown.

831
references/Dapper.xml Normal file
View File

@ -0,0 +1,831 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Dapper</name>
</assembly>
<members>
<member name="T:Dapper.SqlMapper">
<summary>
Dapper, a light weight object mapper for ADO.NET
</summary>
</member>
<member name="M:Dapper.SqlMapper.PurgeQueryCache">
<summary>
Purge the query cache
</summary>
</member>
<member name="M:Dapper.SqlMapper.GetCachedSQLCount">
<summary>
Return a count of all the cached queries by dapper
</summary>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.GetCachedSQL(System.Int32)">
<summary>
Return a list of all the queries cached by dapper
</summary>
<param name="ignoreHitCountAbove"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.GetHashCollissions">
<summary>
Deep diagnostics only: find any hash collisions in the cache
</summary>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.AddTypeMap(System.Type,System.Data.DbType)">
<summary>
Configire the specified type to be mapped to a given db-type
</summary>
</member>
<member name="M:Dapper.SqlMapper.Execute(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute parameterized SQL
</summary>
<returns>Number of rows affected</returns>
</member>
<member name="M:Dapper.SqlMapper.Query(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Return a list of dynamic objects, reader is closed after the call
</summary>
</member>
<member name="M:Dapper.SqlMapper.Query``1(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Executes a query, returning the data typed as per T
</summary>
<remarks>the dynamic param may seem a bit odd, but this works around a major usability issue in vs, if it is Object vs completion gets annoying. Eg type new [space] get new object</remarks>
<returns>A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
</returns>
</member>
<member name="M:Dapper.SqlMapper.QueryMultiple(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a command that returns multiple result sets, and access each in turn
</summary>
</member>
<member name="M:Dapper.SqlMapper.QueryInternal``1(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Return a typed list of objects, reader is closed after the call
</summary>
</member>
<member name="M:Dapper.SqlMapper.Query``3(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Maps a query to objects
</summary>
<typeparam name="TFirst">The first type in the recordset</typeparam>
<typeparam name="TSecond">The second type in the recordset</typeparam>
<typeparam name="TReturn">The return type</typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn">The Field we should split and read the second object from (default: id)</param>
<param name="commandTimeout">Number of seconds before command execution timeout</param>
<param name="commandType">Is it a stored proc or a batch?</param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.Query``4(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Maps a query to objects
</summary>
<typeparam name="TFirst"></typeparam>
<typeparam name="TSecond"></typeparam>
<typeparam name="TThird"></typeparam>
<typeparam name="TReturn"></typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn">The Field we should split and read the second object from (default: id)</param>
<param name="commandTimeout">Number of seconds before command execution timeout</param>
<param name="commandType"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.Query``5(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a multi mapping query with 4 input parameters
</summary>
<typeparam name="TFirst"></typeparam>
<typeparam name="TSecond"></typeparam>
<typeparam name="TThird"></typeparam>
<typeparam name="TFourth"></typeparam>
<typeparam name="TReturn"></typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn"></param>
<param name="commandTimeout"></param>
<param name="commandType"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.Query``6(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4,``5},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a multi mapping query with 5 input parameters
</summary>
<typeparam name="TFirst"></typeparam>
<typeparam name="TSecond"></typeparam>
<typeparam name="TThird"></typeparam>
<typeparam name="TFourth"></typeparam>
<typeparam name="TFifth"></typeparam>
<typeparam name="TReturn"></typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn"></param>
<param name="commandTimeout"></param>
<param name="commandType"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.Query``7(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4,``5,``6},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a multi mapping query with 6 input parameters
</summary>
<typeparam name="TFirst"></typeparam>
<typeparam name="TSecond"></typeparam>
<typeparam name="TThird"></typeparam>
<typeparam name="TFourth"></typeparam>
<typeparam name="TFifth"></typeparam>
<typeparam name="TSixth"></typeparam>
<typeparam name="TReturn"></typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn"></param>
<param name="commandTimeout"></param>
<param name="commandType"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.Query``8(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4,``5,``6,``7},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a multi mapping query with 7 input parameters
</summary>
<typeparam name="TFirst"></typeparam>
<typeparam name="TSecond"></typeparam>
<typeparam name="TThird"></typeparam>
<typeparam name="TFourth"></typeparam>
<typeparam name="TFifth"></typeparam>
<typeparam name="TSixth"></typeparam>
<typeparam name="TSeventh"></typeparam>
<typeparam name="TReturn"></typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn"></param>
<param name="commandTimeout"></param>
<param name="commandType"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.ReadChar(System.Object)">
<summary>
Internal use only
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.ReadNullableChar(System.Object)">
<summary>
Internal use only
</summary>
</member>
<member name="M:Dapper.SqlMapper.FindOrAddParameter(System.Data.IDataParameterCollection,System.Data.IDbCommand,System.String)">
<summary>
Internal use only
</summary>
</member>
<member name="M:Dapper.SqlMapper.PackListParameters(System.Data.IDbCommand,System.String,System.Object)">
<summary>
Internal use only
</summary>
</member>
<member name="M:Dapper.SqlMapper.CreateParamInfoGenerator(Dapper.SqlMapper.Identity,System.Boolean)">
<summary>
Internal use only
</summary>
</member>
<member name="M:Dapper.SqlMapper.GetTypeMap(System.Type)">
<summary>
Gets type-map for the given type
</summary>
<returns>Type map implementation, DefaultTypeMap instance if no override present</returns>
</member>
<member name="M:Dapper.SqlMapper.SetTypeMap(System.Type,Dapper.SqlMapper.ITypeMap)">
<summary>
Set custom mapping for type deserializers
</summary>
<param name="type">Entity type to override</param>
<param name="map">Mapping rules impementation, null to remove custom map</param>
</member>
<member name="M:Dapper.SqlMapper.GetTypeDeserializer(System.Type,System.Data.IDataReader,System.Int32,System.Int32,System.Boolean)">
<summary>
Internal use only
</summary>
<param name="type"></param>
<param name="reader"></param>
<param name="startBound"></param>
<param name="length"></param>
<param name="returnNullIfFirstMissing"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.ThrowDataException(System.Exception,System.Int32,System.Data.IDataReader)">
<summary>
Throws a data exception, only used internally
</summary>
<param name="ex"></param>
<param name="index"></param>
<param name="reader"></param>
</member>
<member name="M:Dapper.SqlMapper.QueryAsync``1(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Execute a query asynchronously using .NET 4.5 Task.
</summary>
</member>
<member name="M:Dapper.SqlMapper.QueryAsync``3(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Maps a query to objects
</summary>
<typeparam name="TFirst">The first type in the recordset</typeparam>
<typeparam name="TSecond">The second type in the recordset</typeparam>
<typeparam name="TReturn">The return type</typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn">The Field we should split and read the second object from (default: id)</param>
<param name="commandTimeout">Number of seconds before command execution timeout</param>
<param name="commandType">Is it a stored proc or a batch?</param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.QueryAsync``4(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Maps a query to objects
</summary>
<typeparam name="TFirst"></typeparam>
<typeparam name="TSecond"></typeparam>
<typeparam name="TThird"></typeparam>
<typeparam name="TReturn"></typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn">The Field we should split and read the second object from (default: id)</param>
<param name="commandTimeout">Number of seconds before command execution timeout</param>
<param name="commandType"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.QueryAsync``5(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a multi mapping query with 4 input parameters
</summary>
<typeparam name="TFirst"></typeparam>
<typeparam name="TSecond"></typeparam>
<typeparam name="TThird"></typeparam>
<typeparam name="TFourth"></typeparam>
<typeparam name="TReturn"></typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn"></param>
<param name="commandTimeout"></param>
<param name="commandType"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.QueryAsync``6(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4,``5},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a multi mapping query with 5 input parameters
</summary>
<typeparam name="TFirst"></typeparam>
<typeparam name="TSecond"></typeparam>
<typeparam name="TThird"></typeparam>
<typeparam name="TFourth"></typeparam>
<typeparam name="TFifth"></typeparam>
<typeparam name="TReturn"></typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn"></param>
<param name="commandTimeout"></param>
<param name="commandType"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.QueryAsync``7(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4,``5,``6},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a multi mapping query with 6 input parameters
</summary>
<typeparam name="TFirst"></typeparam>
<typeparam name="TSecond"></typeparam>
<typeparam name="TThird"></typeparam>
<typeparam name="TFourth"></typeparam>
<typeparam name="TFifth"></typeparam>
<typeparam name="TSixth"></typeparam>
<typeparam name="TReturn"></typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn"></param>
<param name="commandTimeout"></param>
<param name="commandType"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.QueryAsync``8(System.Data.IDbConnection,System.String,System.Func{``0,``1,``2,``3,``4,``5,``6,``7},System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
<summary>
Perform a multi mapping query with 7 input parameters
</summary>
<typeparam name="TFirst"></typeparam>
<typeparam name="TSecond"></typeparam>
<typeparam name="TThird"></typeparam>
<typeparam name="TFourth"></typeparam>
<typeparam name="TFifth"></typeparam>
<typeparam name="TSixth"></typeparam>
<typeparam name="TSeventh"></typeparam>
<typeparam name="TReturn"></typeparam>
<param name="cnn"></param>
<param name="sql"></param>
<param name="map"></param>
<param name="param"></param>
<param name="transaction"></param>
<param name="buffered"></param>
<param name="splitOn"></param>
<param name="commandTimeout"></param>
<param name="commandType"></param>
<returns></returns>
</member>
<member name="E:Dapper.SqlMapper.QueryCachePurged">
<summary>
Called if the query cache is purged via PurgeQueryCache
</summary>
</member>
<member name="P:Dapper.SqlMapper.ConnectionStringComparer">
<summary>
How should connection strings be compared for equivalence? Defaults to StringComparer.Ordinal.
Providing a custom implementation can be useful for allowing multi-tenancy databases with identical
schema to share startegies. Note that usual equivalence rules apply: any equivalent connection strings
<b>MUST</b> yield the same hash-code.
</summary>
</member>
<member name="T:Dapper.SqlMapper.IDynamicParameters">
<summary>
Implement this interface to pass an arbitrary db specific set of parameters to Dapper
</summary>
</member>
<member name="M:Dapper.SqlMapper.IDynamicParameters.AddParameters(System.Data.IDbCommand,Dapper.SqlMapper.Identity)">
<summary>
Add all the parameters needed to the command just before it executes
</summary>
<param name="command">The raw command prior to execution</param>
<param name="identity">Information about the query</param>
</member>
<member name="T:Dapper.SqlMapper.ICustomQueryParameter">
<summary>
Implement this interface to pass an arbitrary db specific parameter to Dapper
</summary>
</member>
<member name="M:Dapper.SqlMapper.ICustomQueryParameter.AddParameter(System.Data.IDbCommand,System.String)">
<summary>
Add the parameter needed to the command before it executes
</summary>
<param name="command">The raw command prior to execution</param>
<param name="name">Parameter name</param>
</member>
<member name="T:Dapper.SqlMapper.ITypeMap">
<summary>
Implement this interface to change default mapping of reader columns to type memebers
</summary>
</member>
<member name="M:Dapper.SqlMapper.ITypeMap.FindConstructor(System.String[],System.Type[])">
<summary>
Finds best constructor
</summary>
<param name="names">DataReader column names</param>
<param name="types">DataReader column types</param>
<returns>Matching constructor or default one</returns>
</member>
<member name="M:Dapper.SqlMapper.ITypeMap.GetConstructorParameter(System.Reflection.ConstructorInfo,System.String)">
<summary>
Gets mapping for constructor parameter
</summary>
<param name="constructor">Constructor to resolve</param>
<param name="columnName">DataReader column name</param>
<returns>Mapping implementation</returns>
</member>
<member name="M:Dapper.SqlMapper.ITypeMap.GetMember(System.String)">
<summary>
Gets member mapping for column
</summary>
<param name="columnName">DataReader column name</param>
<returns>Mapping implementation</returns>
</member>
<member name="T:Dapper.SqlMapper.IMemberMap">
<summary>
Implements this interface to provide custom member mapping
</summary>
</member>
<member name="P:Dapper.SqlMapper.IMemberMap.ColumnName">
<summary>
Source DataReader column name
</summary>
</member>
<member name="P:Dapper.SqlMapper.IMemberMap.MemberType">
<summary>
Target member type
</summary>
</member>
<member name="P:Dapper.SqlMapper.IMemberMap.Property">
<summary>
Target property
</summary>
</member>
<member name="P:Dapper.SqlMapper.IMemberMap.Field">
<summary>
Target field
</summary>
</member>
<member name="P:Dapper.SqlMapper.IMemberMap.Parameter">
<summary>
Target constructor parameter
</summary>
</member>
<member name="T:Dapper.SqlMapper.Link`2">
<summary>
This is a micro-cache; suitable when the number of terms is controllable (a few hundred, for example),
and strictly append-only; you cannot change existing values. All key matches are on **REFERENCE**
equality. The type is fully thread-safe.
</summary>
</member>
<member name="T:Dapper.SqlMapper.Identity">
<summary>
Identity of a cached query in Dapper, used for extensability
</summary>
</member>
<member name="M:Dapper.SqlMapper.Identity.ForDynamicParameters(System.Type)">
<summary>
Create an identity for use with DynamicParameters, internal use only
</summary>
<param name="type"></param>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.Identity.Equals(System.Object)">
<summary>
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="F:Dapper.SqlMapper.Identity.sql">
<summary>
The sql
</summary>
</member>
<member name="F:Dapper.SqlMapper.Identity.commandType">
<summary>
The command type
</summary>
</member>
<member name="F:Dapper.SqlMapper.Identity.hashCode">
<summary>
</summary>
</member>
<member name="F:Dapper.SqlMapper.Identity.gridIndex">
<summary>
</summary>
</member>
<member name="F:Dapper.SqlMapper.Identity.type">
<summary>
</summary>
</member>
<member name="F:Dapper.SqlMapper.Identity.connectionString">
<summary>
</summary>
</member>
<member name="F:Dapper.SqlMapper.Identity.parametersType">
<summary>
</summary>
</member>
<member name="M:Dapper.SqlMapper.Identity.GetHashCode">
<summary>
</summary>
<returns></returns>
</member>
<member name="M:Dapper.SqlMapper.Identity.Equals(Dapper.SqlMapper.Identity)">
<summary>
Compare 2 Identity objects
</summary>
<param name="other"></param>
<returns></returns>
</member>
<member name="T:Dapper.SqlMapper.GridReader">
<summary>
The grid reader provides interfaces for reading multiple result sets from a Dapper query
</summary>
</member>
<member name="M:Dapper.SqlMapper.GridReader.Read(System.Boolean)">
<summary>
Read the next grid of results, returned as a dynamic object
</summary>
</member>
<member name="M:Dapper.SqlMapper.GridReader.Read``1(System.Boolean)">
<summary>
Read the next grid of results
</summary>
</member>
<member name="M:Dapper.SqlMapper.GridReader.Read``3(System.Func{``0,``1,``2},System.String,System.Boolean)">
<summary>
Read multiple objects from a single recordset on the grid
</summary>
</member>
<member name="M:Dapper.SqlMapper.GridReader.Read``4(System.Func{``0,``1,``2,``3},System.String,System.Boolean)">
<summary>
Read multiple objects from a single recordset on the grid
</summary>
</member>
<member name="M:Dapper.SqlMapper.GridReader.Read``5(System.Func{``0,``1,``2,``3,``4},System.String,System.Boolean)">
<summary>
Read multiple objects from a single record set on the grid
</summary>
</member>
<member name="M:Dapper.SqlMapper.GridReader.Read``6(System.Func{``0,``1,``2,``3,``4,``5},System.String,System.Boolean)">
<summary>
Read multiple objects from a single record set on the grid
</summary>
</member>
<member name="M:Dapper.SqlMapper.GridReader.Read``7(System.Func{``0,``1,``2,``3,``4,``5,``6},System.String,System.Boolean)">
<summary>
Read multiple objects from a single record set on the grid
</summary>
</member>
<member name="M:Dapper.SqlMapper.GridReader.Read``8(System.Func{``0,``1,``2,``3,``4,``5,``6,``7},System.String,System.Boolean)">
<summary>
Read multiple objects from a single record set on the grid
</summary>
</member>
<member name="M:Dapper.SqlMapper.GridReader.Dispose">
<summary>
Dispose the grid, closing and disposing both the underlying reader and command.
</summary>
</member>
<member name="T:Dapper.DynamicParameters">
<summary>
A bag of parameters that can be passed to the Dapper Query and Execute methods
</summary>
</member>
<member name="M:Dapper.DynamicParameters.#ctor">
<summary>
construct a dynamic parameter bag
</summary>
</member>
<member name="M:Dapper.DynamicParameters.#ctor(System.Object)">
<summary>
construct a dynamic parameter bag
</summary>
<param name="template">can be an anonymous type or a DynamicParameters bag</param>
</member>
<member name="M:Dapper.DynamicParameters.AddDynamicParams(System.Object)">
<summary>
Append a whole object full of params to the dynamic
EG: AddDynamicParams(new {A = 1, B = 2}) // will add property A and B to the dynamic
</summary>
<param name="param"></param>
</member>
<member name="M:Dapper.DynamicParameters.Add(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32})">
<summary>
Add a parameter to this dynamic parameter list
</summary>
<param name="name"></param>
<param name="value"></param>
<param name="dbType"></param>
<param name="direction"></param>
<param name="size"></param>
</member>
<member name="M:Dapper.DynamicParameters.AddParameters(System.Data.IDbCommand,Dapper.SqlMapper.Identity)">
<summary>
Add all the parameters needed to the command just before it executes
</summary>
<param name="command">The raw command prior to execution</param>
<param name="identity">Information about the query</param>
</member>
<member name="M:Dapper.DynamicParameters.Get``1(System.String)">
<summary>
Get the value of a parameter
</summary>
<typeparam name="T"></typeparam>
<param name="name"></param>
<returns>The value, note DBNull.Value is not returned, instead the value is returned as null</returns>
</member>
<member name="P:Dapper.DynamicParameters.ParameterNames">
<summary>
All the names of the param in the bag, use Get to yank them out
</summary>
</member>
<member name="T:Dapper.DbString">
<summary>
This class represents a SQL string, it can be used if you need to denote your parameter is a Char vs VarChar vs nVarChar vs nChar
</summary>
</member>
<member name="M:Dapper.DbString.#ctor">
<summary>
Create a new DbString
</summary>
</member>
<member name="M:Dapper.DbString.AddParameter(System.Data.IDbCommand,System.String)">
<summary>
Add the parameter to the command... internal use only
</summary>
<param name="command"></param>
<param name="name"></param>
</member>
<member name="P:Dapper.DbString.IsAnsi">
<summary>
Ansi vs Unicode
</summary>
</member>
<member name="P:Dapper.DbString.IsFixedLength">
<summary>
Fixed length
</summary>
</member>
<member name="P:Dapper.DbString.Length">
<summary>
Length of the string -1 for max
</summary>
</member>
<member name="P:Dapper.DbString.Value">
<summary>
The value of the string
</summary>
</member>
<member name="T:Dapper.FeatureSupport">
<summary>
Handles variances in features per DBMS
</summary>
</member>
<member name="F:Dapper.FeatureSupport.FeatureList">
<summary>
Dictionary of supported features index by connection type name
</summary>
</member>
<member name="M:Dapper.FeatureSupport.Get(System.Data.IDbConnection)">
<summary>
Gets the featureset based on the passed connection
</summary>
</member>
<member name="P:Dapper.FeatureSupport.Arrays">
<summary>
True if the db supports array columns e.g. Postgresql
</summary>
</member>
<member name="T:Dapper.SimpleMemberMap">
<summary>
Represents simple memeber map for one of target parameter or property or field to source DataReader column
</summary>
</member>
<member name="M:Dapper.SimpleMemberMap.#ctor(System.String,System.Reflection.PropertyInfo)">
<summary>
Creates instance for simple property mapping
</summary>
<param name="columnName">DataReader column name</param>
<param name="property">Target property</param>
</member>
<member name="M:Dapper.SimpleMemberMap.#ctor(System.String,System.Reflection.FieldInfo)">
<summary>
Creates instance for simple field mapping
</summary>
<param name="columnName">DataReader column name</param>
<param name="field">Target property</param>
</member>
<member name="M:Dapper.SimpleMemberMap.#ctor(System.String,System.Reflection.ParameterInfo)">
<summary>
Creates instance for simple constructor parameter mapping
</summary>
<param name="columnName">DataReader column name</param>
<param name="parameter">Target constructor parameter</param>
</member>
<member name="P:Dapper.SimpleMemberMap.ColumnName">
<summary>
DataReader column name
</summary>
</member>
<member name="P:Dapper.SimpleMemberMap.MemberType">
<summary>
Target member type
</summary>
</member>
<member name="P:Dapper.SimpleMemberMap.Property">
<summary>
Target property
</summary>
</member>
<member name="P:Dapper.SimpleMemberMap.Field">
<summary>
Target field
</summary>
</member>
<member name="P:Dapper.SimpleMemberMap.Parameter">
<summary>
Target constructor parameter
</summary>
</member>
<member name="T:Dapper.DefaultTypeMap">
<summary>
Represents default type mapping strategy used by Dapper
</summary>
</member>
<member name="M:Dapper.DefaultTypeMap.#ctor(System.Type)">
<summary>
Creates default type map
</summary>
<param name="type">Entity type</param>
</member>
<member name="M:Dapper.DefaultTypeMap.FindConstructor(System.String[],System.Type[])">
<summary>
Finds best constructor
</summary>
<param name="names">DataReader column names</param>
<param name="types">DataReader column types</param>
<returns>Matching constructor or default one</returns>
</member>
<member name="M:Dapper.DefaultTypeMap.GetConstructorParameter(System.Reflection.ConstructorInfo,System.String)">
<summary>
Gets mapping for constructor parameter
</summary>
<param name="constructor">Constructor to resolve</param>
<param name="columnName">DataReader column name</param>
<returns>Mapping implementation</returns>
</member>
<member name="M:Dapper.DefaultTypeMap.GetMember(System.String)">
<summary>
Gets member mapping for column
</summary>
<param name="columnName">DataReader column name</param>
<returns>Mapping implementation</returns>
</member>
<member name="T:Dapper.CustomPropertyTypeMap">
<summary>
Implements custom property mapping by user provided criteria (usually presence of some custom attribute with column to member mapping)
</summary>
</member>
<member name="M:Dapper.CustomPropertyTypeMap.#ctor(System.Type,System.Func{System.Type,System.String,System.Reflection.PropertyInfo})">
<summary>
Creates custom property mapping
</summary>
<param name="type">Target entity type</param>
<param name="propertySelector">Property selector based on target type and DataReader column name</param>
</member>
<member name="M:Dapper.CustomPropertyTypeMap.FindConstructor(System.String[],System.Type[])">
<summary>
Always returns default constructor
</summary>
<param name="names">DataReader column names</param>
<param name="types">DataReader column types</param>
<returns>Default constructor</returns>
</member>
<member name="M:Dapper.CustomPropertyTypeMap.GetConstructorParameter(System.Reflection.ConstructorInfo,System.String)">
<summary>
Not impelmeneted as far as default constructor used for all cases
</summary>
<param name="constructor"></param>
<param name="columnName"></param>
<returns></returns>
</member>
<member name="M:Dapper.CustomPropertyTypeMap.GetMember(System.String)">
<summary>
Returns property based on selector strategy
</summary>
<param name="columnName">DataReader column name</param>
<returns>Poperty member map</returns>
</member>
</members>
</doc>

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,11 @@
<font size="2" face="verdana">
*****Please DO NOT reply to this email*****
<br/><br/>
ECN# {1} was Approved.
<br/><br/>
{2}/ECN/Edit?issueID={1}
<br/><br/>
Thank you!
</font>

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

104750
references/EntityFramework.xml Normal file

File diff suppressed because it is too large Load Diff

BIN
references/Excel.dll Normal file

Binary file not shown.

BIN
references/Excel.pdb Normal file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=301880
-->
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<!--<add name="DefaultConnection" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\aspnet-Fab2ApprovalSystem-20140120033121.mdf;Initial Catalog=aspnet-Fab2ApprovalSystem-20140120033121;Integrated Security=True;User Instance=True"
providerName="System.Data.SqlClient" />-->
<!--<add name="FabApprovalConnection" connectionString="Data Source=TEMSQLEC1.EC.Local\Prod1;Integrated Security=False;Initial Catalog=FabApprovalSystem;User ID=TEM_FI_DBAdmin;Password=90!2017-Tuesday27Vq;Connect Timeout=15;Encrypt=False;TrustServerCertificate=False"
providerName="System.Data.SqlClient" />-->
<!--<add name="FabApprovalConnection" connectionString="Data Source=TEMTSV01EC.ec.local\Test1,49651;Integrated Security=False;Initial Catalog=FabApprovalSystem_Test;User ID=dbreaderwriterFABApproval;Password=90!2017-Tuesday27Vq;Connect Timeout=15;Encrypt=False;TrustServerCertificate=False"
providerName="System.Data.SqlClient" />-->
<add name="FabApprovalConnection" connectionString="Data Source=Messv01ec.ec.local\PROD1,53959;Integrated Security=False;Initial Catalog=FabApprovalSystem;User ID=MES_FI_DBAdmin;Password=Takeittothelimit1;Connect Timeout=15;Encrypt=False;TrustServerCertificate=False"
providerName="System.Data.SqlClient" />
<!--<add name="FabApprovalConnection" connectionString="Data Source=TEMTSV01EC.ec.local\Test1,49651;Integrated Security=False;Initial Catalog=FabApprovalSystem_Quality;User ID=dbreaderwriterFABApproval;Password=90!2017-Tuesday27Vq;Connect Timeout=15;Encrypt=False;TrustServerCertificate=False"
providerName="System.Data.SqlClient" />-->
<!--<add name="FabApprovalConnectionProd" connectionString="Data Source=TEMSQLEC1.EC.Local\Prod1;Integrated Security=False;Initial Catalog=FabApprovalStaging;User ID=dbreaderwriterFABApproval;Password=90!2017-Tuesday27Vq;Connect Timeout=15;Encrypt=False;TrustServerCertificate=False"
providerName="System.Data.SqlClient" />-->
<add name="ADConnectionString" connectionString="LDAP://irworld.irf.com/DC=irworld,DC=irf,DC=com" providerName="" />
<!--<add name="ADConnectionString" connectionString="LDAP://elssrec01.ec.local/DC=ec,DC=local" providerName="" />-->
<add name="NA_ADConnectionString" connectionString="LDAP://na.infineon.com/DC=na,DC=infineon,DC=com" providerName="" />
<!--<add name="SAMDBConnectionString" connectionString="data Source=TEM-CDB02.IRWORLD.IRF.COM\TEMSQL02;Integrated Security=True;Initial Catalog=SAM;Persist Security Info=True"
providerName="System.Data.SqlClient" />-->
</connectionStrings>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="EmailTemplatesPath" value="~/EmailTemplates/" />
<add key="FTP Server" value="10.72.124.25" />
<!--<add key="FTP User" value="batch.fab2,mrb" />-->
<add key="FTP User" value="batch.spnjn,mrb" />
<add key="FTP Password" value="" />
<add key="FTPSPNBatchFileName" value="FTPSPNFab2.bat"/>
<add key="FTPSPNBatchFileName_Test" value="FTPSPNFab2_Test.bat"/>
<add key="WSR_URL" value="temsa09ec.ec.local:5551"/>
<add key="NDrive" value="temsdv002.infineon.com"/>
<add key="CA_BlankFormsLocation" value="temsdv002.infineon.com/QA/4-PA-CA-8D/0-8dFORMs"/>
<add key="Admin Notification Recepient" value="MesaFabApproval@infineon.com"/>
<add key="Notification Sender" value="MesaFabApproval@infineon.com"/>
<add key="AttachmentFolderTest" value="D:\Websites\Fab2ApprovalAttachmentsTest\"/>
<add key="AttachmentFolder" value="D:\Websites\FabApprovalAttachments\"/>
<!--<add key="AttachmentFolder" value="C:\Websites\FabApprovalAttachments\"/>-->
<add key="HoldFlagDirectory" value="D:\Websites\SPNLotHoldFlag\"/>
<add key="SPNMRBHoldFlagDirectory" value="D:\Websites\SPNMRBHoldFlag\"/>
<add key="SPNMRBHoldFlagFTPLogDirectory" value="D:\Websites\SPNMRBHoldFlagFTPLog\"/>
<add key="LotTempPipeLine" value="D:\Websites\FabApprovalTempPipeLine\"/>
<add key="DevWebSiteURL" value="temsa01ec.ec.local:8022"/>
<add key="ProdWebSiteURL" value="messa016ec.ec.local:8021"/>
<!--<add key="ECDomain" value="TEMSCEC01.ec.local"/>-->
<add key="ECDomain" value="ELSSREC01.ec.local"/>
<add key="ECADGroup" value="EC-MES-ALL-Users-R-L"/>
<add key="NADomain" value="na.infineon.com"/>
<add key="NAContainer" value="DC=na,DC=infineon,DC=com"/>
<add key="IFXDomain" value="infineon.com"/>
<add key="IFXContainer" value="DC=infineon,DC=com"/>
<add key="SSRSBaseURL" value="http://temsv04ec.ec.local/reportserver/" />
<add key="SSRSDomain" value="EC" />
<add key="SSRSUsername" value="ECTEMSSRS" />
<add key="SSRSPassword" value="NewECPwd11052018!" />
<!--<add key="SSRSUsername" value="rkotian1" />
<add key="SSRSPassword" value="" />-->
<add key="SSRSFolder" value="/Fab2Approval/Test/" />
<add key="SSRSBindingsByConfiguration" value="false" />
</appSettings>
<system.net>
<mailSettings>
<smtp deliveryMethod="Network">
<!--<network host="SMTP.INTRA.INFINEON.COM" port="25" defaultCredentials="true" />-->
<network host="mailrelay-external.infineon.com" port="25" defaultCredentials="true" />
</smtp>
</mailSettings>
</system.net>
<system.web>
<authentication mode="Forms">
<forms loginUrl="~/Account/Login" timeout="86400"/>
</authentication>
<sessionState mode="InProc" timeout="86400" />
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" maxRequestLength="1048576" requestValidationMode="2.0" />
<membership>
<providers>
<!--<add name="ADMembershipProvider"
applicationName="Fab2ApprovalSystem"
type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="ADConnectionString"
connectionUsername="irworld\temsql01"
connectionPassword="a2z808t"
attributeMapUsername="sAMAccountName"
attributeMapEmail="mail"
enableSearchMethods="true"
connectionProtection="Secure" />
<add name="NA_ADMembershipProvider"
applicationName="Fab2ApprovalSystem"
type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="NA_ADConnectionString"
connectionUsername="IRWORLD\TEMSQL01"
connectionPassword="a2z808t"
attributeMapUsername="sAMAccountName"
attributeMapEmail="mail"
enableSearchMethods="true"
connectionProtection="Secure" />-->
</providers>
</membership>
</system.web>
<system.webServer>
<modules>
<remove name="FormsAuthenticationModule" />
</modules>
<security>
<requestFiltering>
<!-- The content length is in bytes -->
<requestLimits maxAllowedContentLength="1073741824"/>
</requestFiltering>
</security>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<!--<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>-->
</configuration>

Binary file not shown.

Binary file not shown.

BIN
references/Kendo.Mvc.dll Normal file

Binary file not shown.

47100
references/Kendo.Mvc.xml Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,646 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.AspNet.Identity.Core</name>
</assembly>
<members>
<member name="T:Microsoft.AspNet.Identity.IdentityConfig">
<summary>Static class to hold configuration settings for the Identity system</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityConfig.Settings">
<summary>Settings class which holds the various options for the system</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IdentityManager">
<summary>Helper class which contains methods that encapsulate common unit of work functionality on an IdentityStoreContext, i.e. ChangePasswordAsync or CreateLocalUserAsync and takes care of calling SaveChangesAsync</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityManager.#ctor(Microsoft.AspNet.Identity.IdentitySettings,Microsoft.AspNet.Identity.IIdentityStore)">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityManager.#ctor(Microsoft.AspNet.Identity.IIdentityStore)">
<summary>Constructor that uses the default settings</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityManager.Dispose">
<summary>Dispose the store context</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityManager.Dispose(System.Boolean)">
<summary>When disposing, actually dipose the store context</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityManager.Logins">
<summary>User Login related APIs</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityManager.Passwords">
<summary>Password API</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityManager.Roles">
<summary>Roles API</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityManager.SaveChangesAsync(System.Threading.CancellationToken)">
<summary>SaveChanges to the various identity stores</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityManager.Settings">
<summary>Settings object used for configuration, if null, uses the global settings (IdentityConfig.Settings)</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityManager.Store">
<summary>IdentityStoreContext which the helper methods work against</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityManager.Tokens">
<summary>Token API</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityManager.Users">
<summary>APIs around User management</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IdentityOptions">
<summary>Settings used to configure an IdentityManager</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityOptions.#ctor">
<summary>Constructor</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityOptions.AllowOnlyAlphaNumericUserNames">
<summary>Only allow String.IsLetterOrDigits in UserNames</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityOptions.LocalLoginProvider">
<summary>Identifier for user logins created by the local application, i.e. database</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityOptions.MinRequiredPasswordLength">
<summary>Minimum required length for a text</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityOptions.PasswordValidator">
<summary>Validators passwords are of sufficient strength</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityOptions.UserNameValidator">
<summary>Validates usernames</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IdentityResult">
<summary>Represents the result of an identity operation</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityResult.#ctor(System.Boolean)">
<summary>Constructor taking a success flag</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityResult.#ctor(System.String[])">
<summary>Failure constructor that takes error messages</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityResult.Errors">
<summary>List of errors</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityResult.Failed(System.String[])">
<summary>Failed helper method</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityResult.Succeeded">
<summary>Success helper method</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityResult.Success">
<summary>True if the operation was successful</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IdentityRoleManager">
<summary>Roles API</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.#ctor(Microsoft.AspNet.Identity.IIdentityStore)">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.AddUserToRoleAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Add a user to a role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.CreateRoleAsync(Microsoft.AspNet.Identity.IRole,System.Threading.CancellationToken)">
<summary>Create a role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.DeleteRoleAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Delete a role, returns true if successful</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.FindRoleAsync(System.String,System.Threading.CancellationToken)">
<summary>Find a role by id</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.FindRoleByNameAsync(System.String,System.Threading.CancellationToken)">
<summary>Find a role by name</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.GetRolesForUserAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns the roles for the user</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.GetUsersInRoleAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns the users in the role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.IsUserInRoleAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Returns true if the user is in the specified role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.RemoveUserFromRoleAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Returns true if the user was removed from the role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityRoleManager.RoleExistsAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns true if the role exists</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IdentityRoleManager.Store">
<summary>Store to operate on</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IdentitySettings">
<summary>Class that holds various settings for the identity system</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentitySettings.#ctor"></member>
<member name="M:Microsoft.AspNet.Identity.IdentitySettings.Add(System.String,System.Object)">
<summary>Add a setting object with the specified key</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentitySettings.Get(System.String)">
<summary>Return a settings object, or create a new one if it does not exist</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentitySettings.GetIdentityOptions">
<summary>Return the IdentityManagerOptions</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentitySettings.GetOrCreate``1">
<summary>Return a settings object, or create a new one if it does not exist, will throw if the wrong type is present</summary>
<typeparam name="T"></typeparam>
</member>
<member name="T:Microsoft.AspNet.Identity.IdentityStoreContextExtensions">
<summary>Extension methods that use the default CancellationToken.None</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityStoreContextExtensions.SaveChangesAsync(Microsoft.AspNet.Identity.IIdentityStore)">
<summary>Saves any changes to the stores (Note: stores are not required to support this pattern)</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IIdentityManagerFactory">
<summary>Factory used to construct IdentityManagers</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IIdentityManagerFactory.CreateStoreManager">
<summary>Factory method used to construct an IdentityManager with the specified settings and context</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IIdentityStore">
<summary>Used to coordinate operations involving the user, login, roles, and claims stores SaveChangesAsync will persist the changes (if the stores support this concept)</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IIdentityStore.Logins">
<summary>Maps local userIds to login providers, i.e. a local username/password, Google, Facebook, Twitter, Microsoft</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IIdentityStore.Roles">
<summary>Stores role information</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IIdentityStore.SaveChangesAsync(System.Threading.CancellationToken)">
<summary>Saves any changes to the stores (Note: stores are not required to support this pattern)</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IIdentityStore.Secrets">
<summary>Store used to store user name/hashed passwords</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IIdentityStore.Tokens">
<summary>Stores arbitrary tokens (i.e. access tokens, refresh tokens, confirmation tokens)</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IIdentityStore.UserClaims">
<summary>Stores claims for users</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IIdentityStore.UserManagement">
<summary>Store responsible for managing users (confirmation, lockout)</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IIdentityStore.Users">
<summary>Store responsible for creating/deleting/retrieving users by userId</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.ILoginManager">
<summary>Login related APIs: managing local or external logins</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ILoginManager.AddLocalLoginAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>Create the specified user name and password local login</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ILoginManager.AddLoginAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>Associate a login with a user (external or local)</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ILoginManager.GetLoginsAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns a list of logins for a user</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ILoginManager.GetUserIdForLocalLoginAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns the local user id for a user login that matches</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ILoginManager.GetUserIdForLoginAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Returns the userId if there is a local login with the specified userName, null otherwise</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ILoginManager.HasLocalLoginAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns true if the userId has a local login</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ILoginManager.RemoveLoginAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>Remove a user login</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IPasswordManager">
<summary>Password related APIs: changing user name passwords, resetting passwords</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IPasswordManager.ChangePasswordAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>Change a user's password</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IPasswordManager.CheckPasswordAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Validates a local user name/password combination</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IPasswordManager.GenerateResetPasswordTokenAsync(System.String,System.String,System.DateTime,System.Threading.CancellationToken)">
<summary>Create a token for the specified user that can be used to reset his password</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IPasswordManager.ResetPasswordAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Reset a user's password with the reset password token</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IRole">
<summary> Minimal set of data needed to persist role data </summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IRole.Id">
<summary> Id of the role </summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IRole.Name"></member>
<member name="T:Microsoft.AspNet.Identity.IRoleManager">
<summary>Role related APIs</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleManager.AddUserToRoleAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Add a user to a role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleManager.CreateRoleAsync(Microsoft.AspNet.Identity.IRole,System.Threading.CancellationToken)">
<summary>Create a role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleManager.DeleteRoleAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Delete a role, returns true if successful</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleManager.FindRoleAsync(System.String,System.Threading.CancellationToken)">
<summary>Find a role by id</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleManager.FindRoleByNameAsync(System.String,System.Threading.CancellationToken)">
<summary>Find a role by name</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleManager.GetRolesForUserAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns the roles for the user</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleManager.GetUsersInRoleAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns the users in the role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleManager.IsUserInRoleAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Returns true if the user is in the specified role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleManager.RemoveUserFromRoleAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Returns true if the user was removed from the role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleManager.RoleExistsAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns true if the role exists</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IRoleStore">
<summary> Interface for managing the creation and membership of roles </summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IRoleStore.AddUserToRoleAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IRoleStore.CreateRoleAsync(Microsoft.AspNet.Identity.IRole,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IRoleStore.DeleteRoleAsync(System.String,System.Boolean,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IRoleStore.FindRoleAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IRoleStore.FindRoleByNameAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IRoleStore.GetRolesForUserAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IRoleStore.GetUsersInRoleAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IRoleStore.IsUserInRoleAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IRoleStore.RemoveUserFromRoleAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IRoleStore.RoleExistsAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="T:Microsoft.AspNet.Identity.IStringValidator">
<summary>Interface used to specify custom username/text validation</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IStringValidator.Validate(System.String)">
<summary>Validates a string.</summary>
<returns>A result with <see cref="P:Microsoft.AspNet.Identity.IdentityResult.Success" /> set to <see cref="true" /> when validation succeeds; otherwise, a result with <see cref="P:Microsoft.AspNet.Identity.IdentityResult.Success" /> set to <see cref="false" />.</returns>
</member>
<member name="T:Microsoft.AspNet.Identity.IToken">
<summary>Interface for a token</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IToken.Id">
<summary>Unique identifier for the token</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IToken.ValidUntilUtc">
<summary>Token is valid until this date</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IToken.Value">
<summary>Value of the token</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.ITokenManager">
<summary>Token related APIs</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ITokenManager.AddAsync(Microsoft.AspNet.Identity.IToken,System.Threading.CancellationToken)">
<summary>Add a new token to the store</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ITokenManager.FindAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Find a token in the TokenStore</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ITokenManager.RemoveAsync(System.String,System.Threading.CancellationToken)">
<summary>Remove a token from the TokenStore</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.ITokenStore">
<summary>Store that contains tokens which can be used for different purposes (confirmation, access, refresh) and with expiration</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ITokenStore.AddAsync(Microsoft.AspNet.Identity.IToken,System.Threading.CancellationToken)">
<summary>Add a token to the store</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ITokenStore.CreateNewInstance">
<summary>Creates the appropriate IToken instance</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ITokenStore.FindAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Find a token</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ITokenStore.RemoveAsync(System.String,System.Threading.CancellationToken)">
<summary>Remove a token from the store</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.ITokenStore.UpdateAsync(Microsoft.AspNet.Identity.IToken,System.Threading.CancellationToken)">
<summary>Update a token</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IUser">
<summary> Minimal interface for a user with a string user key </summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUser.Id">
<summary> Unique key for the user </summary>
<returns>The unique key for the user</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.IUser.UserName"></member>
<member name="T:Microsoft.AspNet.Identity.IUserClaim">
<summary>Represents a claim for a user</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserClaim.ClaimType">
<summary>ClaimType for the user claim</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserClaim.ClaimValue">
<summary>value for the user's claim</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserClaim.UserId">
<summary>UserId for the user with the claim</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IUserClaimStore">
<summary>Stores claims for users.</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserClaimStore.AddAsync(Microsoft.AspNet.Identity.IUserClaim,System.Threading.CancellationToken)">
<summary>Store a claim for the user with the specified type/value.</summary>
<returns>The task that performs the asynchronous operation.</returns>
<param name="userClaim">The user claim.</param>
<param name="cancellationToken">The cancellation token.</param>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserClaimStore.GetUserClaimsAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns the claims for the user with the issuer set.</summary>
<returns>The task that performs the asynchronous operation.</returns>
<param name="userId">The user ID.</param>
<param name="cancellationToken">The cancellation token.</param>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserClaimStore.RemoveAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>RemoveAsync a user claim.</summary>
<returns>The task that performs the asynchronous operation.</returns>
<param name="userId">The user ID.</param>
<param name="claimType">The claim type.</param>
<param name="claimValue">The claim value.</param>
<param name="cancellationToken">The cancellation token.</param>
</member>
<member name="T:Microsoft.AspNet.Identity.IUserLogin">
<summary> Represents a linked login for a user (i.e. a local username/password or a Facebook/Google account </summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserLogin.LoginProvider">
<summary> Provider for the linked login, i.e. Local, Facebook, Google, etc. </summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserLogin.ProviderKey">
<summary> Key for the linked login at the provider </summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserLogin.UserId">
<summary> UserId for the user who owns this account </summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IUserLoginStore">
<summary> Maps local userIds to account providers, i.e. a local username/password, Google, Facebook, Twitter, Microsoft </summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserLoginStore.AddAsync(Microsoft.AspNet.Identity.IUserLogin,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserLoginStore.CreateNewInstance(System.String,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserLoginStore.GetLoginsAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserLoginStore.GetProviderKeyAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserLoginStore.GetUserIdAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserLoginStore.RemoveAsync(System.String,System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="T:Microsoft.AspNet.Identity.IUserManagement">
<summary>Minimal interface for holding user management info (i.e. Confirmed, LastSignInTime)</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserManagement.DisableSignIn">
<summary>Set if user is not allowed to sign in</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserManagement.LastSignInTimeUtc">
<summary>Last time the user was signed in</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserManagement.UserId">
<summary>Unique key for the user</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IUserManagementStore">
<summary>Responsible for creating/deleting/retrieving user management info</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManagementStore.CreateAsync(Microsoft.AspNet.Identity.IUserManagement,System.Threading.CancellationToken)">
<summary>Creates the specified IUserManagement object</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManagementStore.CreateNewInstance(System.String)">
<summary>Creates the appropriate IUserManagement instance for the user</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManagementStore.DeleteAsync(System.String,System.Threading.CancellationToken)">
<summary>Deletes the specified IUserManagement for the userId</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManagementStore.FindAsync(System.String,System.Threading.CancellationToken)">
<summary>Finds an IUserManagement by its key</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManagementStore.UpdateAsync(Microsoft.AspNet.Identity.IUserManagement,System.Threading.CancellationToken)">
<summary>Update the specified IUserManagement object</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IUserManager">
<summary>User related APIs: creating users, adding claims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManager.AddClaimAsync(Microsoft.AspNet.Identity.IUserClaim,System.Threading.CancellationToken)">
<summary>Add a new user claim to the store</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManager.CreateExternalUserAsync(Microsoft.AspNet.Identity.IUser,System.String,System.String,System.Threading.CancellationToken)">
<summary>Create a user with an associated external login</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManager.CreateLocalUserAsync(Microsoft.AspNet.Identity.IUser,System.String,System.Threading.CancellationToken)">
<summary>Create a user with a linked local login with the specified password</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManager.CreateUserAsync(Microsoft.AspNet.Identity.IUser,System.Threading.CancellationToken)">
<summary>Create a user and its associated user management object</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManager.GetUserClaimsAsync(System.String,System.Threading.CancellationToken)">
<summary>Get a users claims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserManager.RemoveClaimAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>Remove a user claim</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IUserSecret">
<summary> Minimal set of data needed to persist login data </summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserSecret.Secret">
<summary> Opaque string to validate the user, i.e. password </summary>
</member>
<member name="P:Microsoft.AspNet.Identity.IUserSecret.UserName">
<summary> Username </summary>
</member>
<member name="T:Microsoft.AspNet.Identity.IUserSecretStore">
<summary> Stores login information (username/secret) </summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserSecretStore.CreateAsync(Microsoft.AspNet.Identity.IUserSecret,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserSecretStore.CreateNewInstance(System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserSecretStore.DeleteAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserSecretStore.FindAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserSecretStore.UpdateAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserSecretStore.ValidateAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="T:Microsoft.AspNet.Identity.IUserStore">
<summary> Responsible for creating/deleting/retrieving users by userId </summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IUserStore.CreateAsync(Microsoft.AspNet.Identity.IUser,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserStore.DeleteAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserStore.FindAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.IUserStore.FindByNameAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="T:Microsoft.AspNet.Identity.LoginManager"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManager.#ctor(Microsoft.AspNet.Identity.IdentityManager)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManager.AddLocalLoginAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>Create the specified user name and password local login</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.LoginManager.AddLoginAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>Associate a login with a user (external or local)</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.LoginManager.GetLoginsAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns a list of logins for a user</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.LoginManager.GetUserIdForLocalLoginAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns the local user id for a user login that matches</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.LoginManager.GetUserIdForLoginAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Returns the userId if there is a local login with the specified userName, null otherwise</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.LoginManager.HasLocalLoginAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns true if the userId has a local login</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.LoginManager.RemoveLoginAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>Remove a user login</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.LoginManager.Store"></member>
<member name="T:Microsoft.AspNet.Identity.LoginManagerExtensions">
<summary>Extension methods for ILoginManager</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.AddLocalLogin(Microsoft.AspNet.Identity.ILoginManager,System.String,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.AddLocalLoginAsync(Microsoft.AspNet.Identity.ILoginManager,System.String,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.AddLogin(Microsoft.AspNet.Identity.ILoginManager,System.String,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.AddLoginAsync(Microsoft.AspNet.Identity.ILoginManager,System.String,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.GetLogins(Microsoft.AspNet.Identity.ILoginManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.GetLoginsAsync(Microsoft.AspNet.Identity.ILoginManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.GetUserIdForLocalLogin(Microsoft.AspNet.Identity.ILoginManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.GetUserIdForLocalLoginAsync(Microsoft.AspNet.Identity.ILoginManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.GetUserIdForLogin(Microsoft.AspNet.Identity.ILoginManager,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.GetUserIdForLoginAsync(Microsoft.AspNet.Identity.ILoginManager,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.HasLocalLogin(Microsoft.AspNet.Identity.ILoginManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.HasLocalLoginAsync(Microsoft.AspNet.Identity.ILoginManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.RemoveLogin(Microsoft.AspNet.Identity.ILoginManager,System.String,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.LoginManagerExtensions.RemoveLoginAsync(Microsoft.AspNet.Identity.ILoginManager,System.String,System.String,System.String)"></member>
<member name="T:Microsoft.AspNet.Identity.PasswordManager">
<summary>Password APIs</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.PasswordManager.#ctor(Microsoft.AspNet.Identity.IdentityManager)">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.PasswordManager.ChangePasswordAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>Change a user's password</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.PasswordManager.CheckPasswordAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Validates a local user name/password combination</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.PasswordManager.GenerateResetPasswordTokenAsync(System.String,System.String,System.DateTime,System.Threading.CancellationToken)">
<summary>Create a token for the specified user that can be used to reset his password</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.PasswordManager.Manager"></member>
<member name="M:Microsoft.AspNet.Identity.PasswordManager.ResetPasswordAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Reset a user's password with the reset password token</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.PasswordManagerExtensions">
<summary>Extension methods for IPasswordManager</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.PasswordManagerExtensions.ChangePassword(Microsoft.AspNet.Identity.IPasswordManager,System.String,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.PasswordManagerExtensions.ChangePasswordAsync(Microsoft.AspNet.Identity.IPasswordManager,System.String,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.PasswordManagerExtensions.CheckPassword(Microsoft.AspNet.Identity.IPasswordManager,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.PasswordManagerExtensions.CheckPasswordAsync(Microsoft.AspNet.Identity.IPasswordManager,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.PasswordManagerExtensions.GenerateResetPasswordToken(Microsoft.AspNet.Identity.IPasswordManager,System.String,System.String,System.DateTime)"></member>
<member name="M:Microsoft.AspNet.Identity.PasswordManagerExtensions.GenerateResetPasswordTokenAsync(Microsoft.AspNet.Identity.IPasswordManager,System.String,System.String,System.DateTime)"></member>
<member name="M:Microsoft.AspNet.Identity.PasswordManagerExtensions.ResetPassword(Microsoft.AspNet.Identity.IPasswordManager,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.PasswordManagerExtensions.ResetPasswordAsync(Microsoft.AspNet.Identity.IPasswordManager,System.String,System.String)"></member>
<member name="T:Microsoft.AspNet.Identity.RoleManagerExtensions">
<summary>Extension methods for IRoleManager</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.RoleManagerExtensions.AddUserToRoleAsync(Microsoft.AspNet.Identity.IRoleManager,System.String,System.String)">
<summary>Add a user to a role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.RoleManagerExtensions.CreateRoleAsync(Microsoft.AspNet.Identity.IRoleManager,Microsoft.AspNet.Identity.IRole)">
<summary>Create a role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.RoleManagerExtensions.DeleteRoleAsync(Microsoft.AspNet.Identity.IRoleManager,System.String,System.Boolean)">
<summary>Delete a role, returns true if successful</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.RoleManagerExtensions.FindRoleAsync(Microsoft.AspNet.Identity.IRoleManager,System.String)">
<summary>Find a role by id</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.RoleManagerExtensions.FindRoleByNameAsync(Microsoft.AspNet.Identity.IRoleManager,System.String)">
<summary>Find a role by name</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.RoleManagerExtensions.GetRolesForUserAsync(Microsoft.AspNet.Identity.IRoleManager,System.String)">
<summary>Returns the roles for the user</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.RoleManagerExtensions.GetUsersInRoleAsync(Microsoft.AspNet.Identity.IRoleManager,System.String)">
<summary>Returns the users in the role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.RoleManagerExtensions.IsUserInRoleAsync(Microsoft.AspNet.Identity.IRoleManager,System.String,System.String)">
<summary>Returns true if the user is in the specified role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.RoleManagerExtensions.RemoveUserFromRoleAsync(Microsoft.AspNet.Identity.IRoleManager,System.String,System.String)">
<summary>Returns true if the user was removed from the role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.RoleManagerExtensions.RoleExistsAsync(Microsoft.AspNet.Identity.IRoleManager,System.String)">
<summary>Returns true if the role exists</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.TokenManager">
<summary>Token related APIs</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.TokenManager.#ctor(Microsoft.AspNet.Identity.IIdentityStore)">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.TokenManager.AddAsync(Microsoft.AspNet.Identity.IToken,System.Threading.CancellationToken)">
<summary>Add a new token to the store</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.TokenManager.FindAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Find a token in the TokenStore</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.TokenManager.RemoveAsync(System.String,System.Threading.CancellationToken)">
<summary>Remove a token from the TokenStore</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.TokenManager.Store">
<summary>Store to operate on</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.TokenManagerExtensions">
<summary>Extension methods for ITokenManager</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.TokenManagerExtensions.Add(Microsoft.AspNet.Identity.ITokenManager,Microsoft.AspNet.Identity.IToken)"></member>
<member name="M:Microsoft.AspNet.Identity.TokenManagerExtensions.AddAsync(Microsoft.AspNet.Identity.ITokenManager,Microsoft.AspNet.Identity.IToken)"></member>
<member name="M:Microsoft.AspNet.Identity.TokenManagerExtensions.Find(Microsoft.AspNet.Identity.ITokenManager,System.String,System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.TokenManagerExtensions.FindAsync(Microsoft.AspNet.Identity.ITokenManager,System.String,System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.TokenManagerExtensions.Remove(Microsoft.AspNet.Identity.ITokenManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.TokenManagerExtensions.RemoveAsync(Microsoft.AspNet.Identity.ITokenManager,System.String)"></member>
<member name="T:Microsoft.AspNet.Identity.UserManager">
<summary>User related API</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManager.#ctor(Microsoft.AspNet.Identity.IdentityManager)">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManager.AddClaimAsync(Microsoft.AspNet.Identity.IUserClaim,System.Threading.CancellationToken)">
<summary>Add a new user claim to the store</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManager.CreateExternalUserAsync(Microsoft.AspNet.Identity.IUser,System.String,System.String,System.Threading.CancellationToken)">
<summary>Create a user with an associated external login</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManager.CreateLocalUserAsync(Microsoft.AspNet.Identity.IUser,System.String,System.Threading.CancellationToken)">
<summary>Create a user with a linked local login with the specified password</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManager.CreateUserAsync(Microsoft.AspNet.Identity.IUser,System.Threading.CancellationToken)">
<summary>Create a user and its associated user management object</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManager.GetUserClaimsAsync(System.String,System.Threading.CancellationToken)">
<summary>Get a users claims</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.UserManager.Manager">
<summary>IdentityManager to operate on</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManager.RemoveClaimAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
<summary>Remove a user claim</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.UserManagerExtensions">
<summary>Extension methods for IUserManager</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManagerExtensions.CreateExternalUser(Microsoft.AspNet.Identity.IUserManager,Microsoft.AspNet.Identity.IUser,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.UserManagerExtensions.CreateExternalUserAsync(Microsoft.AspNet.Identity.IUserManager,Microsoft.AspNet.Identity.IUser,System.String,System.String)">
<summary>Createa user with an associated external login</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManagerExtensions.CreateLocalUser(Microsoft.AspNet.Identity.IUserManager,Microsoft.AspNet.Identity.IUser,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.UserManagerExtensions.CreateLocalUserAsync(Microsoft.AspNet.Identity.IUserManager,Microsoft.AspNet.Identity.IUser,System.String)">
<summary>CreateAsync a user with a linked local login with the specified password</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManagerExtensions.CreateUser(Microsoft.AspNet.Identity.IUserManager,Microsoft.AspNet.Identity.IUser)">
<summary>Create a user and its associated user management object</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.UserManagerExtensions.CreateUserAsync(Microsoft.AspNet.Identity.IUserManager,Microsoft.AspNet.Identity.IUser)">
<summary>Create a user and its associated user management object</summary>
</member>
</members>
</doc>

View File

@ -0,0 +1,425 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.AspNet.Identity.EntityFramework</name>
</assembly>
<members>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.DefaultIdentityDbContext">
<summary>Concrete instance of the IdentityDbContext which uses the default framework entities</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.DefaultIdentityDbContext.#ctor">
<summary>Default constructor which uses the "DefaultConnection" connectionString</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.DefaultIdentityDbContext.#ctor(System.String)">
<summary>Constructor which takes the connection string to use</summary>
<param name="nameOrConnectionString">The connection string to use.</param>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8">
<summary>Generic Context which takes entities for all of the sets needed for IIdentityManager</summary>
<typeparam name="TUser"></typeparam>
<typeparam name="TUserClaim"></typeparam>
<typeparam name="TUserSecret"></typeparam>
<typeparam name="TUserLogin"></typeparam>
<typeparam name="TRole"></typeparam>
<typeparam name="TUserRole"></typeparam>
<typeparam name="TToken"></typeparam>
<typeparam name="TUserManagement"></typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.#ctor">
<summary>Default constructor which uses the "DefaultConnection" connectionString</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.#ctor(System.String)">
<summary>Constructor which takes the connection string to use</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.Roles">
<summary>EntitySet of Roles</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.Tokens">
<summary>EntitySet of Tokens</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.UserClaims">
<summary>EntitySet of UserClaims</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.UserLogins">
<summary>EntitySet of UserLogins</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.UserManagement">
<summary>EntitySet of UserManagement</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.UserRoles">
<summary>EntitySet of UserRoles</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.Users">
<summary>EntitySet of Users</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.UserSecrets">
<summary>EntitySet of UserSecrets</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext`8.ValidateEntity(System.Data.Entity.Infrastructure.DbEntityEntry,System.Collections.Generic.IDictionary{System.Object,System.Object})">
<summary>Validates that UserNames are unique and case insenstive</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContextWithCustomUser`1">
<summary>Concrete instance of the IdentityDbContext which uses a custom user entity but otherwise uses default framework entities</summary>
<typeparam name="TUser"></typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityDbContextWithCustomUser`1.#ctor"></member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityManagerFactory">
<summary>Factory implementation that returns an IdentityManager</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityManagerFactory.#ctor(Microsoft.AspNet.Identity.IdentitySettings,System.Func{Microsoft.AspNet.Identity.IIdentityStore})"></member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityManagerFactory.ContextFactory">
<summary>Factory method that creates an identity store context</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityManagerFactory.CreateStoreManager">
<summary>Factory method that creates an IdentityManager</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityManagerFactory.Settings">
<summary>IdentitySettings to use when creating IdentityManagers</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.IdentityStore">
<summary>Implements IIdentityStoreContext <see cref="T:Microsoft.AspNet.Identity.IIdentityStore" /></summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.#ctor">
<summary>Default constuctor which uses a new instance of a DefaultIdentityDbContext</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.#ctor(System.Data.Entity.DbContext)">
<summary>Constructor which takes a db context and wires up the stores with default instances using the context</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.DbContext">
<summary>Context which encapsulates the unit of work</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.Dispose">
<summary>Dispose the stores and dbcontext</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.Dispose(System.Boolean)">
<summary>If disposing, calls dispose on the stores and Context. Always nulls out the stores/dbcontext</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.Logins"></member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.Roles"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.SaveChangesAsync(System.Threading.CancellationToken)">
<summary>Calls SaveChangesAsync on the Context</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.Secrets"></member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.Tokens"></member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.UserClaims"></member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.UserManagement"></member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IdentityStore.Users"></member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.IUserRole">
<summary> Represents a user being in a role </summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IUserRole.RoleId">
<summary> id of the role </summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.IUserRole.UserId">
<summary> id of the user </summary>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.Role">
<summary>Implements IRole <see cref="T:Microsoft.AspNet.Identity.IRole" /></summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.Role.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.Identity.EntityFramework.Role" /> class.</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.Role.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.Identity.EntityFramework.Role" /> class.</summary>
<param name="roleName">The name of the role.</param>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.Role.Id">
<summary>Gets the identifier of this role.</summary>
<returns>The identifier of this role.</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.Role.Name">
<summary>Gets the name of this role.</summary>
<returns>The name of this role.</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.Role.UserRoles">
<summary>Gets a collection of user roles.</summary>
<returns>A collection of user roles.</returns>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2">
<summary>Base class for RoleStores using EF where TRole is the entity type of the role, and TUserInRole is the entity type of the user/role membership</summary>
<typeparam name="TRole"></typeparam>
<typeparam name="TUserInRole"></typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.#ctor(System.Data.Entity.DbContext)">
<summary>Constructor that takes the db context</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.AddUserToRoleAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Returns true if the user is successfully added to the role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.CreateRoleAsync(Microsoft.AspNet.Identity.IRole,System.Threading.CancellationToken)">
<summary>Creates a role, returns true if successful, false if not (role already exists)</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.DeleteRoleAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>DeleteById a role, returns true if successful</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.FindRoleAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.FindRoleByNameAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.GetRolesForUserAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns the roles for th euser</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.GetUsersInRoleAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.IsUserInRoleAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Returns true if the user is in the specified role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.RemoveUserFromRoleAsync(System.String,System.String,System.Threading.CancellationToken)">
<summary>Returns true if the user was removed from the role</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.RoleStore`2.RoleExistsAsync(System.String,System.Threading.CancellationToken)">
<summary>Returns true if the role exists</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.Store`1">
<summary>EntityFramework based Store that allows query/manipulation of a TEntity set</summary>
<typeparam name="TEntity"></typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.Store`1.#ctor(System.Data.Entity.DbContext)">
<summary>Constructor that takes a Context</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.Store`1.Context">
<summary>Context for the store</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.Store`1.Delete(`0)">
<summary>Mark an entity for deletion</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.Store`1.DeleteById(System.Object)">
<summary>Overload that deletes an entity</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.Store`1.EntitySet">
<summary>EntitySet for this store</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.Store`1.GetByIdAsync(System.Object,System.Threading.CancellationToken)">
<summary>FindAsync an entity by ID</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.Store`1.Insert(`0)">
<summary>Insert an entity</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.Store`1.Update(`0)">
<summary>Update an entity</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.Token">
<summary>EntityType that implements IToken <see cref="T:Microsoft.AspNet.Identity.IToken" /></summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.Token.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.Identity.EntityFramework.Token" /> class.</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.Token.Id">
<summary>Gets the identifier of this token.</summary>
<returns>The identifier of this token.</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.Token.ValidUntilUtc">
<summary>Gets the date and time the token is valid.</summary>
<returns>The date and time the token is valid.</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.Token.Value">
<summary>Gets the value of this token.</summary>
<returns>The value of this token.</returns>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.TokenStore`1">
<summary>Implements ITokenStore using EntityFramework where TToken is the entity type of the token being stored</summary>
<typeparam name="TToken"></typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.TokenStore`1.#ctor(System.Data.Entity.DbContext)">
<summary>Constructor that takes the db context</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.TokenStore`1.AddAsync(Microsoft.AspNet.Identity.IToken,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.TokenStore`1.CreateNewInstance"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.TokenStore`1.FindAsync(System.String,System.Boolean,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.TokenStore`1.RemoveAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.TokenStore`1.UpdateAsync(Microsoft.AspNet.Identity.IToken,System.Threading.CancellationToken)"></member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.User">
<summary>EntityType that implements IUser <see cref="T:Microsoft.AspNet.Identity.IUser" /></summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.User.#ctor">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.User.#ctor(System.String)">
<summary>Constructor that takes userName</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.User.Id"></member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.User.Logins">
<summary>The user's logins</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.User.Management">
<summary>The user's management object</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.User.Roles">
<summary>The user's roles</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.User.UserName"></member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.UserClaim">
<summary>EntityType that represents one specific user claim <see cref="T:Microsoft.AspNet.Identity.IUserClaim" /></summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserClaim.#ctor">
<summary>Constructor</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserClaim.ClaimType">
<summary>Gets or sets the type of the claim associated with the user.</summary>
<returns>The type of the claim associated with the user.</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserClaim.ClaimValue">
<summary>Gets or sets the value of the claim.</summary>
<returns>The value of the claim.</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserClaim.Key">
<summary>Unique key for the user claim</summary>
<returns>The unique key for the user claim.</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserClaim.User">
<summary>Navigation property setting up the foreign key for User</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserClaim.UserId">
<summary>Gets or sets the user identifier associated with the claim.</summary>
<returns>The user identifier associated with the claim.</returns>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.UserClaimStore`1">
<summary>Implements IUserClaimStore using EntityFramework where TUserSecret is the entity type of the user claim being stored</summary>
<typeparam name="TUserClaim"></typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserClaimStore`1.#ctor(System.Data.Entity.DbContext)">
<summary>Constructor that takes the db context</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserClaimStore`1.AddAsync(Microsoft.AspNet.Identity.IUserClaim,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserClaimStore`1.GetUserClaimsAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserClaimStore`1.RemoveAsync(System.String,System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.UserLogin">
<summary>Entity type for a user's login (i.e. facebook, local password, google)</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserLogin.#ctor">
<summary>Default constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserLogin.#ctor(System.String,System.String,System.String)">
<summary>Constructor</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserLogin.LoginProvider"></member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserLogin.ProviderKey"></member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserLogin.User">
<summary>Navigation property setting up the foreign key for User</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserLogin.UserId"></member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.UserLoginStore`1">
<summary>Implements IUserLoginStore using EntityFramework where TUserLogin is the entity type of the user login being stored</summary>
<typeparam name="TUserLogin"></typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserLoginStore`1.#ctor(System.Data.Entity.DbContext)">
<summary>Constructor that takes a db context</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserLoginStore`1.AddAsync(Microsoft.AspNet.Identity.IUserLogin,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserLoginStore`1.CreateNewInstance(System.String,System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserLoginStore`1.GetLoginsAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserLoginStore`1.GetProviderKeyAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserLoginStore`1.GetUserIdAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserLoginStore`1.RemoveAsync(System.String,System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.UserManagement">
<summary>Represents the user management instance.</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserManagement.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.Identity.EntityFramework.UserManagement" /> class.</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserManagement.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.Identity.EntityFramework.UserManagement" /> class using the specified user identifier..</summary>
<param name="userId">The unique identifier of the user.</param>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserManagement.DisableSignIn">
<summary>Gets or sets whether to disable the user sign in.</summary>
<returns>true to disable the user sign in; otherwise, false.</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserManagement.LastSignInTimeUtc">
<summary>Gets or sets the time when the user recently signed in.</summary>
<returns>The time when the user recently signed in.</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserManagement.User">
<summary>Navigation property setting up the foreign key for User</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserManagement.UserId">
<summary>Gets or sets the unique identifier of the user.</summary>
<returns>The unique identifier of the user.</returns>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.UserManagementStore`1">
<summary>Represents the user management store.</summary>
<typeparam name="TUser">The type of the user.</typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserManagementStore`1.#ctor(System.Data.Entity.DbContext)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.Identity.EntityFramework.UserManagementStore`1" /> class.</summary>
<param name="db">The context for the store.</param>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserManagementStore`1.CreateAsync(Microsoft.AspNet.Identity.IUserManagement,System.Threading.CancellationToken)">
<summary>Creates a user management.</summary>
<returns>The created management store.</returns>
<param name="info">The user management information.</param>
<param name="cancellationToken">The cancellation token.</param>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserManagementStore`1.CreateNewInstance(System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserManagementStore`1.DeleteAsync(System.String,System.Threading.CancellationToken)">
<summary>Deletes a user management.</summary>
<returns>The deleted user management.</returns>
<param name="userId">The user identifier where the management will be deleted.</param>
<param name="cancellationToken">The cancellation token.</param>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserManagementStore`1.FindAsync(System.String,System.Threading.CancellationToken)">
<summary>Searches for a user management of a specific user.</summary>
<returns>The searched user management.</returns>
<param name="userId">The user identifier.</param>
<param name="cancellationToken">The cancellation token.</param>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserManagementStore`1.UpdateAsync(Microsoft.AspNet.Identity.IUserManagement,System.Threading.CancellationToken)">
<summary>Updates a user management.</summary>
<returns>The updated user management information.</returns>
<param name="info">The user management information.</param>
<param name="cancellationToken">The cancellation token.</param>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.UserRole">
<summary>EntityType that represents a user belonging to a role <see cref="T:Microsoft.AspNet.Identity.EntityFramework.IUserRole" /></summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserRole.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.Identity.EntityFramework.UserRole" /> class.</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserRole.Role">
<summary>Navigation property setting up the foreign key for Role</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserRole.RoleId">
<summary>Gets or sets the role identifier.</summary>
<returns>The role identifier.</returns>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserRole.User">
<summary>Navigation property setting up the foreign key for User</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserRole.UserId">
<summary>Gets or sets the user identifier.</summary>
<returns>The user identifier.</returns>
</member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.UserSecret">
<summary>EntityType that represents a username and secret(i.e. hashed password) <see cref="T:Microsoft.AspNet.Identity.IUserSecret" /></summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserSecret.#ctor">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserSecret.#ctor(System.String,System.String)">
<summary>Constructor</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserSecret.Secret"></member>
<member name="P:Microsoft.AspNet.Identity.EntityFramework.UserSecret.UserName"></member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.UserSecretStore`1">
<summary>Implements IUserSecretStore using EntityFramework where TUserSecret is the entity type of the user secret being stored</summary>
<typeparam name="TUserSecret"></typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserSecretStore`1.#ctor(System.Data.Entity.DbContext)">
<summary>Constructor that takes a db context</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserSecretStore`1.CreateAsync(Microsoft.AspNet.Identity.IUserSecret,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserSecretStore`1.CreateNewInstance(System.String,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserSecretStore`1.DeleteAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserSecretStore`1.FindAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserSecretStore`1.UpdateAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserSecretStore`1.ValidateAsync(System.String,System.String,System.Threading.CancellationToken)"></member>
<member name="T:Microsoft.AspNet.Identity.EntityFramework.UserStore`1">
<summary>Implements IUserStore using EntityFramework where TUser is the entity type of the user being stored</summary>
<typeparam name="TUser"></typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`1.#ctor(System.Data.Entity.DbContext)">
<summary>Constructor that takes the db context</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`1.CreateAsync(Microsoft.AspNet.Identity.IUser,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`1.DeleteAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`1.FindAsync(System.String,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.EntityFramework.UserStore`1.FindByNameAsync(System.String,System.Threading.CancellationToken)"></member>
</members>
</doc>

Binary file not shown.

View File

@ -0,0 +1,198 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.AspNet.Identity.Owin</name>
</assembly>
<members>
<member name="T:Microsoft.AspNet.Identity.IdentityExtensions">
<summary>Extensions making it easier to get the user name/user id claims off of an identity.</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityExtensions.FindFirstValue(System.Security.Claims.ClaimsIdentity,System.String)">
<summary>Return the claim value for the first claim with the specified type if it exists, null otherwise.</summary>
<returns>Returns <see cref="T:System.String" />.</returns>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityExtensions.GetUserId(System.Security.Principal.IIdentity)">
<summary>Return the user id using the UserIdClaimType.</summary>
<returns>Returns <see cref="T:System.String" />.</returns>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityExtensions.GetUserName(System.Security.Principal.IIdentity)">
<summary>Return the user name using the UserNameClaimType.</summary>
<returns>Returns <see cref="T:System.String" />.</returns>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager">
<summary>Owin aware identity manager that adds sign in/sign out and claims functionality</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager.#ctor(Microsoft.AspNet.Identity.IdentitySettings,Microsoft.AspNet.Identity.IIdentityStore)">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager.#ctor(Microsoft.AspNet.Identity.IIdentityStore)">
<summary>Constructor that uses the default settings</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager.Authentication">
<summary>Authentication APIs (SignIn, SignOut)</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.AuthenticationManager">
<summary>Authentication APIs (SignIn/SignOut)</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.#ctor(Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions,Microsoft.AspNet.Identity.IdentityManager)">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.CheckPasswordAndSignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Validates that the password matches and then signs the token in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.ConfirmSignInTokenAsync(System.String,System.Threading.CancellationToken)">
<summary>If the token is found, allows the user to sign in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.CreateAndSignInExternalUserAsync(Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser,System.Threading.CancellationToken)">
<summary>Create an external user and sign them in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.CreateApplicationClaimsIdentity(System.Collections.Generic.IEnumerable{System.Security.Claims.Claim})">
<summary>Creates a claims identity with the ApplicationAuthenticaitonType, UserNameClaimType and ConfigRole type</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.GetExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager)">
<summary>Return the identity associated with the default external authentication type</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.GetUserIdentityClaimsAsync(System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)">
<summary>Return the claims for a token, which will contain the UserIdClaimType, UserNameClaimType, a claim representing each Role and any claims specified in the UserClaims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.LinkExternalIdentityAsync(System.Security.Claims.ClaimsIdentity,System.String,System.Threading.CancellationToken)">
<summary>Try to link the given identity to the specified token</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.AuthenticationManager.Manager">
<summary>IdentityManager for operations</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.AuthenticationManager.Options">
<summary>Config</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.RequireTokenConfirmationForSignInAsync(System.String,System.String,System.DateTime,System.Threading.CancellationToken)">
<summary>Create a token for the specified user and disables sign in. ConfirmSignInTokenAsync will confirm this token and reenable sign in.</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.SignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Boolean,System.Threading.CancellationToken)">
<summary>Signs in the active principal with a identity that contains claims set to the result of GetUserIdentityClaims and the specified claims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.SignInExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.Threading.CancellationToken)">
<summary>Signs the identity in if the external identity is already linked</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.UpdateUserDisableSignIn(System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Set the AllowSignIn flag for a user</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.IAuthenticationManager">
<summary>Authentication APIs (SignIn/SignOut)</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.CheckPasswordAndSignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Validates that the password matches and then signs the token in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.ConfirmSignInTokenAsync(System.String,System.Threading.CancellationToken)">
<summary>If the token is found, allows the user to sign in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.CreateAndSignInExternalUserAsync(Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser,System.Threading.CancellationToken)">
<summary>Create an external user and sign them in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.CreateApplicationClaimsIdentity(System.Collections.Generic.IEnumerable{System.Security.Claims.Claim})">
<summary>Creates a claims identity with the ApplicationAuthenticaitonType, UserNameClaimType and ConfigRole type</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.GetExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager)">
<summary>Return the identity associated with the default external authentication type</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.GetUserIdentityClaimsAsync(System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)">
<summary>Return the claims for a token, which will contain the UserIdClaimType, UserNameClaimType, a claim representing each Role and any claims specified in the UserClaims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.LinkExternalIdentityAsync(System.Security.Claims.ClaimsIdentity,System.String,System.Threading.CancellationToken)">
<summary>Try to link the given identity to the specified token</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.RequireTokenConfirmationForSignInAsync(System.String,System.String,System.DateTime,System.Threading.CancellationToken)">
<summary>Require a call to ConfirmSignInToken with the given token before this user can be signed in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.SignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Boolean,System.Threading.CancellationToken)">
<summary>Signs in the active principal with a identity that contains claims set to the result of GetUserIdentityClaims and the specified claims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.SignInExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.Threading.CancellationToken)">
<summary>Signs the identity in if the external identity is already linked</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.UpdateUserDisableSignIn(System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Set the AllowSignIn flag for a user</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions">
<summary>Adds extensions methods related to SignIn using OWIN middleware and the IdentityManager to generate the appropriate user claims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CheckPasswordAndSignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CheckPasswordAndSignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.ConfirmSignInToken(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.ConfirmSignInTokenAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CreateAndSignInExternalUser(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CreateAndSignInExternalUserAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.GetExternalIdentity(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.LinkExternalIdentity(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.LinkExternalIdentityAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.RequireTokenConfirmationForSignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String,System.String,System.DateTime)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.RequireTokenConfirmationForSignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String,System.String,System.DateTime)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Boolean,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInExternalIdentity(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInExternalIdentityAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity)"></member>
<member name="T:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions">
<summary>Configuration for the Identity system</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.#ctor">
<summary>Default constructor which uses the built in default options</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.ApplicationAuthenticationType">
<summary>The AuthenticationType used in the UseSignInCookies extension method for the active signed in identity.</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.ClaimsIssuer">
<summary>Issuer used for the claims generated</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.ExternalAuthenticationType">
<summary>The AuthenticationType used by the UseSignInCookies extension method for the external signed in identity.</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.LoginPath">
<summary>Path to the login page in the app</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.LogoutPath">
<summary>Path to the logout page in the app</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.RoleClaimType">
<summary>Claim type used for role claims</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.UserIdClaimType">
<summary>Claim type used for the user id</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.UserNameClaimType">
<summary>Claim type used for the user name</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.IdentitySettingsExtensions">
<summary>Represents the extensions used in identity settings.</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IdentitySettingsExtensions.GetAuthenticationOptions(Microsoft.AspNet.Identity.IdentitySettings)">
<summary>Returns the authentication options for the identity.</summary>
<returns>The authentication options for the identity.</returns>
<param name="settings">The identity settings.</param>
</member>
<member name="T:Microsoft.Owin.Security.AuthenticationManagerExtensions">
<summary>Extensions methods on IAuthenticationManager that add methods for using the default Application and External authentication type constants</summary>
</member>
<member name="M:Microsoft.Owin.Security.AuthenticationManagerExtensions.GetExternalAuthenticationTypes(Microsoft.Owin.Security.IAuthenticationManager)">
<summary>Return the authentication types which are considered external because they have captions</summary>
</member>
<member name="T:Owin.AppBuilderExtensions">
<summary>Extensions off of IAppBuilder to make it easier to configure the SignInCookies</summary>
</member>
<member name="M:Owin.AppBuilderExtensions.UseExternalSignInCookie(Owin.IAppBuilder)">
<summary>Configure the app to use owin middleware based cookie authentication for external identities</summary>
</member>
<member name="M:Owin.AppBuilderExtensions.UseExternalSignInCookie(Owin.IAppBuilder,System.String)">
<summary>Configure the app to use owin middleware based cookie authentication for external identities</summary>
</member>
<member name="M:Owin.AppBuilderExtensions.UseOAuthBearerTokens(Owin.IAppBuilder,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,System.String)">
<summary>Configure the app to use owin middleware based oauth bearer tokens</summary>
</member>
<member name="M:Owin.AppBuilderExtensions.UseSignInCookies(Owin.IAppBuilder)">
<summary>Use application and external sign in cookies for the app</summary>
</member>
<member name="M:Owin.AppBuilderExtensions.UseSignInCookies(Owin.IAppBuilder,Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions)">
<summary>Configure the app to use owin middleware based cookie authentication for the active identity and external identities</summary>
</member>
</members>
</doc>

Binary file not shown.

View File

@ -0,0 +1,540 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Owin.Host.SystemWeb</name>
</assembly>
<members>
<member name="T:Owin.Loader.DefaultLoader">
<summary>
Locates the startup class based on the following convention:
AssemblyName.Startup, with a method named Configuration
</summary>
</member>
<member name="M:Owin.Loader.DefaultLoader.#ctor">
<summary>
</summary>
</member>
<member name="M:Owin.Loader.DefaultLoader.#ctor(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}})">
<summary>
Allows for a fallback loader to be specified.
</summary>
<param name="next"></param>
</member>
<member name="M:Owin.Loader.DefaultLoader.#ctor(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}},System.Func{System.Type,System.Object})">
<summary>
Allows for a fallback loader and a Dependency Injection activator to be specified.
</summary>
<param name="next"></param>
<param name="activator"></param>
</member>
<member name="M:Owin.Loader.DefaultLoader.#ctor(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}},System.Func{System.Type,System.Object},System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
<summary>
</summary>
<param name="next"></param>
<param name="activator"></param>
<param name="referencedAssemblies"></param>
</member>
<member name="M:Owin.Loader.DefaultLoader.Load(System.String,System.Collections.Generic.IList{System.String})">
<summary>
Executes the loader, searching for the entry point by name.
</summary>
<param name="startupName">The name of the assembly and type entry point</param>
<param name="errorDetails"></param>
<returns></returns>
</member>
<member name="M:Owin.Loader.DefaultLoader.DotByDot(System.String)">
<summary>
</summary>
<param name="text"></param>
<returns></returns>
</member>
<member name="T:Owin.Loader.NullLoader">
<summary>
A default fallback loader that does nothing.
</summary>
</member>
<member name="M:Owin.Loader.NullLoader.Load(System.String,System.Collections.Generic.IList{System.String})">
<summary>
A placeholder method that always returns null.
</summary>
<param name="startup"></param>
<param name="errors"></param>
<returns>null.</returns>
</member>
<member name="P:Owin.Loader.NullLoader.Instance">
<summary>
A singleton instance of the NullLoader type.
</summary>
</member>
<member name="T:SharedResourceNamespace.LoaderResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.AssemblyNotFound">
<summary>
Looks up a localized string similar to For the app startup parameter value &apos;{0}&apos;, the assembly &apos;{1}&apos; was not found..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.ClassNotFoundInAssembly">
<summary>
Looks up a localized string similar to For the app startup parameter value &apos;{0}&apos;, the class &apos;{1}&apos; was not found in assembly &apos;{2}&apos;..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.Exception_AttributeNameConflict">
<summary>
Looks up a localized string similar to The OwinStartup attribute discovered in assembly &apos;{0}&apos; referencing startup type &apos;{1}&apos; conflicts with the attribute in assembly &apos;{2}&apos; referencing startup type &apos;{3}&apos; because they have the same FriendlyName &apos;{4}&apos;. Remove or rename one of the attributes, or reference the desired type directly..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.Exception_StartupTypeConflict">
<summary>
Looks up a localized string similar to The discovered startup type &apos;{0}&apos; conflicts with the type &apos;{1}&apos;. Remove or rename one of the types, or reference the desired type directly..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.FriendlyNameMismatch">
<summary>
Looks up a localized string similar to The OwinStartupAttribute.FriendlyName value &apos;{0}&apos; does not match the given value &apos;{1}&apos; in Assembly &apos;{2}&apos;..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.MethodNotFoundInClass">
<summary>
Looks up a localized string similar to No &apos;{0}&apos; method was found in class &apos;{1}&apos;..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.NoAssemblyWithStartupClass">
<summary>
Looks up a localized string similar to No assembly found containing a Startup or [AssemblyName].Startup class..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.NoOwinStartupAttribute">
<summary>
Looks up a localized string similar to No assembly found containing an OwinStartupAttribute..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.StartupTypePropertyEmpty">
<summary>
Looks up a localized string similar to The OwinStartupAttribute.StartupType value is empty in Assembly &apos;{0}&apos;..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.StartupTypePropertyMissing">
<summary>
Looks up a localized string similar to The type &apos;{0}&apos; referenced from assembly &apos;{1}&apos; does not define a property &apos;StartupType&apos; of type &apos;Type&apos;..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.TypeOrMethodNotFound">
<summary>
Looks up a localized string similar to The given type or method &apos;{0}&apos; was not found. Try specifying the Assembly..
</summary>
</member>
<member name="P:SharedResourceNamespace.LoaderResources.UnexpectedMethodSignature">
<summary>
Looks up a localized string similar to The &apos;{0}&apos; method on class &apos;{1}&apos; does not have the expected signature &apos;void {0}(IAppBuilder)&apos;..
</summary>
</member>
<member name="T:Microsoft.Owin.Host.SystemWeb.AuthenticationResult">
<summary></summary>
</member>
<member name="M:Microsoft.Owin.Host.SystemWeb.AuthenticationResult.#ctor(System.Security.Principal.IIdentity,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary></summary>
<param name="identity"></param>
<param name="extra"></param>
<param name="properties"></param>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.AuthenticationResult.Identity">
<summary></summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.AuthenticationResult.Extra">
<summary></summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.AuthenticationResult.Properties">
<summary></summary>
</member>
<member name="T:Microsoft.Owin.Host.SystemWeb.DataProtection.MachineKeyDataProtectionProvider">
<summary>
Used to provide the data protection services that are derived from the MachineKey API. It is the best choice of
data protection when you application is hosted by ASP.NET and all servers in the farm are running with the same Machine Key values.
</summary>
</member>
<member name="M:Microsoft.Owin.Host.SystemWeb.DataProtection.MachineKeyDataProtectionProvider.Create(System.String[])">
<summary>
Returns a new instance of IDataProtection for the provider.
</summary>
<param name="purposes">Additional entropy used to ensure protected data may only be unprotected for the correct purposes.</param>
<returns>An instance of a data protection service</returns>
</member>
<member name="T:System.Web.HttpContextBaseExtensions">
<summary>Provides extension methods for <see cref="T:System.Web.HttpContextBase"/>.</summary>
</member>
<member name="M:System.Web.HttpContextBaseExtensions.GetOwinContext(System.Web.HttpContextBase)">
<summary>
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:System.Web.HttpContextBaseExtensions.GetOwinContext(System.Web.HttpRequestBase)">
<summary>
</summary>
<param name="request"></param>
<returns></returns>
</member>
<member name="T:System.Web.HttpContextExtensions">
<summary>Provides extension methods for <see cref="T:System.Web.HttpContext"/>.</summary>
</member>
<member name="M:System.Web.HttpContextExtensions.GetOwinContext(System.Web.HttpContext)">
<summary>
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:System.Web.HttpContextExtensions.GetOwinContext(System.Web.HttpRequest)">
<summary>
</summary>
<param name="request"></param>
<returns></returns>
</member>
<member name="T:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler">
<summary>
Processes requests from System.Web as OWIN requests.
</summary>
</member>
<member name="M:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.#ctor">
<summary>
Processes requests using the default OWIN application.
</summary>
</member>
<member name="M:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.BeginProcessRequest(System.Web.HttpContextBase,System.AsyncCallback,System.Object)">
<summary>
Initiates an asynchronous call to the HTTP handler.
</summary>
<param name="httpContext">
An System.Web.HttpContextBase object that provides references to intrinsic server
objects (for example, Request, Response, Session, and Server) used to service
HTTP requests.
</param>
<param name="callback">
The System.AsyncCallback to call when the asynchronous method call is complete.
If callback is null, the delegate is not called.
</param>
<param name="extraData">
Any extra data needed to process the request.
</param>
<returns>
An System.IAsyncResult that contains information about the status of the process.
</returns>
</member>
<member name="M:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.EndProcessRequest(System.IAsyncResult)">
<summary>
Provides an asynchronous process End method when the process ends.
</summary>
<param name="result">
An System.IAsyncResult that contains information about the status of the process.
</param>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.IsReusable">
<summary>
Gets a value indicating whether another request can use the System.Web.IHttpHandler instance.
</summary>
<returns>
true.
</returns>
</member>
<member name="T:Microsoft.Owin.Host.SystemWeb.OwinRouteHandler">
<summary>
Processes a route through an OWIN pipeline.
</summary>
</member>
<member name="M:Microsoft.Owin.Host.SystemWeb.OwinRouteHandler.#ctor(System.Action{Owin.IAppBuilder})">
<summary>
Initialize an OwinRouteHandler
</summary>
<param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
</member>
<member name="M:Microsoft.Owin.Host.SystemWeb.OwinRouteHandler.GetHttpHandler(System.Web.Routing.RequestContext)">
<summary>
Provides the object that processes the request.
</summary>
<returns>
An object that processes the request.
</returns>
<param name="requestContext">An object that encapsulates information about the request.</param>
</member>
<member name="T:Microsoft.Owin.Host.SystemWeb.PreApplicationStart">
<summary>
Registers the OWIN request processing module at application startup.
</summary>
</member>
<member name="M:Microsoft.Owin.Host.SystemWeb.PreApplicationStart.Initialize">
<summary>
Registers the OWIN request processing module.
</summary>
</member>
<member name="T:Microsoft.Owin.Host.SystemWeb.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_AppLoderFailure">
<summary>
Looks up a localized string similar to The following errors occurred while attempting to load the app..
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_CannotRegisterAfterHeadersSent">
<summary>
Looks up a localized string similar to Cannot register for &apos;OnSendingHeaders&apos; event after response headers have been sent..
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_DuplicateKey">
<summary>
Looks up a localized string similar to The key &apos;{0}&apos; is already present in the dictionary..
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_HowToDisableAutoAppStartup">
<summary>
Looks up a localized string similar to To disable OWIN startup discovery, add the appSetting owin:AutomaticAppStartup with a value of &quot;false&quot; in your web.config..
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_HowToSpecifyAppStartup">
<summary>
Looks up a localized string similar to To specify the OWIN startup Assembly, Class, or Method, add the appSetting owin:AppStartup with the fully qualified startup class or configuration method name in your web.config..
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_UnsupportedPipelineStage">
<summary>
Looks up a localized string similar to The given stage &apos;{0}&apos; is not supported..
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.HttpContext_OwinEnvironmentNotFound">
<summary>
Looks up a localized string similar to No owin.Environment item was found in the context..
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_ClientCertException">
<summary>
Looks up a localized string similar to An exception was thrown while trying to load the client certificate:.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_EntryPointException">
<summary>
Looks up a localized string similar to The OWIN entry point threw an exception:.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_OwinCallContextCallbackException">
<summary>
Looks up a localized string similar to The IAsyncResult callback for OwinCallHandler threw an exception:.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_RegisterModuleException">
<summary>
Looks up a localized string similar to Failed to register the OWIN module:.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_RequestDisconnectCallbackExceptions">
<summary>
Looks up a localized string similar to The application threw one or more exceptions when notified of a client disconnect:.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_ShutdownDetectionSetupException">
<summary>
Looks up a localized string similar to Shutdown detection setup failed:.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_ShutdownException">
<summary>
Looks up a localized string similar to One or more exceptions were thrown during app pool shutdown:.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_TimerCallbackException">
<summary>
Looks up a localized string similar to An exception was thrown from a timer callback:.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_WebSocketException">
<summary>
Looks up a localized string similar to An exception was thrown while processing the WebSocket:.
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_WebSocketsSupportDetected">
<summary>
Looks up a localized string similar to Support for WebSockets has been detected..
</summary>
</member>
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Trace_WebSocketsSupportNotDetected">
<summary>
Looks up a localized string similar to No support for WebSockets has been detected..
</summary>
</member>
<member name="T:System.Web.Routing.RouteCollectionExtensions">
<summary>
Provides extension methods for registering OWIN applications as System.Web routes.
</summary>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String)">
<summary>
Registers a route for the default OWIN application.
</summary>
<param name="routes">The route collection.</param>
<param name="pathBase">The route path to map to the default OWIN application.</param>
<returns>The created route.</returns>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath``1(System.Web.Routing.RouteCollection,System.String,``0)">
<summary>
Registers a route for a specific OWIN application entry point.
</summary>
<typeparam name="TApp">The OWIN application entry point type.</typeparam>
<param name="routes">The route collection.</param>
<param name="pathBase">The route path to map to the given OWIN application.</param>
<param name="app">The OWIN application entry point.</param>
<returns>The created route.</returns>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String,System.Action{Owin.IAppBuilder})">
<summary>
Invokes the System.Action startup delegate to build the OWIN application
and then registers a route for it on the given path.
</summary>
<param name="routes">The route collection.</param>
<param name="pathBase">The route path to map to the given OWIN application.</param>
<param name="startup">A System.Action delegate invoked to build the OWIN application.</param>
<returns>The created route.</returns>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String,System.String)">
<summary>
Registers a route for the default OWIN application.
</summary>
<param name="routes">The route collection.</param>
<param name="name">The given name of the route.</param>
<param name="pathBase">The route path to map to the default OWIN application.</param>
<returns>The created route.</returns>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath``1(System.Web.Routing.RouteCollection,System.String,System.String,``0)">
<summary>
Registers a route for a specific OWIN application entry point.
</summary>
<typeparam name="TApp">The OWIN application entry point type.</typeparam>
<param name="routes">The route collection.</param>
<param name="name">The given name of the route.</param>
<param name="pathBase">The route path to map to the given OWIN application.</param>
<param name="app">The OWIN application entry point.</param>
<returns>The created route.</returns>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinPath(System.Web.Routing.RouteCollection,System.String,System.String,System.Action{Owin.IAppBuilder})">
<summary>
Invokes the System.Action startup delegate to build the OWIN application
and then registers a route for it on the given path.
</summary>
<param name="routes">The route collection.</param>
<param name="name">The given name of the route.</param>
<param name="pathBase">The route path to map to the given OWIN application.</param>
<param name="startup">A System.Action delegate invoked to build the OWIN application.</param>
<returns>The created route.</returns>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.Action{Owin.IAppBuilder})">
<summary>
Provides a way to define routes for an OWIN pipeline.
</summary>
<param name="routes">The route collection.</param>
<param name="routeUrl">The URL pattern for the route.</param>
<param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
<summary>
Provides a way to define routes for an OWIN pipeline.
</summary>
<param name="routes">The route collection.</param>
<param name="routeUrl">The URL pattern for the route.</param>
<param name="defaults">The values to use if the URL does not contain all the parameters.</param>
<param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
<summary>
Provides a way to define routes for an OWIN pipeline.
</summary>
<param name="routes">The route collection.</param>
<param name="routeUrl">The URL pattern for the route.</param>
<param name="defaults">The values to use if the URL does not contain all the parameters.</param>
<param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
<param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
<summary>
Provides a way to define routes for an OWIN pipeline.
</summary>
<param name="routes">The route collection.</param>
<param name="routeUrl">The URL pattern for the route.</param>
<param name="defaults">The values to use if the URL does not contain all the parameters.</param>
<param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
<param name="dataTokens">Custom values that are passed to the route handler, but which are not used to determine whether the route matches a specific URL pattern. These values are passed to the route handler, where they can be used for processing the request.</param>
<param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Action{Owin.IAppBuilder})">
<summary>
Provides a way to define routes for an OWIN pipeline.
</summary>
<param name="routes">The route collection.</param>
<param name="routeName">The name of the route.</param>
<param name="routeUrl">The URL pattern for the route.</param>
<param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
<summary>
Provides a way to define routes for an OWIN pipeline.
</summary>
<param name="routes">The route collection.</param>
<param name="routeName">The name of the route.</param>
<param name="routeUrl">The URL pattern for the route.</param>
<param name="defaults">The values to use if the URL does not contain all the parameters.</param>
<param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
<summary>
Provides a way to define routes for an OWIN pipeline.
</summary>
<param name="routes">The route collection.</param>
<param name="routeName">The name of the route.</param>
<param name="routeUrl">The URL pattern for the route.</param>
<param name="defaults">The values to use if the URL does not contain all the parameters.</param>
<param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
<param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
</member>
<member name="M:System.Web.Routing.RouteCollectionExtensions.MapOwinRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary,System.Action{Owin.IAppBuilder})">
<summary>
Provides a way to define routes for an OWIN pipeline.
</summary>
<param name="routes">The route collection.</param>
<param name="routeName">The name of the route.</param>
<param name="routeUrl">The URL pattern for the route.</param>
<param name="defaults">The values to use if the URL does not contain all the parameters.</param>
<param name="constraints">A regular expression that specifies valid values for a URL parameter.</param>
<param name="dataTokens">Custom values that are passed to the route handler, but which are not used to determine whether the route matches a specific URL pattern. These values are passed to the route handler, where they can be used for processing the request.</param>
<param name="startup">The method to initialize the pipeline that processes requests for the route.</param>
</member>
</members>
</doc>

Binary file not shown.

View File

@ -0,0 +1,335 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Owin.Security.Cookies</name>
</assembly>
<members>
<member name="T:Microsoft.Owin.Security.Cookies.CookieAuthenticationDefaults">
<summary>
Default values related to cookie-based authentication middleware
</summary>
</member>
<member name="F:Microsoft.Owin.Security.Cookies.CookieAuthenticationDefaults.AuthenticationType">
<summary>
The default value used for CookieAuthenticationOptions.AuthenticationType
</summary>
</member>
<member name="F:Microsoft.Owin.Security.Cookies.CookieAuthenticationDefaults.CookiePrefix">
<summary>
The prefix used to provide a default CookieAuthenticationOptions.CookieName
</summary>
</member>
<member name="F:Microsoft.Owin.Security.Cookies.CookieAuthenticationDefaults.ReturnUrlParameter">
<summary>
The default value of the CookieAuthenticationOptions.ReturnUrlParameter
</summary>
</member>
<member name="F:Microsoft.Owin.Security.Cookies.CookieAuthenticationDefaults.LoginPath">
<summary>
The default value used by UseApplicationSignInCookie for the
CookieAuthenticationOptions.LoginPath
</summary>
</member>
<member name="F:Microsoft.Owin.Security.Cookies.CookieAuthenticationDefaults.LogoutPath">
<summary>
The default value used by UseApplicationSignInCookie for the
CookieAuthenticationOptions.LogoutPath
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Cookies.CookieSecureOption">
<summary>
Determines how the identity cookie's security property is set.
</summary>
</member>
<member name="F:Microsoft.Owin.Security.Cookies.CookieSecureOption.SameAsRequest">
<summary>
If the URI that provides the cookie is HTTPS, then the cookie will only be returned to the server on
subsequent HTTPS requests. Otherwise if the URI that provides the cookie is HTTP, then the cookie will
be returned to the server on all HTTP and HTTPS requests. This is the default value because it ensures
HTTPS for all authenticated requests on deployed servers, and also supports HTTP for localhost development
and for servers that do not have HTTPS support.
</summary>
</member>
<member name="F:Microsoft.Owin.Security.Cookies.CookieSecureOption.Never">
<summary>
CookieOptions.Secure is never marked true. Use this value when your login page is HTTPS, but other pages
on the site which are HTTP also require authentication information. This setting is not recommended because
the authentication information provided with an HTTP request may be observed and used by other computers
on your local network or wireless connection.
</summary>
</member>
<member name="F:Microsoft.Owin.Security.Cookies.CookieSecureOption.Always">
<summary>
CookieOptions.Secure is always marked true. Use this value when your login page and all subsequent pages
requiring the authenticated identity are HTTPS. Local development will also need to be done with HTTPS urls.
</summary>
</member>
<member name="T:Owin.CookieAuthenticationExtensions">
<summary>
Extension methods provided by the cookies authentication middleware
</summary>
</member>
<member name="M:Owin.CookieAuthenticationExtensions.UseCookieAuthentication(Owin.IAppBuilder,Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions)">
<summary>
Adds a cookie-based authentication middleware to your web application pipeline.
</summary>
<param name="app">The IAppBuilder passed to your configuration method</param>
<param name="options">An options class that controls the middleware behavior</param>
<returns>The original app parameter</returns>
</member>
<member name="T:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions">
<summary>
Contains the options used by the CookiesAuthenticationMiddleware
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.#ctor">
<summary>
Create an instance of the options initialized with the default values
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.CookieName">
<summary>
Determines the cookie name used to persist the identity. The default value is ".AspNet.Cookies".
This value should be changed if you change the name of the AuthenticationType, especially if your
system uses the cookie authentication middleware multiple times.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.CookieDomain">
<summary>
Determines the domain used to create the cookie. Is not provided by default.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.CookiePath">
<summary>
Determines the path used to create the cookie. The default value is "/" for highest browser compatability.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.CookieHttpOnly">
<summary>
Determines if the browser should allow the cookie to be accessed by client-side javascript. The
default is true, which means the cookie will only be passed to http requests and is not made available
to script on the page.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.CookieSecure">
<summary>
Determines if the cookie should only be transmitted on HTTPS request. The default is to limit the cookie
to HTTPS requests if the page which is doing the SignIn is also HTTPS. If you have an HTTPS sign in page
and portions of your site are HTTP you may need to change this value.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.ExpireTimeSpan">
<summary>
Controls how much time the cookie will remain valid from the point it is created. The expiration
information is in the protected cookie ticket. Because of that an expired cookie will be ignored
even if it is passed to the server after the browser should have purged it
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.SlidingExpiration">
<summary>
The SlidingExpiration is set to true to instruct the middleware to re-issue a new cookie with a new
expiration time any time it processes a request which is more than halfway through the expiration window.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.LoginPath">
<summary>
The LoginPath property informs the middleware that it should change an outgoing 401 Unauthorized status
code into a 302 redirection onto the given login path. The current url which generated the 401 is added
to the LoginPath as a query string parameter named by the ReturnUrlParameter. Once a request to the
LoginPath grants a new SignIn identity, the ReturnUrlParameter value is used to redirect the browser back
to the url which caused the original unauthorized status code.
If the LoginPath is null or empty, the middleware will not look for 401 Unauthorized status codes, and it will
not redirect automatically when a login occurs.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.LogoutPath">
<summary>
If the LogoutPath is provided the middleware then a request to that path will redirect based on the ReturnUrlParameter.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.ReturnUrlParameter">
<summary>
The ReturnUrlParameter determines the name of the query string parameter which is appended by the middleware
when a 401 Unauthorized status code is changed to a 302 redirect onto the login path. This is also the query
string parameter looked for when a request arrives on the login path or logout path, in order to return to the
original url after the action is performed.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.Provider">
<summary>
The Provider may be assigned to an instance of an object created by the application at startup time. The middleware
calls methods on the provider which give the application control at certain points where processing is occuring.
If it is not provided a default instance is supplied which does nothing when the methods are called.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.TicketDataFormat">
<summary>
The TicketDataFormat is used to protect and unprotect the identity and other properties which are stored in the
cookie value. If it is not provided a default data handler is created using the data protection service contained
in the IAppBuilder.Properties. The default data protection service is based on machine key when running on ASP.NET,
and on DPAPI when running in a different process.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationOptions.SystemClock">
<summary>
The SystemClock provides access to the system's current time coordinates. If it is not provided a default instance is
used which calls DateTimeOffset.UtcNow. This is typically not replaced except for unit testing.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Cookies.CookieApplyRedirectContext">
<summary>
Context passed when a Challenge, SignIn, or SignOut causes a redirect in the cookie middleware
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Cookies.CookieAuthenticationProvider">
<summary>
This default implementation of the ICookieAuthenticationProvider may be used if the
application only needs to override a few of the interface methods. This may be used as a base class
or may be instantiated directly.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Cookies.ICookieAuthenticationProvider">
<summary>
Specifies callback methods which the <see cref="T:Microsoft.Owin.Security.Cookies.CookieAuthenticationMiddleware"></see> invokes to enable developer control over the authentication process. /&gt;
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.ICookieAuthenticationProvider.ValidateIdentity(Microsoft.Owin.Security.Cookies.CookieValidateIdentityContext)">
<summary>
Called each time a request identity has been validated by the middleware. By implementing this method the
application may alter or reject the identity which has arrived with the request.
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.ICookieAuthenticationProvider.ResponseSignIn(Microsoft.Owin.Security.Cookies.CookieResponseSignInContext)">
<summary>
Called when an endpoint has provided sign in information before it is converted into a cookie. By
implementing this method the claims and extra information that go into the ticket may be altered.
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.ICookieAuthenticationProvider.ApplyRedirect(Microsoft.Owin.Security.Cookies.CookieApplyRedirectContext)">
<summary>
Called when a Challenge, SignIn, or SignOut causes a redirect in the cookie middleware
</summary>
<param name="context">Contains information about the event</param>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.CookieAuthenticationProvider.#ctor">
<summary>
Create a new instance of the default provider.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.CookieAuthenticationProvider.ValidateIdentity(Microsoft.Owin.Security.Cookies.CookieValidateIdentityContext)">
<summary>
Implements the interface method by invoking the related delegate method
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.CookieAuthenticationProvider.ResponseSignIn(Microsoft.Owin.Security.Cookies.CookieResponseSignInContext)">
<summary>
Implements the interface method by invoking the related delegate method
</summary>
<param name="context"></param>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.CookieAuthenticationProvider.ApplyRedirect(Microsoft.Owin.Security.Cookies.CookieApplyRedirectContext)">
<summary>
Called when a Challenge, SignIn, or SignOut causes a redirect in the cookie middleware
</summary>
<param name="context">Contains information about the event</param>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationProvider.OnValidateIdentity">
<summary>
A delegate assigned to this property will be invoked when the related method is called
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationProvider.OnResponseSignIn">
<summary>
A delegate assigned to this property will be invoked when the related method is called
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieAuthenticationProvider.OnApplyRedirect">
<summary>
A delegate assigned to this property will be invoked when the related method is called
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Cookies.CookieResponseSignInContext">
<summary>
Context object passed to the ICookieAuthenticationProvider method ResponseSignIn.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.CookieResponseSignInContext.#ctor(Microsoft.Owin.IOwinRequest,Microsoft.Owin.IOwinResponse,System.String,System.Security.Claims.ClaimsIdentity,Microsoft.Owin.Security.AuthenticationProperties)">
<summary>
Creates a new instance of the context object.
</summary>
<param name="request">Initializes Request property</param>
<param name="response">Initializes Response property</param>
<param name="authenticationType">Initializes AuthenticationType property</param>
<param name="identity">Initializes Identity property</param>
<param name="properties">Initializes Extra property</param>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieResponseSignInContext.Request">
<summary>
Used to access properties of the current request
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieResponseSignInContext.Response">
<summary>
Used to affect aspects of the current response
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieResponseSignInContext.AuthenticationType">
<summary>
The name of the AuthenticationType creating a cookie
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieResponseSignInContext.Identity">
<summary>
Contains the claims about to be converted into the outgoing cookie.
May be replaced or altered during the ResponseSignIn call.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieResponseSignInContext.Properties">
<summary>
Contains the extra data about to be contained in the outgoing cookie.
May be replaced or altered during the ResponseSignIn call.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Cookies.CookieValidateIdentityContext">
<summary>
Context object passed to the ICookieAuthenticationProvider method ValidateIdentity.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.CookieValidateIdentityContext.#ctor(Microsoft.Owin.Security.AuthenticationTicket)">
<summary>
Creates a new instance of the context object.
</summary>
<param name="ticket">Contains the initial values for identity and extra data</param>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.CookieValidateIdentityContext.ReplaceIdentity(System.Security.Principal.IIdentity)">
<summary>
Called to replace the claims identity. The supplied identity will replace the value of the
Identity property, which determines the identity of the authenticated request.
</summary>
<param name="identity">The identity used as the replacement</param>
</member>
<member name="M:Microsoft.Owin.Security.Cookies.CookieValidateIdentityContext.RejectIdentity">
<summary>
Called to reject the incoming identity. This may be done if the application has determined the
account is no longer active, and the request should be treated as if it was anonymous.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieValidateIdentityContext.Identity">
<summary>
Contains the claims identity arriving with the request. May be altered to change the
details of the authenticated user.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Cookies.CookieValidateIdentityContext.Properties">
<summary>
Contains the extra metadata arriving with the request ticket. May be altered.
</summary>
</member>
</members>
</doc>

Binary file not shown.

View File

@ -0,0 +1,277 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Owin.Security.Facebook</name>
</assembly>
<members>
<member name="T:Owin.FacebookAuthenticationExtensions">
<summary>
Extension methods for using <see cref="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticationMiddleware"/>
</summary>
</member>
<member name="M:Owin.FacebookAuthenticationExtensions.UseFacebookAuthentication(Owin.IAppBuilder,Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions)">
<summary>
Authenticate users using Facebook
</summary>
<param name="app">The <see cref="T:Owin.IAppBuilder"/> passed to the configuration method</param>
<param name="options">Middleware configuration options</param>
<returns>The updated <see cref="T:Owin.IAppBuilder"/></returns>
</member>
<member name="M:Owin.FacebookAuthenticationExtensions.UseFacebookAuthentication(Owin.IAppBuilder,System.String,System.String)">
<summary>
Authenticate users using Facebook
</summary>
<param name="app">The <see cref="T:Owin.IAppBuilder"/> passed to the configuration method</param>
<param name="appId">The appId assigned by Facebook</param>
<param name="appSecret">The appSecret assigned by Facebook</param>
<returns>The updated <see cref="T:Owin.IAppBuilder"/></returns>
</member>
<member name="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticationMiddleware">
<summary>
OWIN middleware for authenticating users using Facebook
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Facebook.FacebookAuthenticationMiddleware.#ctor(Microsoft.Owin.OwinMiddleware,Owin.IAppBuilder,Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions)">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticationMiddleware"/>
</summary>
<param name="next">The next middleware in the OWIN pipeline to invoke</param>
<param name="app">The OWIN application</param>
<param name="options">Configuration options for the middleware</param>
</member>
<member name="M:Microsoft.Owin.Security.Facebook.FacebookAuthenticationMiddleware.CreateHandler">
<summary>
Provides the <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler"/> object for processing authentication-related requests.
</summary>
<returns>An <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler"/> configured with the <see cref="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions"/> supplied to the constructor.</returns>
</member>
<member name="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions">
<summary>
Configuration options for <see cref="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticationMiddleware"/>
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.#ctor">
<summary>
Initializes a new <see cref="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions"/>
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.AppId">
<summary>
Gets or sets the Facebook-assigned appId
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.AppSecret">
<summary>
Gets or sets the Facebook-assigned app secret
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.BackchannelCertificateValidator">
<summary>
Gets or sets the a pinned certificate validator to use to validate the endpoints used
in back channel communications belong to Facebook.
</summary>
<value>
The pinned certificate validator.
</value>
<remarks>If this property is null then the default certificate checks are performed,
validating the subject name and if the signing chain is a trusted party.</remarks>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.BackchannelTimeout">
<summary>
Gets or sets timeout value in milliseconds for back channel communications with Facebook.
</summary>
<value>
The back channel timeout in milliseconds.
</value>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.BackchannelHttpHandler">
<summary>
The HttpMessageHandler used to communicate with Facebook.
This cannot be set at the same time as BackchannelCertificateValidator unless the value
can be downcast to a WebRequestHandler.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.Caption">
<summary>
Get or sets the text that the user can display on a sign in user interface.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.CallbackPath">
<summary>
The request path within the application's base path where the user-agent will be returned.
The middleware will process this request when it arrives.
Default value is "/signin-facebook".
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.SignInAsAuthenticationType">
<summary>
Gets or sets the name of another authentication middleware which will be responsible for actually issuing a user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.Provider">
<summary>
Gets or sets the <see cref="T:Microsoft.Owin.Security.Facebook.IFacebookAuthenticationProvider"/> used to handle authentication events.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.StateDataFormat">
<summary>
Gets or sets the type used to secure data handled by the middleware.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.Scope">
<summary>
A list of permissions to request.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext">
<summary>
Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext.#ctor(Microsoft.Owin.IOwinContext,Newtonsoft.Json.Linq.JObject,System.String,System.String)">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext"/>
</summary>
<param name="context">The OWIN environment</param>
<param name="user">The JSON-serialized user</param>
<param name="accessToken">Facebook Access token</param>
<param name="expires">Seconds until expiration</param>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext.User">
<summary>
Gets the JSON-serialized user
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext.AccessToken">
<summary>
Gets the Facebook access token
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext.ExpiresIn">
<summary>
Gets the Facebook access token expiration time
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext.Id">
<summary>
Gets the Facebook user ID
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext.Name">
<summary>
Gets the user's name
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext.UserName">
<summary>
Gets the Facebook username
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext.Email">
<summary>
Gets the Facebook email
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext.Identity">
<summary>
Gets the <see cref="T:System.Security.Claims.ClaimsIdentity"/> representing the user
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext.Properties">
<summary>
Gets or sets a property bag for common authentication properties
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticationProvider">
<summary>
Default <see cref="T:Microsoft.Owin.Security.Facebook.IFacebookAuthenticationProvider"/> implementation.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Facebook.IFacebookAuthenticationProvider">
<summary>
Specifies callback methods which the <see cref="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticationMiddleware"></see> invokes to enable developer control over the authentication process. /&gt;
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Facebook.IFacebookAuthenticationProvider.Authenticated(Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext)">
<summary>
Invoked whenever Facebook succesfully authenticates a user
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.Facebook.IFacebookAuthenticationProvider.ReturnEndpoint(Microsoft.Owin.Security.Facebook.FacebookReturnEndpointContext)">
<summary>
Invoked prior to the <see cref="T:System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
</summary>
<param name="context"></param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.Facebook.FacebookAuthenticationProvider.#ctor">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.Facebook.FacebookAuthenticationProvider"/>
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Facebook.FacebookAuthenticationProvider.Authenticated(Microsoft.Owin.Security.Facebook.FacebookAuthenticatedContext)">
<summary>
Invoked whenever Facebook succesfully authenticates a user
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.Facebook.FacebookAuthenticationProvider.ReturnEndpoint(Microsoft.Owin.Security.Facebook.FacebookReturnEndpointContext)">
<summary>
Invoked prior to the <see cref="T:System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
</summary>
<param name="context"></param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationProvider.OnAuthenticated">
<summary>
Gets or sets the function that is invoked when the Authenticated method is invoked.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.FacebookAuthenticationProvider.OnReturnEndpoint">
<summary>
Gets or sets the function that is invoked when the ReturnEndpoint method is invoked.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Facebook.FacebookReturnEndpointContext">
<summary>
Provides context information to middleware providers.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Facebook.FacebookReturnEndpointContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.AuthenticationTicket)">
<summary>
</summary>
<param name="context">OWIN environment</param>
<param name="ticket">The authentication ticket</param>
</member>
<member name="T:Microsoft.Owin.Security.Facebook.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.Resources.Exception_OptionMustBeProvided">
<summary>
Looks up a localized string similar to The &apos;{0}&apos; option must be provided..
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Facebook.Resources.Exception_ValidatorHandlerMismatch">
<summary>
Looks up a localized string similar to An ICertificateValidator cannot be specified at the same time as an HttpMessageHandler unless it is a WebRequestHandler..
</summary>
</member>
</members>
</doc>

Binary file not shown.

View File

@ -0,0 +1,231 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Owin.Security.Google</name>
</assembly>
<members>
<member name="T:Owin.GoogleAuthenticationExtensions">
<summary>
Extension methods for using <see cref="T:Microsoft.Owin.Security.Google.GoogleAuthenticationMiddleware"/>
</summary>
</member>
<member name="M:Owin.GoogleAuthenticationExtensions.UseGoogleAuthentication(Owin.IAppBuilder,Microsoft.Owin.Security.Google.GoogleAuthenticationOptions)">
<summary>
Authenticate users using Google
</summary>
<param name="app">The <see cref="T:Owin.IAppBuilder"/> passed to the configuration method</param>
<param name="options">Middleware configuration options</param>
<returns>The updated <see cref="T:Owin.IAppBuilder"/></returns>
</member>
<member name="M:Owin.GoogleAuthenticationExtensions.UseGoogleAuthentication(Owin.IAppBuilder)">
<summary>
Authenticate users using Google
</summary>
<param name="app">The <see cref="T:Owin.IAppBuilder"/> passed to the configuration method</param>
<returns>The updated <see cref="T:Owin.IAppBuilder"/></returns>
</member>
<member name="T:Microsoft.Owin.Security.Google.GoogleAuthenticationMiddleware">
<summary>
OWIN middleware for authenticating users using Facebook
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Google.GoogleAuthenticationMiddleware.#ctor(Microsoft.Owin.OwinMiddleware,Owin.IAppBuilder,Microsoft.Owin.Security.Google.GoogleAuthenticationOptions)">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.Google.GoogleAuthenticationMiddleware"/>
</summary>
<param name="next">The next middleware in the OWIN pipeline to invoke</param>
<param name="app">The OWIN application</param>
<param name="options">Configuration options for the middleware</param>
</member>
<member name="M:Microsoft.Owin.Security.Google.GoogleAuthenticationMiddleware.CreateHandler">
<summary>
Provides the <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler"/> object for processing authentication-related requests.
</summary>
<returns>An <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler"/> configured with the <see cref="T:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions"/> supplied to the constructor.</returns>
</member>
<member name="T:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions">
<summary>
Configuration options for <see cref="T:Microsoft.Owin.Security.Google.GoogleAuthenticationMiddleware"/>
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions.#ctor">
<summary>
Initializes a new <see cref="T:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions"/>
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions.BackchannelCertificateValidator">
<summary>
Gets or sets the a pinned certificate validator to use to validate the endpoints used
in back channel communications belong to Google.
</summary>
<value>
The pinned certificate validator.
</value>
<remarks>If this property is null then the default certificate checks are performed,
validating the subject name and if the signing chain is a trusted party.</remarks>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions.BackchannelTimeout">
<summary>
Gets or sets timeout value in milliseconds for back channel communications with Google.
</summary>
<value>
The back channel timeout.
</value>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions.BackchannelHttpHandler">
<summary>
The HttpMessageHandler used to communicate with Google.
This cannot be set at the same time as BackchannelCertificateValidator unless the value
can be downcast to a WebRequestHandler.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions.Caption">
<summary>
Get or sets the text that the user can display on a sign in user interface.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions.CallbackPath">
<summary>
The request path within the application's base path where the user-agent will be returned.
The middleware will process this request when it arrives.
Default value is "/signin-google".
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions.SignInAsAuthenticationType">
<summary>
Gets or sets the name of another authentication middleware which will be responsible for actually issuing a user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions.Provider">
<summary>
Gets or sets the <see cref="T:Microsoft.Owin.Security.Google.IGoogleAuthenticationProvider"/> used to handle authentication events.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticationOptions.StateDataFormat">
<summary>
Gets or sets the type used to secure data handled by the middleware.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Google.Infrastructure.Message.Add(Microsoft.Owin.IReadableStringCollection,System.Boolean)">
<summary>
Adds the openid parameters from querystring or form body into Namespaces and Properties collections.
This normalizes the parameter name, by replacing the variable namespace alias with the
actual namespace in the collection's key, and will optionally skip any parameters that are
not signed if the strict argument is true.
</summary>
<param name="parameters">The keys and values of the incoming querystring or form body</param>
<param name="strict">True if keys that are not signed should be ignored</param>
</member>
<member name="T:Microsoft.Owin.Security.Google.GoogleAuthenticatedContext">
<summary>
Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Google.GoogleAuthenticatedContext.#ctor(Microsoft.Owin.IOwinContext,System.Security.Claims.ClaimsIdentity,Microsoft.Owin.Security.AuthenticationProperties,System.Xml.Linq.XElement,System.Collections.Generic.IDictionary{System.String,System.String})">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.Google.GoogleAuthenticatedContext"/>
</summary>
<param name="context">The OWIN environment</param>
<param name="identity">The <see cref="T:System.Security.Claims.ClaimsIdentity"/> representing the user</param>
<param name="properties">A property bag for common authentication properties</param>
<param name="responseMessage"></param>
<param name="attributeExchangeProperties"></param>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticatedContext.Identity">
<summary>
Gets or sets the <see cref="T:System.Security.Claims.ClaimsIdentity"/> representing the user
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticatedContext.Properties">
<summary>
Gets or sets a property bag for common authentication properties
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Google.GoogleAuthenticationProvider">
<summary>
Default <see cref="T:Microsoft.Owin.Security.Google.IGoogleAuthenticationProvider"/> implementation.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Google.IGoogleAuthenticationProvider">
<summary>
Specifies callback methods which the <see cref="T:Microsoft.Owin.Security.Google.GoogleAuthenticationMiddleware"></see> invokes to enable developer control over the authentication process. /&gt;
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Google.IGoogleAuthenticationProvider.Authenticated(Microsoft.Owin.Security.Google.GoogleAuthenticatedContext)">
<summary>
Invoked whenever Google succesfully authenticates a user
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.Google.IGoogleAuthenticationProvider.ReturnEndpoint(Microsoft.Owin.Security.Google.GoogleReturnEndpointContext)">
<summary>
Invoked prior to the <see cref="T:System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.Google.GoogleAuthenticationProvider.#ctor">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.Google.GoogleAuthenticationProvider"/>
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Google.GoogleAuthenticationProvider.Authenticated(Microsoft.Owin.Security.Google.GoogleAuthenticatedContext)">
<summary>
Invoked whenever Google succesfully authenticates a user
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.Google.GoogleAuthenticationProvider.ReturnEndpoint(Microsoft.Owin.Security.Google.GoogleReturnEndpointContext)">
<summary>
Invoked prior to the <see cref="T:System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticationProvider.OnAuthenticated">
<summary>
Gets or sets the function that is invoked when the Authenticated method is invoked.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.GoogleAuthenticationProvider.OnReturnEndpoint">
<summary>
Gets or sets the function that is invoked when the ReturnEndpoint method is invoked.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Google.GoogleReturnEndpointContext">
<summary>
Provides context information to middleware providers.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Google.GoogleReturnEndpointContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.AuthenticationTicket)">
<summary>
</summary>
<param name="context">OWIN environment</param>
<param name="ticket">The authentication ticket</param>
</member>
<member name="T:Microsoft.Owin.Security.Google.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Google.Resources.Exception_ValidatorHandlerMismatch">
<summary>
Looks up a localized string similar to An ICertificateValidator cannot be specified at the same time as an HttpMessageHandler unless it is a WebRequestHandler..
</summary>
</member>
</members>
</doc>

View File

@ -0,0 +1,279 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Owin.Security.MicrosoftAccount</name>
</assembly>
<members>
<member name="T:Owin.MicrosoftAccountAuthenticationExtensions">
<summary>
Extension methods for using <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware"/>
</summary>
</member>
<member name="M:Owin.MicrosoftAccountAuthenticationExtensions.UseMicrosoftAccountAuthentication(Owin.IAppBuilder,Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions)">
<summary>
Authenticate users using Microsoft Account
</summary>
<param name="app">The <see cref="T:Owin.IAppBuilder"/> passed to the configuration method</param>
<param name="options">Middleware configuration options</param>
<returns>The updated <see cref="T:Owin.IAppBuilder"/></returns>
</member>
<member name="M:Owin.MicrosoftAccountAuthenticationExtensions.UseMicrosoftAccountAuthentication(Owin.IAppBuilder,System.String,System.String)">
<summary>
Authenticate users using Microsoft Account
</summary>
<param name="app">The <see cref="T:Owin.IAppBuilder"/> passed to the configuration method</param>
<param name="clientId">The application client ID assigned by the Microsoft authentication service</param>
<param name="clientSecret">The application client secret assigned by the Microsoft authentication service</param>
<returns></returns>
</member>
<member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware">
<summary>
OWIN middleware for authenticating users using the Microsoft Account service
</summary>
</member>
<member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware.#ctor(Microsoft.Owin.OwinMiddleware,Owin.IAppBuilder,Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions)">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware"/>
</summary>
<param name="next">The next middleware in the OWIN pipeline to invoke</param>
<param name="app">The OWIN application</param>
<param name="options">Configuration options for the middleware</param>
</member>
<member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware.CreateHandler">
<summary>
Provides the <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler"/> object for processing authentication-related requests.
</summary>
<returns>An <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler"/> configured with the <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions"/> supplied to the constructor.</returns>
</member>
<member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions">
<summary>
Configuration options for <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware"/>
</summary>
</member>
<member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.#ctor">
<summary>
Initializes a new <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions"/>.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.BackchannelCertificateValidator">
<summary>
Gets or sets the a pinned certificate validator to use to validate the endpoints used
in back channel communications belong to Microsoft Account.
</summary>
<value>
The pinned certificate validator.
</value>
<remarks>If this property is null then the default certificate checks are performed,
validating the subject name and if the signing chain is a trusted party.</remarks>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.Caption">
<summary>
Get or sets the text that the user can display on a sign in user interface.
</summary>
<remarks>
The default value is 'Microsoft'
</remarks>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.ClientId">
<summary>
The application client ID assigned by the Microsoft authentication service.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.ClientSecret">
<summary>
The application client secret assigned by the Microsoft authentication service.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.BackchannelTimeout">
<summary>
Gets or sets timeout value in milliseconds for back channel communications with Microsoft.
</summary>
<value>
The back channel timeout.
</value>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.BackchannelHttpHandler">
<summary>
The HttpMessageHandler used to communicate with Microsoft.
This cannot be set at the same time as BackchannelCertificateValidator unless the value
can be downcast to a WebRequestHandler.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.Scope">
<summary>
A list of permissions to request.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.CallbackPath">
<summary>
The request path within the application's base path where the user-agent will be returned.
The middleware will process this request when it arrives.
Default value is "/signin-microsoft".
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.SignInAsAuthenticationType">
<summary>
Gets or sets the name of another authentication middleware which will be responsible for actually issuing a user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.Provider">
<summary>
Gets or sets the <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider"/> used to handle authentication events.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationOptions.StateDataFormat">
<summary>
Gets or sets the type used to secure data handled by the middleware.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider">
<summary>
Specifies callback methods which the <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationMiddleware"></see> invokes to enable developer control over the authentication process. /&gt;
</summary>
</member>
<member name="M:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider.Authenticated(Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext)">
<summary>
Invoked whenever Microsoft succesfully authenticates a user
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider.ReturnEndpoint(Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountReturnEndpointContext)">
<summary>
Invoked prior to the <see cref="T:System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
</summary>
<param name="context"></param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext">
<summary>
Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.#ctor(Microsoft.Owin.IOwinContext,Newtonsoft.Json.Linq.JObject,System.String)">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext"/>
</summary>
<param name="context">The OWIN environment</param>
<param name="user">The JSON-serialized user</param>
<param name="accessToken">The access token provided by the Microsoft authentication service</param>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.User">
<summary>
Gets the JSON-serialized user
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.AccessToken">
<summary>
Gets the access token provided by the Microsoft authenication service
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.Id">
<summary>
Gets the Microsoft Account user ID
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.Name">
<summary>
Gets the user name
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.FirstName">
<summary>
Gets the user first name
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.LastName">
<summary>
Gets the user last name
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.Email">
<summary>
Gets the user email address
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.Identity">
<summary>
Gets the <see cref="T:System.Security.Claims.ClaimsIdentity"/> representing the user
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext.Properties">
<summary>
Gets or sets a property bag for common authentication properties
</summary>
</member>
<member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider">
<summary>
Default <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.IMicrosoftAccountAuthenticationProvider"/> implementation.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.#ctor">
<summary>
Initializes a new <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider"/>
</summary>
</member>
<member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.Authenticated(Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticatedContext)">
<summary>
Invoked whenever Microsoft succesfully authenticates a user
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.ReturnEndpoint(Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountReturnEndpointContext)">
<summary>
Invoked prior to the <see cref="T:System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/></param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.OnAuthenticated">
<summary>
Gets or sets the function that is invoked when the Authenticated method is invoked.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountAuthenticationProvider.OnReturnEndpoint">
<summary>
Gets or sets the function that is invoked when the ReturnEndpoint method is invoked.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountReturnEndpointContext">
<summary>
Provides context information to middleware providers.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountReturnEndpointContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.AuthenticationTicket)">
<summary>
Initializes a new <see cref="T:Microsoft.Owin.Security.MicrosoftAccount.MicrosoftAccountReturnEndpointContext"/>.
</summary>
<param name="context">OWIN environment</param>
<param name="ticket">The authentication ticket</param>
</member>
<member name="T:Microsoft.Owin.Security.MicrosoftAccount.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.Resources.Exception_OptionMustBeProvided">
<summary>
Looks up a localized string similar to The &apos;{0}&apos; option must be provided..
</summary>
</member>
<member name="P:Microsoft.Owin.Security.MicrosoftAccount.Resources.Exception_ValidatorHandlerMismatch">
<summary>
Looks up a localized string similar to An ICertificateValidator cannot be specified at the same time as an HttpMessageHandler unless it is a WebRequestHandler..
</summary>
</member>
</members>
</doc>

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,338 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Owin.Security.Twitter</name>
</assembly>
<members>
<member name="T:Microsoft.Owin.Security.Twitter.Messages.AccessToken">
<summary>
Twitter access token
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Twitter.Messages.RequestToken">
<summary>
Twitter request token
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.Messages.RequestToken.Token">
<summary>
Gets or sets the Twitter token
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.Messages.RequestToken.TokenSecret">
<summary>
Gets or sets the Twitter token secret
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.Messages.RequestToken.Properties">
<summary>
Gets or sets a property bag for common authentication properties
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.Messages.AccessToken.UserId">
<summary>
Gets or sets the Twitter User ID
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.Messages.AccessToken.ScreenName">
<summary>
Gets or sets the Twitter screen name
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Twitter.Messages.RequestTokenSerializer">
<summary>
Serializes and deserializes Twitter request and access tokens so that they can be used by other application components.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.Messages.RequestTokenSerializer.Serialize(Microsoft.Owin.Security.Twitter.Messages.RequestToken)">
<summary>
Serialize a request token
</summary>
<param name="model">The token to serialize</param>
<returns>A byte array containing the serialized token</returns>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.Messages.RequestTokenSerializer.Deserialize(System.Byte[])">
<summary>
Deserializes a request token
</summary>
<param name="data">A byte array containing the serialized token</param>
<returns>The Twitter request token</returns>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.Messages.RequestTokenSerializer.Write(System.IO.BinaryWriter,Microsoft.Owin.Security.Twitter.Messages.RequestToken)">
<summary>
Writes a Twitter request token as a series of bytes. Used by the <see cref="M:Microsoft.Owin.Security.Twitter.Messages.RequestTokenSerializer.Serialize(Microsoft.Owin.Security.Twitter.Messages.RequestToken)"/> method.
</summary>
<param name="writer">The writer to use in writing the token</param>
<param name="token">The token to write</param>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.Messages.RequestTokenSerializer.Read(System.IO.BinaryReader)">
<summary>
Reads a Twitter request token from a series of bytes. Used by the <see cref="M:Microsoft.Owin.Security.Twitter.Messages.RequestTokenSerializer.Deserialize(System.Byte[])"/> method.
</summary>
<param name="reader">The reader to use in reading the token bytes</param>
<returns>The token</returns>
</member>
<member name="T:Microsoft.Owin.Security.Twitter.Messages.Serializers">
<summary>
Provides access to a request token serializer
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.Messages.Serializers.RequestToken">
<summary>
Gets or sets a statically-avaliable serializer object. The value for this property will be <see cref="T:Microsoft.Owin.Security.Twitter.Messages.RequestTokenSerializer"/> by default.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Twitter.ITwitterAuthenticationProvider">
<summary>
Specifies callback methods which the <see cref="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticationMiddleware"></see> invokes to enable developer control over the authentication process. /&gt;
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.ITwitterAuthenticationProvider.Authenticated(Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext)">
<summary>
Invoked whenever Twitter succesfully authenticates a user
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.ITwitterAuthenticationProvider.ReturnEndpoint(Microsoft.Owin.Security.Twitter.TwitterReturnEndpointContext)">
<summary>
Invoked prior to the <see cref="T:System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
</summary>
<param name="context"></param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext">
<summary>
Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext.#ctor(Microsoft.Owin.IOwinContext,System.String,System.String,System.String,System.String)">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext"/>
</summary>
<param name="context">The OWIN environment</param>
<param name="userId">Twitter user ID</param>
<param name="screenName">Twitter screen name</param>
<param name="accessToken">Twitter access token</param>
<param name="accessTokenSecret">Twitter access token secret</param>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext.UserId">
<summary>
Gets the Twitter user ID
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext.ScreenName">
<summary>
Gets the Twitter screen name
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext.AccessToken">
<summary>
Gets the Twitter access token
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext.AccessTokenSecret">
<summary>
Gets the Twitter access token secret
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext.Identity">
<summary>
Gets the <see cref="T:System.Security.Claims.ClaimsIdentity"/> representing the user
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext.Properties">
<summary>
Gets or sets a property bag for common authentication properties
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticationProvider">
<summary>
Default <see cref="T:Microsoft.Owin.Security.Twitter.ITwitterAuthenticationProvider"/> implementation.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.TwitterAuthenticationProvider.#ctor">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticationProvider"/>
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.TwitterAuthenticationProvider.Authenticated(Microsoft.Owin.Security.Twitter.TwitterAuthenticatedContext)">
<summary>
Invoked whenever Twitter succesfully authenticates a user
</summary>
<param name="context">Contains information about the login session as well as the user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.TwitterAuthenticationProvider.ReturnEndpoint(Microsoft.Owin.Security.Twitter.TwitterReturnEndpointContext)">
<summary>
Invoked prior to the <see cref="T:System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
</summary>
<param name="context"></param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completed operation.</returns>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationProvider.OnAuthenticated">
<summary>
Gets or sets the function that is invoked when the Authenticated method is invoked.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationProvider.OnReturnEndpoint">
<summary>
Gets or sets the function that is invoked when the ReturnEndpoint method is invoked.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Twitter.TwitterReturnEndpointContext">
<summary>
Provides context information to middleware providers.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.TwitterReturnEndpointContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.AuthenticationTicket)">
<summary>
Initializes a new <see cref="T:Microsoft.Owin.Security.Twitter.TwitterReturnEndpointContext"/>.
</summary>
<param name="context">OWIN environment</param>
<param name="ticket">The authentication ticket</param>
</member>
<member name="T:Microsoft.Owin.Security.Twitter.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.Resources.Exception_OptionMustBeProvided">
<summary>
Looks up a localized string similar to The &apos;{0}&apos; option must be provided..
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.Resources.Exception_ValidatorHandlerMismatch">
<summary>
Looks up a localized string similar to An ICertificateValidator cannot be specified at the same time as an HttpMessageHandler unless it is a WebRequestHandler..
</summary>
</member>
<member name="T:Owin.TwitterAuthenticationExtensions">
<summary>
Extension methods for using <see cref="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticationMiddleware"/>
</summary>
</member>
<member name="M:Owin.TwitterAuthenticationExtensions.UseTwitterAuthentication(Owin.IAppBuilder,Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions)">
<summary>
Authenticate users using Twitter
</summary>
<param name="app">The <see cref="T:Owin.IAppBuilder"/> passed to the configuration method</param>
<param name="options">Middleware configuration options</param>
<returns>The updated <see cref="T:Owin.IAppBuilder"/></returns>
</member>
<member name="M:Owin.TwitterAuthenticationExtensions.UseTwitterAuthentication(Owin.IAppBuilder,System.String,System.String)">
<summary>
Authenticate users using Twitter
</summary>
<param name="app">The <see cref="T:Owin.IAppBuilder"/> passed to the configuration method</param>
<param name="consumerKey">The Twitter-issued consumer key</param>
<param name="consumerSecret">The Twitter-issued consumer secret</param>
<returns>The updated <see cref="T:Owin.IAppBuilder"/></returns>
</member>
<member name="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticationMiddleware">
<summary>
OWIN middleware for authenticating users using Twitter
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.TwitterAuthenticationMiddleware.#ctor(Microsoft.Owin.OwinMiddleware,Owin.IAppBuilder,Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions)">
<summary>
Initializes a <see cref="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticationMiddleware"/>
</summary>
<param name="next">The next middleware in the OWIN pipeline to invoke</param>
<param name="app">The OWIN application</param>
<param name="options">Configuration options for the middleware</param>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.TwitterAuthenticationMiddleware.CreateHandler">
<summary>
Provides the <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler"/> object for processing authentication-related requests.
</summary>
<returns>An <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler"/> configured with the <see cref="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions"/> supplied to the constructor.</returns>
</member>
<member name="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions">
<summary>
Options for the Twitter authentication middleware.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions"/> class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.ConsumerKey">
<summary>
Gets or sets the consumer key used to communicate with Twitter.
</summary>
<value>The consumer key used to communicate with Twitter.</value>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.ConsumerSecret">
<summary>
Gets or sets the consumer secret used to sign requests to Twitter.
</summary>
<value>The consumer secret used to sign requests to Twitter.</value>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.BackchannelTimeout">
<summary>
Gets or sets timeout value in milliseconds for back channel communications with Twitter.
</summary>
<value>
The back channel timeout.
</value>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.BackchannelCertificateValidator">
<summary>
Gets or sets the a pinned certificate validator to use to validate the endpoints used
in back channel communications belong to Twitter.
</summary>
<value>
The pinned certificate validator.
</value>
<remarks>If this property is null then the default certificate checks are performed,
validating the subject name and if the signing chain is a trusted party.</remarks>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.BackchannelHttpHandler">
<summary>
The HttpMessageHandler used to communicate with Twitter.
This cannot be set at the same time as BackchannelCertificateValidator unless the value
can be downcast to a WebRequestHandler.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.Caption">
<summary>
Get or sets the text that the user can display on a sign in user interface.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.CallbackPath">
<summary>
The request path within the application's base path where the user-agent will be returned.
The middleware will process this request when it arrives.
Default value is "/signin-twitter".
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.SignInAsAuthenticationType">
<summary>
Gets or sets the name of another authentication middleware which will be responsible for actually issuing a user <see cref="T:System.Security.Claims.ClaimsIdentity"/>.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.StateDataFormat">
<summary>
Gets or sets the type used to secure data handled by the middleware.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Twitter.TwitterAuthenticationOptions.Provider">
<summary>
Gets or sets the <see cref="T:Microsoft.Owin.Security.Twitter.ITwitterAuthenticationProvider"/> used to handle authentication events.
</summary>
</member>
</members>
</doc>

Binary file not shown.

View File

@ -0,0 +1,435 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Owin.Security</name>
</assembly>
<members>
<member name="T:Microsoft.Owin.Security.AppBuilderSecurityExtensions">
<summary>
Provides extensions methods for app.Property values that are only needed by implementations of authentication middleware.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.AppBuilderSecurityExtensions.GetDefaultSignInAsAuthenticationType(Owin.IAppBuilder)">
<summary>
Returns the previously set AuthenticationType that external sign in middleware should use when the
browser navigates back to their return url.
</summary>
<param name="app">App builder passed to the application startup code</param>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.AppBuilderSecurityExtensions.SetDefaultSignInAsAuthenticationType(Owin.IAppBuilder,System.String)">
<summary>
Called by middleware to change the name of the AuthenticationType that external middleware should use
when the browser navigates back to their return url.
</summary>
<param name="app">App builder passed to the application startup code</param>
<param name="authenticationType">AuthenticationType that external middleware should sign in as.</param>
</member>
<member name="T:Microsoft.Owin.Security.AuthenticationMode">
<summary>
Controls the behavior of authentication middleware
</summary>
</member>
<member name="F:Microsoft.Owin.Security.AuthenticationMode.Active">
<summary>
In Active mode the authentication middleware will alter the user identity as the request arrives, and
will also alter a plain 401 as the response leaves.
</summary>
</member>
<member name="F:Microsoft.Owin.Security.AuthenticationMode.Passive">
<summary>
In Passive mode the authentication middleware will only provide user identity when asked, and will only
alter 401 responses where the authentication type named in the extra challenge data.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.AuthenticationOptions">
<summary>
Base Options for all authentication middleware
</summary>
</member>
<member name="M:Microsoft.Owin.Security.AuthenticationOptions.#ctor(System.String)">
<summary>
Initialize properties of AuthenticationOptions base class
</summary>
<param name="authenticationType">Assigned to the AuthenticationType property</param>
</member>
<member name="P:Microsoft.Owin.Security.AuthenticationOptions.AuthenticationType">
<summary>
The AuthenticationType in the options corresponds to the IIdentity AuthenticationType property. A different
value may be assigned in order to use the same authentication middleware type more than once in a pipeline.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.AuthenticationOptions.AuthenticationMode">
<summary>
If Active the authentication middleware alter the request user coming in and
alter 401 Unauthorized responses going out. If Passive the authentication middleware will only provide
identity and alter responses when explicitly indicated by the AuthenticationType.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.AuthenticationOptions.Description">
<summary>
Additional information about the authentication type which is made available to the application.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Constants">
<summary>
String constants used only by the Security assembly
</summary>
</member>
<member name="F:Microsoft.Owin.Security.Constants.DefaultSignInAsAuthenticationType">
<summary>
Used by middleware extension methods to coordinate the default value Options property SignInAsAuthenticationType
</summary>
</member>
<member name="T:Microsoft.Owin.Security.DataProtection.IDataProtectionProvider">
<summary>
Factory used to create IDataProtection instances
</summary>
</member>
<member name="M:Microsoft.Owin.Security.DataProtection.IDataProtectionProvider.Create(System.String[])">
<summary>
Returns a new instance of IDataProtection for the provider.
</summary>
<param name="purposes">Additional entropy used to ensure protected data may only be unprotected for the correct purposes.</param>
<returns>An instance of a data protection service</returns>
</member>
<member name="T:Microsoft.Owin.Security.DataProtection.IDataProtector">
<summary>
Service used to protect and unprotect data
</summary>
</member>
<member name="M:Microsoft.Owin.Security.DataProtection.IDataProtector.Protect(System.Byte[])">
<summary>
Called to protect user data.
</summary>
<param name="userData">The original data that must be protected</param>
<returns>A different byte array that may be unprotected or altered only by software that has access to
the an identical IDataProtection service.</returns>
</member>
<member name="M:Microsoft.Owin.Security.DataProtection.IDataProtector.Unprotect(System.Byte[])">
<summary>
Called to unprotect user data
</summary>
<param name="protectedData">The byte array returned by a call to Protect on an identical IDataProtection service.</param>
<returns>The byte array identical to the original userData passed to Protect.</returns>
</member>
<member name="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler`1">
<summary>
Base class for the per-request work performed by most authentication middleware.
</summary>
<typeparam name="TOptions">Specifies which type for of AuthenticationOptions property</typeparam>
</member>
<member name="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler">
<summary>
Base class for the per-request work performed by most authentication middleware.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.TeardownAsync">
<summary>
Called once per request after Initialize and Invoke.
</summary>
<returns>async completion</returns>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.InvokeAsync">
<summary>
Called once by common code after initialization. If an authentication middleware responds directly to
specifically known paths it must override this virtual, compare the request path to it's known paths,
provide any response information as appropriate, and true to stop further processing.
</summary>
<returns>Returning false will cause the common code to call the next middleware in line. Returning true will
cause the common code to begin the async completion journey without calling the rest of the middleware
pipeline.</returns>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.AuthenticateAsync">
<summary>
Causes the authentication logic in AuthenticateCore to be performed for the current request
at most once and returns the results. Calling Authenticate more than once will always return
the original value.
This method should always be called instead of calling AuthenticateCore directly.
</summary>
<returns>The ticket data provided by the authentication logic</returns>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.AuthenticateCoreAsync">
<summary>
The core authentication logic which must be provided by the handler. Will be invoked at most
once per request. Do not call directly, call the wrapping Authenticate method instead.
</summary>
<returns>The ticket data provided by the authentication logic</returns>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseAsync">
<summary>
Causes the ApplyResponseCore to be invoked at most once per request. This method will be
invoked either earlier, when the response headers are sent as a result of a response write or flush,
or later, as the last step when the original async call to the middleware is returning.
</summary>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseCoreAsync">
<summary>
Core method that may be overridden by handler. The default behavior is to call two common response
activities, one that deals with sign-in/sign-out concerns, and a second to deal with 401 challenges.
</summary>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseGrantAsync">
<summary>
Override this method to dela with sign-in/sign-out concerns, if an authentication scheme in question
deals with grant/revoke as part of it's request flow. (like setting/deleting cookies)
</summary>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseChallengeAsync">
<summary>
Override this method to dela with 401 challenge concerns, if an authentication scheme in question
deals an authentication interaction as part of it's request flow. (like adding a response header, or
changing the 401 result to 302 of a login page or external sign-in location.)
</summary>
<returns></returns>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler`1.Initialize(`0,Microsoft.Owin.IOwinContext)">
<summary>
Initialize is called once per request to contextualize this instance with appropriate state.
</summary>
<param name="options">The original options passed by the application control behavior</param>
<param name="context">The utility object to observe the current request and response</param>
<returns>async completion</returns>
</member>
<member name="T:Microsoft.Owin.Security.ICertificateValidator">
<summary>
Interface for providing pinned certificate validation, which checks HTTPS
communication against a known good list of certificates to protect against
compromised or rogue CAs issuing certificates for hosts without the
knowledge of the host owner.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.ICertificateValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
<summary>
Verifies the remote Secure Sockets Layer (SSL) certificate used for authentication.
</summary>
<param name="sender">An object that contains state information for this validation.</param>
<param name="certificate">The certificate used to authenticate the remote party.</param>
<param name="chain">The chain of certificate authorities associated with the remote certificate.</param>
<param name="sslPolicyErrors">One or more errors associated with the remote certificate.</param>
<returns>A Boolean value that determines whether the specified certificate is accepted for authentication.</returns>
</member>
<member name="T:Microsoft.Owin.Security.CertificateThumbprintValidator">
<summary>
Provides pinned certificate validation based on the certificate thumbprint.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.CertificateThumbprintValidator.#ctor(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.CertificateThumbprintValidator"/> class.
</summary>
<param name="validThumbprints">A set of thumbprints which are valid for an HTTPS request.</param>
</member>
<member name="M:Microsoft.Owin.Security.CertificateThumbprintValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
<summary>
Validates that the certificate thumbprints in the signing chain match at least one whitelisted thumbprint.
</summary>
<param name="sender">An object that contains state information for this validation.</param>
<param name="certificate">The certificate used to authenticate the remote party.</param>
<param name="chain">The chain of certificate authorities associated with the remote certificate.</param>
<param name="sslPolicyErrors">One or more errors associated with the remote certificate.</param>
<returns>A Boolean value that determines whether the specified certificate is accepted for authentication.</returns>
</member>
<member name="T:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider">
<summary>
Used to provide the data protection services that are derived from the Data Protection API. It is the best choice of
data protection when you application is not hosted by ASP.NET and all processes are running as the same domain identity.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider.#ctor">
<summary>
Initializes a new DpapiDataProtectionProvider with a random application
name. This is only useful to protect data for the duration of the
current application execution.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider.#ctor(System.String)">
<summary>
Initializes a new DpapiDataProtectionProvider which uses the given
appName as part of the protection algorithm
</summary>
<param name="appName">A user provided value needed to round-trip secured
data. The default value comes from the IAppBuilder.Properties["owin.AppName"]
when self-hosted.</param>
</member>
<member name="M:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider.Create(System.String[])">
<summary>
Returns a new instance of IDataProtection for the provider.
</summary>
<param name="purposes">Additional entropy used to ensure protected data may only be unprotected for the correct purposes.</param>
<returns>An instance of a data protection service</returns>
</member>
<member name="T:Microsoft.Owin.Security.Infrastructure.SecurityHelper">
<summary>
Helper code used when implementing authentication middleware
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.#ctor(Microsoft.Owin.IOwinContext)">
<summary>
Helper code used when implementing authentication middleware
</summary>
<param name="request"></param>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.AddUserIdentity(System.Security.Principal.IIdentity)">
<summary>
Add an additional ClaimsIdentity to the ClaimsPrincipal in the "server.User" environment key
</summary>
<param name="identity"></param>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.LookupChallenge(System.String,Microsoft.Owin.Security.AuthenticationMode)">
<summary>
Find response challenge details for a specific authentication middleware
</summary>
<param name="authenticationType">The authentication type to look for</param>
<param name="authenticationMode">The authentication mode the middleware is running under</param>
<returns>The information instructing the middleware how it should behave</returns>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.LookupSignIn(System.String)">
<summary>
Find response sign-in details for a specific authentication middleware
</summary>
<param name="authenticationType">The authentication type to look for</param>
<returns>The information instructing the middleware how it should behave</returns>
</member>
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.LookupSignOut(System.String,Microsoft.Owin.Security.AuthenticationMode)">
<summary>
Find response sign-out details for a specific authentication middleware
</summary>
<param name="authenticationType">The authentication type to look for</param>
<param name="authenticationMode">The authentication mode the middleware is running under</param>
<returns>The information instructing the middleware how it should behave</returns>
</member>
<member name="T:Microsoft.Owin.Security.Provider.BaseContext`1">
<summary>
Base class used for certain event contexts
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Provider.EndpointContext`1">
<summary>
Base class used for certain event contexts
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Provider.EndpointContext`1.#ctor(Microsoft.Owin.IOwinContext,`0)">
<summary>
Creates an instance of this context
</summary>
</member>
<member name="M:Microsoft.Owin.Security.Provider.EndpointContext`1.RequestCompleted">
<summary>
Prevents the request from being processed further by other components.
IsRequestCompleted becomes true after calling.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Provider.EndpointContext`1.IsRequestCompleted">
<summary>
True if the request should not be processed further by other components.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Resources.Exception_AuthenticationTokenDoesNotProvideSyncMethods">
<summary>
Looks up a localized string similar to The AuthenticationTokenProvider&apos;s required synchronous events have not been registered..
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Resources.Exception_DefaultDpapiRequiresAppNameKey">
<summary>
Looks up a localized string similar to The default data protection provider may only be used when the IAppBuilder.Properties contains an appropriate &apos;host.AppName&apos; key..
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Resources.Exception_MissingDefaultSignInAsAuthenticationType">
<summary>
Looks up a localized string similar to A default value for SignInAsAuthenticationType was not found in IAppBuilder Properties. This can happen if your authentication middleware are added in the wrong order, or if a call to UseExternalSignInCookie or UseSignInCookies has been removed..
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Resources.Exception_UnhookAuthenticationStateType">
<summary>
Looks up a localized string similar to The state passed to UnhookAuthentication may only be the return value from HookAuthentication..
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Resources.Warning_CookieNotFound">
<summary>
Looks up a localized string similar to {0} cookie not found..
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Resources.Warning_CookieStateMismatch">
<summary>
Looks up a localized string similar to {0} correlation cookie and state property mismatch..
</summary>
</member>
<member name="P:Microsoft.Owin.Security.Resources.Warning_StateNotFound">
<summary>
Looks up a localized string similar to {0} state property not found..
</summary>
</member>
<member name="T:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator">
<summary>
Provides pinned certificate validation based on the subject key identifier of the certificate.
</summary>
</member>
<member name="M:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator.#ctor(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator"/> class.
</summary>
<param name="validSubjectKeyIdentifiers">A set of subject key identifiers which are valid for an HTTPS request.</param>
</member>
<member name="T:Microsoft.Owin.Security.SubjectPublicKeyInfoAlgorithm">
<summary>
The algorithm used to generate the subject public key information blob hashes.
</summary>
</member>
<member name="T:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator">
<summary>
Implements a cert pinning validator passed on
http://datatracker.ietf.org/doc/draft-ietf-websec-key-pinning/?include_text=1
</summary>
</member>
<member name="M:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator.#ctor(System.Collections.Generic.IEnumerable{System.String},Microsoft.Owin.Security.SubjectPublicKeyInfoAlgorithm)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator"/> class.
</summary>
<param name="validBase64EncodedSubjectPublicKeyInfoHashes">A collection of valid base64 encoded hashes of the certificate public key information blob.</param>
<param name="algorithm">The algorithm used to generate the hashes.</param>
</member>
<member name="M:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
<summary>
Validates at least one SPKI hash is known.
</summary>
<param name="sender">An object that contains state information for this validation.</param>
<param name="certificate">The certificate used to authenticate the remote party.</param>
<param name="chain">The chain of certificate authorities associated with the remote certificate.</param>
<param name="sslPolicyErrors">One or more errors associated with the remote certificate.</param>
<returns>A Boolean value that determines whether the specified certificate is accepted for authentication.</returns>
</member>
<member name="M:Microsoft.Win32.NativeMethods.CryptEncodeObject(System.UInt32,System.IntPtr,Microsoft.Win32.NativeMethods.CERT_PUBLIC_KEY_INFO@,System.Byte[],System.UInt32@)">
<summary>
Encodes a structure of the type indicated by the value of the lpszStructType parameter.
</summary>
<param name="dwCertEncodingType">Type of encoding used.</param>
<param name="lpszStructType">The high-order word is zero, the low-order word specifies the integer identifier for the type of the specified structure so
we can use the constants in http://msdn.microsoft.com/en-us/library/windows/desktop/aa378145%28v=vs.85%29.aspx</param>
<param name="pvStructInfo">A pointer to the structure to be encoded.</param>
<param name="pbEncoded">A pointer to a buffer to receive the encoded structure. This parameter can be NULL to retrieve the size of this information for memory allocation purposes.</param>
<param name="pcbEncoded">A pointer to a DWORD variable that contains the size, in bytes, of the buffer pointed to by the pbEncoded parameter.</param>
<returns></returns>
</member>
</members>
</doc>

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

BIN
references/Owin.dll Normal file

Binary file not shown.

BIN
references/SSRSHelper.dll Normal file

Binary file not shown.

BIN
references/SSRSHelper.pdb Normal file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,836 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.Helpers</name>
</assembly>
<members>
<member name="T:System.Web.Helpers.Chart">
<summary>Displays data in the form of a graphical chart.</summary>
</member>
<member name="M:System.Web.Helpers.Chart.#ctor(System.Int32,System.Int32,System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.Chart" /> class.</summary>
<param name="width">The width, in pixels, of the complete chart image.</param>
<param name="height">The height, in pixels, of the complete chart image.</param>
<param name="theme">(Optional) The template (theme) to apply to the chart.</param>
<param name="themePath">(Optional) The template (theme) path and file name to apply to the chart.</param>
</member>
<member name="M:System.Web.Helpers.Chart.AddLegend(System.String,System.String)">
<summary>Adds a legend to the chart.</summary>
<returns>The chart.</returns>
<param name="title">The text of the legend title.</param>
<param name="name">The unique name of the legend.</param>
</member>
<member name="M:System.Web.Helpers.Chart.AddSeries(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Collections.IEnumerable,System.String,System.Collections.IEnumerable,System.String)">
<summary>Provides data points and series attributes for the chart.</summary>
<returns>The chart.</returns>
<param name="name">The unique name of the series.</param>
<param name="chartType">The chart type of a series.</param>
<param name="chartArea">The name of the chart area that is used to plot the data series.</param>
<param name="axisLabel">The axis label text for the series.</param>
<param name="legend">The name of the series that is associated with the legend.</param>
<param name="markerStep">The granularity of data point markers.</param>
<param name="xValue">The values to plot along the x-axis.</param>
<param name="xField">The name of the field for x-values.</param>
<param name="yValues">The values to plot along the y-axis.</param>
<param name="yFields">A comma-separated list of name or names of the field or fields for y-values.</param>
</member>
<member name="M:System.Web.Helpers.Chart.AddTitle(System.String,System.String)">
<summary>Adds a title to the chart.</summary>
<returns>The chart.</returns>
<param name="text">The title text.</param>
<param name="name">The unique name of the title.</param>
</member>
<member name="M:System.Web.Helpers.Chart.DataBindCrossTable(System.Collections.IEnumerable,System.String,System.String,System.String,System.String,System.String)">
<summary>Binds a chart to a data table, where one series is created for each unique value in a column.</summary>
<returns>The chart.</returns>
<param name="dataSource">The chart data source.</param>
<param name="groupByField">The name of the column that is used to group data into the series.</param>
<param name="xField">The name of the column for x-values.</param>
<param name="yFields">A comma-separated list of names of the columns for y-values.</param>
<param name="otherFields">Other data point properties that can be bound.</param>
<param name="pointSortOrder">The order in which the series will be sorted. The default is "Ascending".</param>
</member>
<member name="M:System.Web.Helpers.Chart.DataBindTable(System.Collections.IEnumerable,System.String)">
<summary>Creates and binds series data to the specified data table, and optionally populates multiple x-values.</summary>
<returns>The chart.</returns>
<param name="dataSource">The chart data source. This can be can be any <see cref="T:System.Collections.IEnumerable" /> object.</param>
<param name="xField">The name of the table column used for the series x-values.</param>
</member>
<member name="P:System.Web.Helpers.Chart.FileName">
<summary>Gets or sets the name of the file that contains the chart image.</summary>
<returns>The name of the file.</returns>
</member>
<member name="M:System.Web.Helpers.Chart.GetBytes(System.String)">
<summary>Returns a chart image as a byte array.</summary>
<returns>The chart.</returns>
<param name="format">The image format. The default is "jpeg".</param>
</member>
<member name="M:System.Web.Helpers.Chart.GetFromCache(System.String)">
<summary>Retrieves the specified chart from the cache.</summary>
<returns>The chart.</returns>
<param name="key">The ID of the cache item that contains the chart to retrieve. The key is set when you call the <see cref="M:System.Web.Helpers.Chart.SaveToCache(System.String,System.Int32,System.Boolean)" /> method.</param>
</member>
<member name="P:System.Web.Helpers.Chart.Height">
<summary>Gets or sets the height, in pixels, of the chart image.</summary>
<returns>The chart height.</returns>
</member>
<member name="M:System.Web.Helpers.Chart.Save(System.String,System.String)">
<summary>Saves a chart image to the specified file.</summary>
<returns>The chart.</returns>
<param name="path">The location and name of the image file.</param>
<param name="format">The image file format, such as "png" or "jpeg".</param>
</member>
<member name="M:System.Web.Helpers.Chart.SaveToCache(System.String,System.Int32,System.Boolean)">
<summary>Saves a chart in the system cache.</summary>
<returns>The ID of the cache item that contains the chart.</returns>
<param name="key">The ID of the chart in the cache.</param>
<param name="minutesToCache">The number of minutes to keep the chart image in the cache. The default is 20.</param>
<param name="slidingExpiration">true to indicate that the chart cache item's expiration is reset each time the item is accessed, or false to indicate that the expiration is based on an absolute interval since the time that the item was added to the cache. The default is true.</param>
</member>
<member name="M:System.Web.Helpers.Chart.SaveXml(System.String)">
<summary>Saves a chart as an XML file.</summary>
<returns>The chart.</returns>
<param name="path">The path and name of the XML file.</param>
</member>
<member name="M:System.Web.Helpers.Chart.SetXAxis(System.String,System.Double,System.Double)">
<summary>Sets values for the horizontal axis.</summary>
<returns>The chart.</returns>
<param name="title">The title of the x-axis.</param>
<param name="min">The minimum value for the x-axis.</param>
<param name="max">The maximum value for the x-axis.</param>
</member>
<member name="M:System.Web.Helpers.Chart.SetYAxis(System.String,System.Double,System.Double)">
<summary>Sets values for the vertical axis.</summary>
<returns>The chart.</returns>
<param name="title">The title of the y-axis.</param>
<param name="min">The minimum value for the y-axis.</param>
<param name="max">The maximum value for the y-axis.</param>
</member>
<member name="M:System.Web.Helpers.Chart.ToWebImage(System.String)">
<summary>Creates a <see cref="T:System.Web.Helpers.WebImage" /> object based on the current <see cref="T:System.Web.Helpers.Chart" /> object.</summary>
<returns>The chart.</returns>
<param name="format">The format of the image to save the <see cref="T:System.Web.Helpers.WebImage" /> object as. The default is "jpeg". The <paramref name="format" /> parameter is not case sensitive.</param>
</member>
<member name="P:System.Web.Helpers.Chart.Width">
<summary>Gets or set the width, in pixels, of the chart image.</summary>
<returns>The chart width.</returns>
</member>
<member name="M:System.Web.Helpers.Chart.Write(System.String)">
<summary>Renders the output of the <see cref="T:System.Web.Helpers.Chart" /> object as an image.</summary>
<returns>The chart.</returns>
<param name="format">The format of the image. The default is "jpeg".</param>
</member>
<member name="M:System.Web.Helpers.Chart.WriteFromCache(System.String,System.String)">
<summary>Renders the output of a <see cref="T:System.Web.Helpers.Chart" /> object that has been cached as an image.</summary>
<returns>The chart.</returns>
<param name="key">The ID of the chart in the cache.</param>
<param name="format">The format of the image. The default is "jpeg".</param>
</member>
<member name="T:System.Web.Helpers.ChartTheme">
<summary>Specifies visual themes for a <see cref="T:System.Web.Helpers.Chart" /> object.</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Blue">
<summary>A theme for 2D charting that features a visual container with a blue gradient, rounded edges, drop-shadowing, and high-contrast gridlines.</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Green">
<summary>A theme for 2D charting that features a visual container with a green gradient, rounded edges, drop-shadowing, and low-contrast gridlines.</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Vanilla">
<summary>A theme for 2D charting that features no visual container and no gridlines.</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Vanilla3D">
<summary>A theme for 3D charting that features no visual container, limited labeling and, sparse, high-contrast gridlines.</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Yellow">
<summary>A theme for 2D charting that features a visual container that has a yellow gradient, rounded edges, drop-shadowing, and high-contrast gridlines.</summary>
</member>
<member name="T:System.Web.Helpers.Crypto">
<summary>Provides methods to generate hash values and encrypt passwords or other sensitive data.</summary>
</member>
<member name="M:System.Web.Helpers.Crypto.GenerateSalt(System.Int32)">
<summary>Generates a cryptographically strong sequence of random byte values.</summary>
<returns>The generated salt value as a base-64-encoded string.</returns>
<param name="byteLength">The number of cryptographically random bytes to generate.</param>
</member>
<member name="M:System.Web.Helpers.Crypto.Hash(System.Byte[],System.String)">
<summary>Returns a hash value for the specified byte array.</summary>
<returns>The hash value for <paramref name="input" /> as a string of hexadecimal characters.</returns>
<param name="input">The data to provide a hash value for.</param>
<param name="algorithm">The algorithm that is used to generate the hash value. The default is "sha256".</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="input" /> is null.</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.Hash(System.String,System.String)">
<summary>Returns a hash value for the specified string.</summary>
<returns>The hash value for <paramref name="input" /> as a string of hexadecimal characters.</returns>
<param name="input">The data to provide a hash value for.</param>
<param name="algorithm">The algorithm that is used to generate the hash value. The default is "sha256".</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="input" /> is null.</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.HashPassword(System.String)">
<summary>Returns an RFC 2898 hash value for the specified password.</summary>
<returns>The hash value for <paramref name="password" /> as a base-64-encoded string.</returns>
<param name="password">The password to generate a hash value for.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="password" /> is null.</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.SHA1(System.String)">
<summary>Returns a SHA-1 hash value for the specified string.</summary>
<returns>The SHA-1 hash value for <paramref name="input" /> as a string of hexadecimal characters.</returns>
<param name="input">The data to provide a hash value for.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="input" /> is null.</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.SHA256(System.String)">
<summary>Returns a SHA-256 hash value for the specified string.</summary>
<returns>The SHA-256 hash value for <paramref name="input" /> as a string of hexadecimal characters.</returns>
<param name="input">The data to provide a hash value for.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="input" /> is null.</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.VerifyHashedPassword(System.String,System.String)">
<summary>Determines whether the specified RFC 2898 hash and password are a cryptographic match.</summary>
<returns>true if the hash value is a cryptographic match for the password; otherwise, false.</returns>
<param name="hashedPassword">The previously-computed RFC 2898 hash value as a base-64-encoded string.</param>
<param name="password">The plaintext password to cryptographically compare with <paramref name="hashedPassword" />.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="hashedPassword" /> or <paramref name="password" /> is null.</exception>
</member>
<member name="T:System.Web.Helpers.DynamicJsonArray">
<summary>Represents a series of values as a JavaScript-like array by using the dynamic capabilities of the Dynamic Language Runtime (DLR).</summary>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.#ctor(System.Object[])">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> class using the specified array element values.</summary>
<param name="arrayValues">An array of objects that contains the values to add to the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.GetEnumerator">
<summary>Returns an enumerator that can be used to iterate through the elements of the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance.</summary>
<returns>An enumerator that can be used to iterate through the elements of the JSON array.</returns>
</member>
<member name="P:System.Web.Helpers.DynamicJsonArray.Item(System.Int32)">
<summary>Returns the value at the specified index in the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance.</summary>
<returns>The value at the specified index.</returns>
</member>
<member name="P:System.Web.Helpers.DynamicJsonArray.Length">
<summary>Returns the number of elements in the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance.</summary>
<returns>The number of elements in the JSON array.</returns>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.op_Implicit(System.Web.Helpers.DynamicJsonArray)~System.Object[]">
<summary>Converts a <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance to an array of objects.</summary>
<returns>The array of objects that represents the JSON array.</returns>
<param name="obj">The JSON array to convert.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.op_Implicit(System.Web.Helpers.DynamicJsonArray)~System.Array">
<summary>Converts a <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance to an array of objects.</summary>
<returns>The array of objects that represents the JSON array.</returns>
<param name="obj">The JSON array to convert.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
<summary>Returns an enumerator that can be used to iterate through a collection.</summary>
<returns>An enumerator that can be used to iterate through the collection.</returns>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.TryConvert(System.Dynamic.ConvertBinder,System.Object@)">
<summary>Converts the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance to a compatible type.</summary>
<returns>true if the conversion was successful; otherwise, false.</returns>
<param name="binder">Provides information about the conversion operation.</param>
<param name="result">When this method returns, contains the result of the type conversion operation. This parameter is passed uninitialized.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
<summary>Tests the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance for dynamic members (which are not supported) in a way that does not cause an exception to be thrown.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the get operation.</param>
<param name="result">When this method returns, contains null. This parameter is passed uninitialized.</param>
</member>
<member name="T:System.Web.Helpers.DynamicJsonObject">
<summary>Represents a collection of values as a JavaScript-like object by using the capabilities of the Dynamic Language Runtime.</summary>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.DynamicJsonObject" /> class using the specified field values.</summary>
<param name="values">A dictionary of property names and values to add to the <see cref="T:System.Web.Helpers.DynamicJsonObject" /> instance as dynamic members.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.GetDynamicMemberNames">
<summary>Returns a list that contains the name of all dynamic members (JSON fields) of the <see cref="T:System.Web.Helpers.DynamicJsonObject" /> instance.</summary>
<returns>A list that contains the name of every dynamic member (JSON field).</returns>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TryConvert(System.Dynamic.ConvertBinder,System.Object@)">
<summary>Converts the <see cref="T:System.Web.Helpers.DynamicJsonObject" /> instance to a compatible type.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the conversion operation.</param>
<param name="result">When this method returns, contains the result of the type conversion operation. This parameter is passed uninitialized.</param>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Web.Helpers.DynamicJsonObject" /> instance could not be converted to the specified type.</exception>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TryGetIndex(System.Dynamic.GetIndexBinder,System.Object[],System.Object@)">
<summary>Gets the value of a <see cref="T:System.Web.Helpers.DynamicJsonObject" /> field using the specified index.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the indexed get operation.</param>
<param name="indexes">An array that contains a single object that indexes the field by name. The object must be convertible to a string that specifies the name of the JSON field to return. If multiple indexes are specified, <paramref name="result" /> contains null when this method returns.</param>
<param name="result">When this method returns, contains the value of the indexed field, or null if the get operation was unsuccessful. This parameter is passed uninitialized.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
<summary>Gets the value of a <see cref="T:System.Web.Helpers.DynamicJsonObject" /> field using the specified name.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the get operation.</param>
<param name="result">When this method returns, contains the value of the field, or null if the get operation was unsuccessful. This parameter is passed uninitialized.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TrySetIndex(System.Dynamic.SetIndexBinder,System.Object[],System.Object)">
<summary>Sets the value of a <see cref="T:System.Web.Helpers.DynamicJsonObject" /> field using the specified index.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the indexed set operation.</param>
<param name="indexes">An array that contains a single object that indexes the field by name. The object must be convertible to a string that specifies the name of the JSON field to return. If multiple indexes are specified, no field is changed or added.</param>
<param name="value">The value to set the field to.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TrySetMember(System.Dynamic.SetMemberBinder,System.Object)">
<summary>Sets the value of a <see cref="T:System.Web.Helpers.DynamicJsonObject" /> field using the specified name.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the set operation.</param>
<param name="value">The value to set the field to.</param>
</member>
<member name="T:System.Web.Helpers.Json">
<summary>Provides methods for working with data in JavaScript Object Notation (JSON) format.</summary>
</member>
<member name="M:System.Web.Helpers.Json.Decode``1(System.String)">
<summary>Converts data in JavaScript Object Notation (JSON) format into the specified strongly typed data list.</summary>
<returns>The JSON-encoded data converted to a strongly typed list.</returns>
<param name="value">The JSON-encoded string to convert.</param>
<typeparam name="T">The type of the strongly typed list to convert JSON data into.</typeparam>
</member>
<member name="M:System.Web.Helpers.Json.Decode(System.String)">
<summary>Converts data in JavaScript Object Notation (JSON) format into a data object.</summary>
<returns>The JSON-encoded data converted to a data object.</returns>
<param name="value">The JSON-encoded string to convert.</param>
</member>
<member name="M:System.Web.Helpers.Json.Decode(System.String,System.Type)">
<summary>Converts data in JavaScript Object Notation (JSON) format into a data object of a specified type.</summary>
<returns>The JSON-encoded data converted to the specified type.</returns>
<param name="value">The JSON-encoded string to convert.</param>
<param name="targetType">The type that the <paramref name="value" /> data should be converted to.</param>
</member>
<member name="M:System.Web.Helpers.Json.Encode(System.Object)">
<summary>Converts a data object to a string that is in the JavaScript Object Notation (JSON) format.</summary>
<returns>Returns a string of data converted to the JSON format.</returns>
<param name="value">The data object to convert.</param>
</member>
<member name="M:System.Web.Helpers.Json.Write(System.Object,System.IO.TextWriter)">
<summary>Converts a data object to a string in JavaScript Object Notation (JSON) format and adds the string to the specified <see cref="T:System.IO.TextWriter" /> object.</summary>
<param name="value">The data object to convert.</param>
<param name="writer">The object that contains the converted JSON data.</param>
</member>
<member name="T:System.Web.Helpers.ObjectInfo">
<summary>Renders the property names and values of the specified object and of any subobjects that it references.</summary>
</member>
<member name="M:System.Web.Helpers.ObjectInfo.Print(System.Object,System.Int32,System.Int32)">
<summary>Renders the property names and values of the specified object and of any subobjects.</summary>
<returns>For a simple variable, returns the type and the value. For an object that contains multiple items, returns the property name or key and the value for each property.</returns>
<param name="value">The object to render information for.</param>
<param name="depth">Optional. Specifies the depth of nested subobjects to render information for. The default is 10.</param>
<param name="enumerationLength">Optional. Specifies the maximum number of characters that the method displays for object values. The default is 1000.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="depth" /> is less than zero.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="enumerationLength" /> is less than or equal to zero.</exception>
</member>
<member name="T:System.Web.Helpers.ServerInfo">
<summary>Displays information about the web server environment that hosts the current web page.</summary>
</member>
<member name="M:System.Web.Helpers.ServerInfo.GetHtml">
<summary>Displays information about the web server environment.</summary>
<returns>A string of name-value pairs that contains information about the web server. </returns>
</member>
<member name="T:System.Web.Helpers.SortDirection">
<summary>Specifies the direction in which to sort a list of items.</summary>
</member>
<member name="F:System.Web.Helpers.SortDirection.Ascending">
<summary>Sort from smallest to largest —for example, from 1 to 10.</summary>
</member>
<member name="F:System.Web.Helpers.SortDirection.Descending">
<summary>Sort from largest to smallest — for example, from 10 to 1.</summary>
</member>
<member name="T:System.Web.Helpers.WebCache">
<summary>Provides a cache to store frequently accessed data.</summary>
</member>
<member name="M:System.Web.Helpers.WebCache.Get(System.String)">
<summary>Retrieves the specified item from the <see cref="T:System.Web.Helpers.WebCache" /> object.</summary>
<returns>The item retrieved from the cache, or null if the item is not found.</returns>
<param name="key">The identifier for the cache item to retrieve.</param>
</member>
<member name="M:System.Web.Helpers.WebCache.Remove(System.String)">
<summary>Removes the specified item from the <see cref="T:System.Web.Helpers.WebCache" /> object.</summary>
<returns>The item removed from the <see cref="T:System.Web.Helpers.WebCache" /> object. If the item is not found, returns null.</returns>
<param name="key">The identifier for the cache item to remove.</param>
</member>
<member name="M:System.Web.Helpers.WebCache.Set(System.String,System.Object,System.Int32,System.Boolean)">
<summary>Inserts an item into the <see cref="T:System.Web.Helpers.WebCache" /> object.</summary>
<param name="key">The identifier for the cache item.</param>
<param name="value">The data to insert into the cache.</param>
<param name="minutesToCache">Optional. The number of minutes to keep an item in the cache. The default is 20.</param>
<param name="slidingExpiration">Optional. true to indicate that the cache item expiration is reset each time the item is accessed, or false to indicate that the expiration is based the absolute time since the item was added to the cache. The default is true. In that case, if you also use the default value for the <paramref name="minutesToCache" /> parameter, a cached item expires 20 minutes after it was last accessed.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="minutesToCache" /> is less than or equal to zero.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Sliding expiration is enabled and the value of <paramref name="minutesToCache" /> is greater than a year.</exception>
</member>
<member name="T:System.Web.Helpers.WebGrid">
<summary>Displays data on a web page using an HTML table element.</summary>
</member>
<member name="M:System.Web.Helpers.WebGrid.#ctor(System.Collections.Generic.IEnumerable{System.Object},System.Collections.Generic.IEnumerable{System.String},System.String,System.Int32,System.Boolean,System.Boolean,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebGrid" /> class.</summary>
<param name="source">The data to display.</param>
<param name="columnNames">A collection that contains the names of the data columns to display. By default, this value is auto-populated according to the values in the <paramref name="source" /> parameter.</param>
<param name="defaultSort">The name of the data column that is used to sort the grid by default.</param>
<param name="rowsPerPage">The number of rows that are displayed on each page of the grid when paging is enabled. The default is 10.</param>
<param name="canPage">true to specify that paging is enabled for the <see cref="T:System.Web.Helpers.WebGrid" /> instance; otherwise false. The default is true. </param>
<param name="canSort">true to specify that sorting is enabled for the <see cref="T:System.Web.Helpers.WebGrid" /> instance; otherwise, false. The default is true.</param>
<param name="ajaxUpdateContainerId">The value of the HTML id attribute that is used to mark the HTML element that gets dynamic Ajax updates that are associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
<param name="ajaxUpdateCallback">The name of the JavaScript function that is called after the HTML element specified by the <see cref="P:System.Web.Helpers.WebGrid.AjaxUpdateContainerId" /> property has been updated. If the name of a function is not provided, no function will be called. If the specified function does not exist, a JavaScript error will occur if it is invoked.</param>
<param name="fieldNamePrefix">The prefix that is applied to all query-string fields that are associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance. This value is used in order to support multiple <see cref="T:System.Web.Helpers.WebGrid" /> instances on the same web page.</param>
<param name="pageFieldName">The name of the query-string field that is used to specify the current page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
<param name="selectionFieldName">The name of the query-string field that is used to specify the currently selected row of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
<param name="sortFieldName">The name of the query-string field that is used to specify the name of the data column that the <see cref="T:System.Web.Helpers.WebGrid" /> instance is sorted by.</param>
<param name="sortDirectionFieldName">The name of the query-string field that is used to specify the direction in which the <see cref="T:System.Web.Helpers.WebGrid" /> instance is sorted.</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.AddSorter``2(System.String,System.Linq.Expressions.Expression{System.Func{``0,``1}})">
<typeparam name="TElement"></typeparam>
<typeparam name="TProperty"></typeparam>
</member>
<member name="P:System.Web.Helpers.WebGrid.AjaxUpdateCallback">
<summary>Gets the name of the JavaScript function to call after the HTML element that is associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance has been updated in response to an Ajax update request.</summary>
<returns>The name of the function.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.AjaxUpdateContainerId">
<summary>Gets the value of the HTML id attribute that marks an HTML element on the web page that gets dynamic Ajax updates that are associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The value of the id attribute.</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Bind(System.Collections.Generic.IEnumerable{System.Object},System.Collections.Generic.IEnumerable{System.String},System.Boolean,System.Int32)">
<summary>Binds the specified data to the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The bound and populated <see cref="T:System.Web.Helpers.WebGrid" /> instance.</returns>
<param name="source">The data to display.</param>
<param name="columnNames">A collection that contains the names of the data columns to bind.</param>
<param name="autoSortAndPage">true to enable sorting and paging of the <see cref="T:System.Web.Helpers.WebGrid" /> instance; otherwise, false.</param>
<param name="rowCount">The number of rows to display on each page of the grid.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.CanSort">
<summary>Gets a value that indicates whether the <see cref="T:System.Web.Helpers.WebGrid" /> instance supports sorting.</summary>
<returns>true if the instance supports sorting; otherwise, false.</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Column(System.String,System.String,System.Func{System.Object,System.Object},System.String,System.Boolean)">
<summary>Creates a new <see cref="T:System.Web.Helpers.WebGridColumn" /> instance.</summary>
<returns>The new column.</returns>
<param name="columnName">The name of the data column to associate with the <see cref="T:System.Web.Helpers.WebGridColumn" /> instance.</param>
<param name="header">The text that is rendered in the header of the HTML table column that is associated with the <see cref="T:System.Web.Helpers.WebGridColumn" /> instance.</param>
<param name="format">The function that is used to format the data values that are associated with the <see cref="T:System.Web.Helpers.WebGridColumn" /> instance.</param>
<param name="style">A string that specifies the name of the CSS class that is used to style the HTML table cells that are associated with the <see cref="T:System.Web.Helpers.WebGridColumn" /> instance.</param>
<param name="canSort">true to enable sorting in the <see cref="T:System.Web.Helpers.WebGrid" /> instance by the data values that are associated with the <see cref="T:System.Web.Helpers.WebGridColumn" /> instance; otherwise, false. The default is true.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.ColumnNames">
<summary>Gets a collection that contains the name of each data column that is bound to the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The collection of data column names.</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Columns(System.Web.Helpers.WebGridColumn[])">
<summary>Returns an array that contains the specified <see cref="T:System.Web.Helpers.WebGridColumn" /> instances.</summary>
<returns>An array of columns.</returns>
<param name="columnSet">A variable number of <see cref="T:System.Web.Helpers.WebGridColumn" /> column instances.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.FieldNamePrefix">
<summary>Gets the prefix that is applied to all query-string fields that are associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The query-string field prefix of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetContainerUpdateScript(System.String)">
<summary>Returns a JavaScript statement that can be used to update the HTML element that is associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance on the specified web page.</summary>
<returns>A JavaScript statement that can be used to update the HTML element in a web page that is associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</returns>
<param name="path">The URL of the web page that contains the <see cref="T:System.Web.Helpers.WebGrid" /> instance that is being updated. The URL can include query-string arguments.</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetHtml(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String,System.Collections.Generic.IEnumerable{System.Web.Helpers.WebGridColumn},System.Collections.Generic.IEnumerable{System.String},System.Web.Helpers.WebGridPagerModes,System.String,System.String,System.String,System.String,System.Int32,System.Object)">
<summary>Returns the HTML markup that is used to render the <see cref="T:System.Web.Helpers.WebGrid" /> instance and using the specified paging options.</summary>
<returns>The HTML markup that represents the fully-populated <see cref="T:System.Web.Helpers.WebGrid" /> instance.</returns>
<param name="tableStyle">The name of the CSS class that is used to style the whole table.</param>
<param name="headerStyle">The name of the CSS class that is used to style the table header.</param>
<param name="footerStyle">The name of the CSS class that is used to style the table footer.</param>
<param name="rowStyle">The name of the CSS class that is used to style each table row.</param>
<param name="alternatingRowStyle">The name of the CSS class that is used to style even-numbered table rows.</param>
<param name="selectedRowStyle">The name of the CSS class that is used to style the selected table row. (Only one row can be selected at a time.)</param>
<param name="caption">The table caption.</param>
<param name="displayHeader">true to display the table header; otherwise, false. The default is true.</param>
<param name="fillEmptyRows">true to insert additional rows in the last page when there are insufficient data items to fill the last page; otherwise, false. The default is false. Additional rows are populated using the text specified by the <paramref name="emptyRowCellValue" /> parameter.</param>
<param name="emptyRowCellValue">The text that is used to populate additional rows in a page when there are insufficient data items to fill the last page. The <paramref name="fillEmptyRows" /> parameter must be set to true to display these additional rows.</param>
<param name="columns">A collection of <see cref="T:System.Web.Helpers.WebGridColumn" /> instances that specify how each column is displayed. This includes which data column is associated with each grid column, and how to format the data values that each grid column contains.</param>
<param name="exclusions">A collection that contains the names of the data columns to exclude when the grid auto-populates columns.</param>
<param name="mode">A bitwise combination of the enumeration values that specify methods that are provided for moving between pages of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
<param name="firstText">The text for the HTML link element that is used to link to the first page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance. The <see cref="F:System.Web.Helpers.WebGridPagerModes.FirstLast" /> flag of the <paramref name="mode" /> parameter must be set to display this page navigation element.</param>
<param name="previousText">The text for the HTML link element that is used to link to previous page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance. The <see cref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious" /> flag of the <paramref name="mode" /> parameter must be set to display this page navigation element.</param>
<param name="nextText">The text for the HTML link element that is used to link to the next page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance. The <see cref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious" /> flag of the <paramref name="mode" /> parameter must be set to display this page navigation element.</param>
<param name="lastText">The text for the HTML link element that is used to link to the last page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance. The <see cref="F:System.Web.Helpers.WebGridPagerModes.FirstLast" /> flag of the <paramref name="mode" /> parameter must be set to display this page navigation element.</param>
<param name="numericLinksCount">The number of numeric page links that are provided to nearby <see cref="T:System.Web.Helpers.WebGrid" /> pages. The text of each numeric page link contains the page number. The <see cref="F:System.Web.Helpers.WebGridPagerModes.Numeric" /> flag of the <paramref name="mode" /> parameter must be set to display these page navigation elements.</param>
<param name="htmlAttributes">An object that represents a collection of attributes (names and values) to set for the HTML table element that represents the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetPageUrl(System.Int32)">
<summary>Returns a URL that can be used to display the specified data page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>A URL that can be used to display the specified data page of the grid.</returns>
<param name="pageIndex">The index of the <see cref="T:System.Web.Helpers.WebGrid" /> page to display.</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetSortUrl(System.String)">
<summary>Returns a URL that can be used to sort the <see cref="T:System.Web.Helpers.WebGrid" /> instance by the specified column.</summary>
<returns>A URL that can be used to sort the grid.</returns>
<param name="column">The name of the data column to sort by.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.HasSelection">
<summary>Gets a value that indicates whether a row in the <see cref="T:System.Web.Helpers.WebGrid" /> instance is selected.</summary>
<returns>true if a row is currently selected; otherwise, false.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.IsAjaxEnabled">
<summary>Returns a value that indicates whether the <see cref="T:System.Web.Helpers.WebGrid" /> instance can use Ajax calls to refresh the display.</summary>
<returns>true if the instance supports Ajax calls; otherwise, false..</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.PageCount">
<summary>Gets the number of pages that the <see cref="T:System.Web.Helpers.WebGrid" /> instance contains.</summary>
<returns>The page count.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.PageFieldName">
<summary>Gets the full name of the query-string field that is used to specify the current page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The full name of the query string field that is used to specify the current page of the grid.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.PageIndex">
<summary>Gets or sets the index of the current page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The index of the current page.</returns>
<exception cref="T:System.NotSupportedException">The <see cref="P:System.Web.Helpers.WebGrid.PageIndex" /> property cannot be set because paging is not enabled.</exception>
</member>
<member name="M:System.Web.Helpers.WebGrid.Pager(System.Web.Helpers.WebGridPagerModes,System.String,System.String,System.String,System.String,System.Int32)">
<summary>Returns the HTML markup that is used to provide the specified paging support for the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The HTML markup that provides paging support for the grid.</returns>
<param name="mode">A bitwise combination of the enumeration values that specify the methods that are provided for moving between the pages of the grid. The default is the bitwise OR of the <see cref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious" /> and <see cref="F:System.Web.Helpers.WebGridPagerModes.Numeric" /> flags.</param>
<param name="firstText">The text for the HTML link element that navigates to the first page of the grid.</param>
<param name="previousText">The text for the HTML link element that navigates to the previous page of the grid.</param>
<param name="nextText">The text for the HTML link element that navigates to the next page of the grid.</param>
<param name="lastText">The text for the HTML link element that navigates to the last page of the grid.</param>
<param name="numericLinksCount">The number of numeric page links to display. The default is 5.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.Rows">
<summary>Gets a list that contains the rows that are on the current page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance after the grid has been sorted.</summary>
<returns>The list of rows.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.RowsPerPage">
<summary>Gets the number of rows that are displayed on each page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The number of rows that are displayed on each page of the grid.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SelectedIndex">
<summary>Gets or sets the index of the selected row relative to the current page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The index of the selected row relative to the current page.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SelectedRow">
<summary>Gets the currently selected row of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The currently selected row.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SelectionFieldName">
<summary>Gets the full name of the query-string field that is used to specify the selected row of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The full name of the query string field that is used to specify the selected row of the grid.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortColumn">
<summary>Gets or sets the name of the data column that the <see cref="T:System.Web.Helpers.WebGrid" /> instance is sorted by.</summary>
<returns>The name of the data column that is used to sort the grid.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortDirection">
<summary>Gets or sets the direction in which the <see cref="T:System.Web.Helpers.WebGrid" /> instance is sorted.</summary>
<returns>The sort direction.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortDirectionFieldName">
<summary>Gets the full name of the query-string field that is used to specify the sort direction of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The full name of the query string field that is used to specify the sort direction of the grid.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortFieldName">
<summary>Gets the full name of the query-string field that is used to specify the name of the data column that the <see cref="T:System.Web.Helpers.WebGrid" /> instance is sorted by.</summary>
<returns>The full name of the query-string field that is used to specify the name of the data column that the grid is sorted by.</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Table(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String,System.Collections.Generic.IEnumerable{System.Web.Helpers.WebGridColumn},System.Collections.Generic.IEnumerable{System.String},System.Func{System.Object,System.Object},System.Object)">
<summary>Returns the HTML markup that is used to render the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The HTML markup that represents the fully-populated <see cref="T:System.Web.Helpers.WebGrid" /> instance.</returns>
<param name="tableStyle">The name of the CSS class that is used to style the whole table.</param>
<param name="headerStyle">The name of the CSS class that is used to style the table header.</param>
<param name="footerStyle">The name of the CSS class that is used to style the table footer.</param>
<param name="rowStyle">The name of the CSS class that is used to style each table row.</param>
<param name="alternatingRowStyle">The name of the CSS class that is used to style even-numbered table rows.</param>
<param name="selectedRowStyle">The name of the CSS class that is used use to style the selected table row.</param>
<param name="caption">The table caption.</param>
<param name="displayHeader">true to display the table header; otherwise, false. The default is true.</param>
<param name="fillEmptyRows">true to insert additional rows in the last page when there are insufficient data items to fill the last page; otherwise, false. The default is false. Additional rows are populated using the text specified by the <paramref name="emptyRowCellValue" /> parameter.</param>
<param name="emptyRowCellValue">The text that is used to populate additional rows in the last page when there are insufficient data items to fill the last page. The <paramref name="fillEmptyRows" /> parameter must be set to true to display these additional rows.</param>
<param name="columns">A collection of <see cref="T:System.Web.Helpers.WebGridColumn" /> instances that specify how each column is displayed. This includes which data column is associated with each grid column, and how to format the data values that each grid column contains.</param>
<param name="exclusions">A collection that contains the names of the data columns to exclude when the grid auto-populates columns.</param>
<param name="footer">A function that returns the HTML markup that is used to render the table footer.</param>
<param name="htmlAttributes">An object that represents a collection of attributes (names and values) to set for the HTML table element that represents the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.TotalRowCount">
<summary>Gets the total number of rows that the <see cref="T:System.Web.Helpers.WebGrid" /> instance contains.</summary>
<returns>The total number of rows in the grid. This value includes all rows from every page, but does not include the additional rows inserted in the last page when there are insufficient data items to fill the last page.</returns>
</member>
<member name="T:System.Web.Helpers.WebGridColumn">
<summary>Represents a column in a <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
</member>
<member name="M:System.Web.Helpers.WebGridColumn.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebGridColumn" /> class.</summary>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.CanSort">
<summary>Gets or sets a value that indicates whether the <see cref="T:System.Web.Helpers.WebGrid" /> column can be sorted.</summary>
<returns>true to indicate that the column can be sorted; otherwise, false.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.ColumnName">
<summary>Gets or sets the name of the data item that is associated with the <see cref="T:System.Web.Helpers.WebGrid" /> column.</summary>
<returns>The name of the data item.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.Format">
<summary>Gets or sets a function that is used to format the data item that is associated with the <see cref="T:System.Web.Helpers.WebGrid" /> column.</summary>
<returns>The function that is used to format that data item that is associated with the column.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.Header">
<summary>Gets or sets the text that is rendered in the header of the <see cref="T:System.Web.Helpers.WebGrid" /> column.</summary>
<returns>The text that is rendered to the column header.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.Style">
<summary>Gets or sets the CSS class attribute that is rendered as part of the HTML table cells that are associated with the <see cref="T:System.Web.Helpers.WebGrid" /> column.</summary>
<returns>The CSS class attribute that is applied to cells that are associated with the column.</returns>
</member>
<member name="T:System.Web.Helpers.WebGridPagerModes">
<summary>Specifies flags that describe the methods that are provided for moving between the pages of a <see cref="T:System.Web.Helpers.WebGrid" /> instance.This enumeration has a <see cref="T:System.FlagsAttribute" /> attribute that allows a bitwise combination of its member values.</summary>
</member>
<member name="F:System.Web.Helpers.WebGridPagerModes.All">
<summary>Indicates that all methods for moving between <see cref="T:System.Web.Helpers.WebGrid" /> pages are provided.</summary>
</member>
<member name="F:System.Web.Helpers.WebGridPagerModes.FirstLast">
<summary>Indicates that methods for moving directly to the first or last <see cref="F:System.Web.Helpers.WebGrid" /> page are provided.</summary>
</member>
<member name="F:System.Web.Helpers.WebGridPagerModes.NextPrevious">
<summary>Indicates that methods for moving to the next or previous <see cref="F:System.Web.Helpers.WebGrid" /> page are provided.</summary>
</member>
<member name="F:System.Web.Helpers.WebGridPagerModes.Numeric">
<summary>Indicates that methods for moving to a nearby <see cref="F:System.Web.Helpers.WebGrid" /> page by using a page number are provided.</summary>
</member>
<member name="T:System.Web.Helpers.WebGridRow">
<summary>Represents a row in a <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
</member>
<member name="M:System.Web.Helpers.WebGridRow.#ctor(System.Web.Helpers.WebGrid,System.Object,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebGridRow" /> class using the specified <see cref="T:System.Web.Helpers.WebGrid" /> instance, row value, and index.</summary>
<param name="webGrid">The <see cref="T:System.Web.Helpers.WebGrid" /> instance that contains the row.</param>
<param name="value">An object that contains a property member for each value in the row.</param>
<param name="rowIndex">The index of the row.</param>
</member>
<member name="M:System.Web.Helpers.WebGridRow.GetEnumerator">
<summary>Returns an enumerator that can be used to iterate through the values of the <see cref="T:System.Web.Helpers.WebGridRow" /> instance.</summary>
<returns>An enumerator that can be used to iterate through the values of the row.</returns>
</member>
<member name="M:System.Web.Helpers.WebGridRow.GetSelectLink(System.String)">
<summary>Returns an HTML element (a link) that users can use to select the row.</summary>
<returns>The link that users can click to select the row.</returns>
<param name="text">The inner text of the link element. If <paramref name="text" /> is empty or null, "Select" is used.</param>
</member>
<member name="M:System.Web.Helpers.WebGridRow.GetSelectUrl">
<summary>Returns the URL that can be used to select the row.</summary>
<returns>The URL that is used to select a row.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridRow.Item(System.Int32)">
<summary>Returns the value at the specified index in the <see cref="T:System.Web.Helpers.WebGridRow" /> instance.</summary>
<returns>The value at the specified index.</returns>
<param name="index">The zero-based index of the value in the row to return.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is less than 0 or greater than or equal to the number of values in the row.</exception>
</member>
<member name="P:System.Web.Helpers.WebGridRow.Item(System.String)">
<summary>Returns the value that has the specified name in the <see cref="T:System.Web.Helpers.WebGridRow" /> instance.</summary>
<returns>The specified value.</returns>
<param name="name">The name of the value in the row to return.</param>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is Nothing or empty.</exception>
<exception cref="T:System.InvalidOperationException">
<paramref name="name" /> specifies a value that does not exist.</exception>
</member>
<member name="M:System.Web.Helpers.WebGridRow.System#Collections#IEnumerable#GetEnumerator">
<summary>Returns an enumerator that can be used to iterate through a collection.</summary>
<returns>An enumerator that can be used to iterate through the collection.</returns>
</member>
<member name="M:System.Web.Helpers.WebGridRow.ToString">
<summary>Returns a string that represents all of the values of the <see cref="T:System.Web.Helpers.WebGridRow" /> instance.</summary>
<returns>A string that represents the row's values.</returns>
</member>
<member name="M:System.Web.Helpers.WebGridRow.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
<summary>Returns the value of a <see cref="T:System.Web.Helpers.WebGridRow" /> member that is described by the specified binder.</summary>
<returns>true if the value of the item was successfully retrieved; otherwise, false.</returns>
<param name="binder">The getter of the bound property member.</param>
<param name="result">When this method returns, contains an object that holds the value of the item described by <paramref name="binder" />. This parameter is passed uninitialized.</param>
</member>
<member name="P:System.Web.Helpers.WebGridRow.Value">
<summary>Gets an object that contains a property member for each value in the row.</summary>
<returns>An object that contains each value in the row as a property.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridRow.WebGrid">
<summary>Gets the <see cref="T:System.Web.Helpers.WebGrid" /> instance that the row belongs to.</summary>
<returns>The <see cref="T:System.Web.Helpers.WebGrid" /> instance that contains the row.</returns>
</member>
<member name="T:System.Web.Helpers.WebImage">
<summary>Represents an object that lets you display and manage images in a web page.</summary>
</member>
<member name="M:System.Web.Helpers.WebImage.#ctor(System.Byte[])">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebImage" /> class using a byte array to represent the image.</summary>
<param name="content">The image.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.#ctor(System.IO.Stream)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebImage" /> class using a stream to represent the image.</summary>
<param name="imageStream">The image.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebImage" /> class using a path to represent the image location.</summary>
<param name="filePath">The path of the file that contains the image.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.AddImageWatermark(System.String,System.Int32,System.Int32,System.String,System.String,System.Int32,System.Int32)">
<summary>Adds a watermark image using a path to the watermark image.</summary>
<returns>The watermarked image.</returns>
<param name="watermarkImageFilePath">The path of a file that contains the watermark image.</param>
<param name="width">The width, in pixels, of the watermark image.</param>
<param name="height">The height, in pixels, of the watermark image.</param>
<param name="horizontalAlign">The horizontal alignment for watermark image. Values can be "Left", "Right", or "Center".</param>
<param name="verticalAlign">The vertical alignment for the watermark image. Values can be "Top", "Middle", or "Bottom".</param>
<param name="opacity">The opacity for the watermark image, specified as a value between 0 and 100.</param>
<param name="padding">The size, in pixels, of the padding around the watermark image.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.AddImageWatermark(System.Web.Helpers.WebImage,System.Int32,System.Int32,System.String,System.String,System.Int32,System.Int32)">
<summary>Adds a watermark image using the specified image object.</summary>
<returns>The watermarked image.</returns>
<param name="watermarkImage">A <see cref="T:System.Web.Helpers.WebImage" /> object.</param>
<param name="width">The width, in pixels, of the watermark image.</param>
<param name="height">The height, in pixels, of the watermark image.</param>
<param name="horizontalAlign">The horizontal alignment for watermark image. Values can be "Left", "Right", or "Center".</param>
<param name="verticalAlign">The vertical alignment for the watermark image. Values can be "Top", "Middle", or "Bottom".</param>
<param name="opacity">The opacity for the watermark image, specified as a value between 0 and 100.</param>
<param name="padding">The size, in pixels, of the padding around the watermark image.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.AddTextWatermark(System.String,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Int32,System.Int32)">
<summary>Adds watermark text to the image.</summary>
<returns>The watermarked image.</returns>
<param name="text">The text to use as a watermark.</param>
<param name="fontColor">The color of the watermark text.</param>
<param name="fontSize">The font size of the watermark text.</param>
<param name="fontStyle">The font style of the watermark text.</param>
<param name="fontFamily">The font type of the watermark text.</param>
<param name="horizontalAlign">The horizontal alignment for watermark text. Values can be "Left", "Right", or "Center".</param>
<param name="verticalAlign">The vertical alignment for the watermark text. Values can be "Top", "Middle", or "Bottom".</param>
<param name="opacity">The opacity for the watermark image, specified as a value between 0 and 100.</param>
<param name="padding">The size, in pixels, of the padding around the watermark text.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.Clone">
<summary>Copies the <see cref="T:System.Web.Helpers.WebImage" /> object.</summary>
<returns>The image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Crop(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Crops an image.</summary>
<returns>The cropped image.</returns>
<param name="top">The number of pixels to remove from the top.</param>
<param name="left">The number of pixels to remove from the left.</param>
<param name="bottom">The number of pixels to remove from the bottom.</param>
<param name="right">The number of pixels to remove from the right.</param>
</member>
<member name="P:System.Web.Helpers.WebImage.FileName">
<summary>Gets or sets the file name of the <see cref="T:System.Web.Helpers.WebImage" /> object.</summary>
<returns>The file name.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.FlipHorizontal">
<summary>Flips an image horizontally.</summary>
<returns>The flipped image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.FlipVertical">
<summary>Flips an image vertically.</summary>
<returns>The flipped image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.GetBytes(System.String)">
<summary>Returns the image as a byte array.</summary>
<returns>The image.</returns>
<param name="requestedFormat">The <see cref="P:System.Web.Helpers.WebImage.ImageFormat" /> value of the <see cref="T:System.Web.Helpers.WebImage" /> object.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.GetImageFromRequest(System.String)">
<summary>Returns an image that has been uploaded using the browser.</summary>
<returns>The image.</returns>
<param name="postedFileName">(Optional) The name of the file that has been posted. If no file name is specified, the first file that was uploaded is returned.</param>
</member>
<member name="P:System.Web.Helpers.WebImage.Height">
<summary>Gets the height, in pixels, of the image.</summary>
<returns>The height.</returns>
</member>
<member name="P:System.Web.Helpers.WebImage.ImageFormat">
<summary>Gets the format of the image (for example, "jpeg" or "png").</summary>
<returns>The file format of the image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Resize(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>Resizes an image.</summary>
<returns>The resized image.</returns>
<param name="width">The width, in pixels, of the <see cref="T:System.Web.Helpers.WebImage" /> object.</param>
<param name="height">The height, in pixels, of the <see cref="T:System.Web.Helpers.WebImage" /> object.</param>
<param name="preserveAspectRatio">true to preserve the aspect ratio of the image; otherwise, false.</param>
<param name="preventEnlarge">true to prevent the enlargement of the image; otherwise, false.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.RotateLeft">
<summary>Rotates an image to the left.</summary>
<returns>The rotated image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.RotateRight">
<summary>Rotates an image to the right.</summary>
<returns>The rotated image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Save(System.String,System.String,System.Boolean)">
<summary>Saves the image using the specified file name.</summary>
<returns>The image.</returns>
<param name="filePath">The path to save the image to.</param>
<param name="imageFormat">The format to use when the image file is saved, such as "gif", or "png".</param>
<param name="forceCorrectExtension">true to force the correct file-name extension to be used for the format that is specified in <paramref name="imageFormat" />; otherwise, false. If there is a mismatch between the file type and the specified file-name extension, and if <paramref name="forceCorrectExtension" /> is true, the correct extension will be appended to the file name. For example, a PNG file named Photograph.txt is saved using the name Photograph.txt.png.</param>
</member>
<member name="P:System.Web.Helpers.WebImage.Width">
<summary>Gets the width, in pixels, of the image.</summary>
<returns>The width.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Write(System.String)">
<summary>Renders an image to the browser.</summary>
<returns>The image.</returns>
<param name="requestedFormat">(Optional) The file format to use when the image is written.</param>
</member>
<member name="T:System.Web.Helpers.WebMail">
<summary>Provides a way to construct and send an email message using Simple Mail Transfer Protocol (SMTP).</summary>
</member>
<member name="P:System.Web.Helpers.WebMail.EnableSsl">
<summary>Gets or sets a value that indicates whether Secure Sockets Layer (SSL) is used to encrypt the connection when an email message is sent.</summary>
<returns>true if SSL is used to encrypt the connection; otherwise, false.</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.From">
<summary>Gets or sets the email address of the sender.</summary>
<returns>The email address of the sender.</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.Password">
<summary>Gets or sets the password of the sender's email account.</summary>
<returns>The sender's password.</returns>
</member>
<member name="M:System.Web.Helpers.WebMail.Send(System.String,System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,System.Collections.Generic.IEnumerable{System.String},System.String,System.String,System.String,System.String,System.String)">
<summary>Sends the specified message to an SMTP server for delivery.</summary>
<param name="to">The email address of the recipient or recipients. Separate multiple recipients using a semicolon (;).</param>
<param name="subject">The subject line for the email message.</param>
<param name="body">The body of the email message. If <paramref name="isBodyHtml" /> is true, HTML in the body is interpreted as markup.</param>
<param name="from">(Optional) The email address of the message sender, or null to not specify a sender. The default value is null.</param>
<param name="cc">(Optional) The email addresses of additional recipients to send a copy of the message to, or null if there are no additional recipients. Separate multiple recipients using a semicolon (;). The default value is null.</param>
<param name="filesToAttach">(Optional) A collection of file names that specifies the files to attach to the email message, or null if there are no files to attach. The default value is null.</param>
<param name="isBodyHtml">(Optional) true to specify that the email message body is in HTML format; false to indicate that the body is in plain-text format. The default value is true.</param>
<param name="additionalHeaders">(Optional) A collection of headers to add to the normal SMTP headers included in this email message, or null to send no additional headers. The default value is null.</param>
<param name="bcc">(Optional) The email addresses of additional recipients to send a "blind" copy of the message to, or null if there are no additional recipients. Separate multiple recipients using a semicolon (;). The default value is null.</param>
<param name="contentEncoding">(Optional) The encoding to use for the body of the message. Possible values are property values for the <see cref="T:System.Text.Encoding" /> class, such as <see cref="P:System.Text.Encoding.UTF8" />. The default value is null.</param>
<param name="headerEncoding">(Optional) The encoding to use for the header of the message. Possible values are property values for the <see cref="T:System.Text.Encoding" /> class, such as <see cref="P:System.Text.Encoding.UTF8" />. The default value is null.</param>
<param name="priority">(Optional) A value ("Normal", "Low", "High") that specifies the priority of the message. The default is "Normal".</param>
<param name="replyTo">(Optional) The email address that will be used when the recipient replies to the message. The default value is null, which indicates that the reply address is the value of the From property. </param>
</member>
<member name="P:System.Web.Helpers.WebMail.SmtpPort">
<summary>Gets or sets the port that is used for SMTP transactions.</summary>
<returns>The port that is used for SMTP transactions.</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.SmtpServer">
<summary>Gets or sets the name of the SMTP server that is used to transmit the email message.</summary>
<returns>The SMTP server.</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.SmtpUseDefaultCredentials">
<summary>Gets or sets a value that indicates whether the default credentials are sent with the requests.</summary>
<returns>true if credentials are sent with the email message; otherwise, false.</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.UserName">
<summary>Gets or sets the name of email account that is used to send email.</summary>
<returns>The name of the user account.</returns>
</member>
</members>
</doc>

Binary file not shown.

10853
references/System.Web.Mvc.xml Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,666 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.Optimization</name>
</assembly>
<members>
<member name="T:System.Web.Optimization.Bundle">
<summary>Represents a list of file references to be bundled together as a single resource.</summary>
</member>
<member name="M:System.Web.Optimization.Bundle.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.Bundle" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.Bundle.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.Bundle" /> class.</summary>
<param name="virtualPath">The virtual path used to reference the <see cref="T:System.Web.Optimization.Bundle" /> from within a view or Web page.</param>
</member>
<member name="M:System.Web.Optimization.Bundle.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.Bundle" /> class.</summary>
<param name="virtualPath">The virtual path used to reference the <see cref="T:System.Web.Optimization.Bundle" /> from within a view or Web page.</param>
<param name="cdnPath">An alternate url for the bundle when it is stored in a content delivery network.</param>
</member>
<member name="M:System.Web.Optimization.Bundle.#ctor(System.String,System.String,System.Web.Optimization.IBundleTransform[])">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.Bundle" /> class.</summary>
<param name="virtualPath">The virtual path used to reference the <see cref="T:System.Web.Optimization.Bundle" /> from within a view or Web page.</param>
<param name="cdnPath">An alternate url for the bundle when it is stored in a content delivery network.</param>
<param name="transforms">A list of <see cref="T:System.Web.Optimization.IBundleTransform" /> objects which process the contents of the bundle in the order which they are added.</param>
</member>
<member name="M:System.Web.Optimization.Bundle.#ctor(System.String,System.Web.Optimization.IBundleTransform[])">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.Bundle" /> class.</summary>
<param name="virtualPath">The virtual path used to reference the <see cref="T:System.Web.Optimization.Bundle" /> from within a view or Web page.</param>
<param name="transforms">A list of <see cref="T:System.Web.Optimization.IBundleTransform" /> objects which process the contents of the bundle in the order which they are added.</param>
</member>
<member name="M:System.Web.Optimization.Bundle.ApplyTransforms(System.Web.Optimization.BundleContext,System.String,System.Collections.Generic.IEnumerable{System.Web.Optimization.BundleFile})"></member>
<member name="P:System.Web.Optimization.Bundle.Builder">
<summary>Builds the bundle content from the individual files included in the <see cref="T:System.Web.Optimization.Bundle" /> object.</summary>
<returns>The object used to build the bundle content.</returns>
</member>
<member name="M:System.Web.Optimization.Bundle.CacheLookup(System.Web.Optimization.BundleContext)">
<summary>Overrides this to implement own caching logic.</summary>
<returns>A bundle response.</returns>
<param name="context">The bundle context.</param>
</member>
<member name="P:System.Web.Optimization.Bundle.CdnFallbackExpression">
<summary>Script expression rendered by the <see cref="T:System.Web.Optimization.Scripts" /> helper class to reference the local bundle file if the CDN is unavailable.</summary>
<returns>The script expression rendered by the <see cref="T:System.Web.Optimization.Scripts" /> helper class to reference the local bundle file if the CDN is unavailable.</returns>
</member>
<member name="P:System.Web.Optimization.Bundle.CdnPath">
<summary>Gets or sets an alternate url for the bundle when it is stored in a content delivery network.</summary>
<returns>An alternate url for the bundle when it is stored in a content delivery network.</returns>
</member>
<member name="P:System.Web.Optimization.Bundle.ConcatenationToken">
<summary>The token inserted between bundled files to ensure that the final bundle content is valid.</summary>
<returns>By default, if <see cref="P:System.Web.Optimization.Bundle.ConcatenationToken" /> is not specified, the Web optimization framework inserts a new line.</returns>
</member>
<member name="P:System.Web.Optimization.Bundle.EnableFileExtensionReplacements">
<summary>Specifies whether to use the <see cref="P:System.Web.Optimization.BundleCollection.FileExtensionReplacementList" />.</summary>
<returns>true if the <see cref="P:System.Web.Optimization.BundleCollection.FileExtensionReplacementList" /> is used; otherwise, false.</returns>
</member>
<member name="M:System.Web.Optimization.Bundle.EnumerateFiles(System.Web.Optimization.BundleContext)">
<summary>Generates an enumeration of <see cref="T:System.Web.Hosting.VirtualFile" /> objects that represent the contents of the bundle.</summary>
<returns>An enumeration of <see cref="T:System.Web.Hosting.VirtualFile" /> objects that represent the contents of the bundle.</returns>
<param name="context">The <see cref="T:System.Web.Optimization.BundleContext" /> object that contains state for both the framework configuration and the HTTP request.</param>
</member>
<member name="M:System.Web.Optimization.Bundle.GenerateBundleResponse(System.Web.Optimization.BundleContext)">
<summary>Processes the bundle request to generate the response.</summary>
<returns>A <see cref="T:System.Web.Optimization.BundleResponse" /> object containing the processed bundle contents.</returns>
<param name="context">The <see cref="T:System.Web.Optimization.BundleContext" /> object that contains state for both the framework configuration and the HTTP request.</param>
</member>
<member name="M:System.Web.Optimization.Bundle.GetCacheKey(System.Web.Optimization.BundleContext)"></member>
<member name="M:System.Web.Optimization.Bundle.Include(System.String,System.Web.Optimization.IItemTransform[])"></member>
<member name="M:System.Web.Optimization.Bundle.Include(System.String[])">
<summary>Specifies a set of files to be included in the <see cref="T:System.Web.Optimization.Bundle" />.</summary>
<returns>The <see cref="T:System.Web.Optimization.Bundle" /> object itself for use in subsequent method chaining.</returns>
<param name="virtualPaths">The virtual path of the file or file pattern to be included in the bundle.</param>
</member>
<member name="M:System.Web.Optimization.Bundle.IncludeDirectory(System.String,System.String)">
<summary>Includes all files in a directory that match a search pattern.</summary>
<returns>The <see cref="T:System.Web.Optimization.Bundle" /> object itself for use in subsequent method chaining.</returns>
<param name="directoryVirtualPath">The virtual path to the directory from which to search for files.</param>
<param name="searchPattern">The search pattern to use in selecting files to add to the bundle.</param>
</member>
<member name="M:System.Web.Optimization.Bundle.IncludeDirectory(System.String,System.String,System.Boolean)">
<summary>Includes all files in a directory that match a search pattern.</summary>
<returns>The <see cref="T:System.Web.Optimization.Bundle" /> object itself for use in subsequent method chaining.</returns>
<param name="directoryVirtualPath">The virtual path to the directory from which to search for files.</param>
<param name="searchPattern">The search pattern to use in selecting files to add to the bundle.</param>
<param name="searchSubdirectories">Specifies whether to recursively search subdirectories of <paramref name="directoryVirtualPath" />.</param>
</member>
<member name="P:System.Web.Optimization.Bundle.Orderer">
<summary>Determines the order of files in a bundle.</summary>
<returns>The order of files in a bundle.</returns>
</member>
<member name="P:System.Web.Optimization.Bundle.Path">
<summary>Virtual path used to reference the <see cref="T:System.Web.Optimization.Bundle" /> from within a view or Web page.</summary>
<returns>The virtual path.</returns>
</member>
<member name="P:System.Web.Optimization.Bundle.Transforms">
<summary>Transforms the contents of a bundle.</summary>
<returns>The list of transforms for the bundle.</returns>
</member>
<member name="M:System.Web.Optimization.Bundle.UpdateCache(System.Web.Optimization.BundleContext,System.Web.Optimization.BundleResponse)"></member>
<member name="T:System.Web.Optimization.BundleCollection">
<summary>Contains and manages the set of registered <see cref="T:System.Web.Optimization.Bundle" /> objects in an ASP.NET application.</summary>
</member>
<member name="M:System.Web.Optimization.BundleCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.BundleCollection" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.BundleCollection.Add(System.Web.Optimization.Bundle)">
<summary>Adds a bundle to the collection.</summary>
<param name="bundle">The bundle to add.</param>
</member>
<member name="M:System.Web.Optimization.BundleCollection.AddDefaultFileExtensionReplacements(System.Web.Optimization.FileExtensionReplacementList)">
<summary>Adds the default file extension replacements for common conventions.</summary>
<param name="list">The list to populate with default values.</param>
</member>
<member name="M:System.Web.Optimization.BundleCollection.AddDefaultFileOrderings(System.Collections.Generic.IList{System.Web.Optimization.BundleFileSetOrdering})">
<summary>Adds default file order specifications to use with bundles in the collection.</summary>
<param name="list">The list to populate with default values.</param>
</member>
<member name="M:System.Web.Optimization.BundleCollection.AddDefaultIgnorePatterns(System.Web.Optimization.IgnoreList)">
<summary>Adds the default file ignore patterns.</summary>
<param name="ignoreList">The ignore list to populate with default values.</param>
</member>
<member name="M:System.Web.Optimization.BundleCollection.Clear">
<summary>Removes all bundles from the collection.</summary>
</member>
<member name="P:System.Web.Optimization.BundleCollection.Count">
<summary>Gets the count of registered bundles in the collection.</summary>
<returns>The number of bundles.</returns>
</member>
<member name="P:System.Web.Optimization.BundleCollection.DirectoryFilter">
<summary>Gets a list of file patterns which are ignored when including files using wildcards or substitution tokens.</summary>
<returns>A list of file patterns.</returns>
</member>
<member name="P:System.Web.Optimization.BundleCollection.FileExtensionReplacementList">
<summary>Gets the file extension replacement list.</summary>
<returns>The file extension replacement list.</returns>
</member>
<member name="P:System.Web.Optimization.BundleCollection.FileSetOrderList">
<summary>Gets a list that specifies default file orderings to use for files in the registered bundles.</summary>
<returns>The list of file orderings.</returns>
</member>
<member name="M:System.Web.Optimization.BundleCollection.GetBundleFor(System.String)">
<summary>Returns a bundle in the collection using the specified virtual path.</summary>
<returns>The bundle for the virtual path or null if no bundle exists at the path.</returns>
<param name="bundleVirtualPath">The virtual path of the bundle to return.</param>
</member>
<member name="M:System.Web.Optimization.BundleCollection.GetEnumerator">
<summary>Returns the bundle enumerator.</summary>
<returns>The bundle enumerator.</returns>
</member>
<member name="M:System.Web.Optimization.BundleCollection.GetRegisteredBundles">
<summary>Returns the collection of all registered bundles.</summary>
<returns>The collection of registered bundles.</returns>
</member>
<member name="P:System.Web.Optimization.BundleCollection.IgnoreList">
<summary>Gets the list of files to ignore.</summary>
<returns>The list of files to ignore.</returns>
</member>
<member name="M:System.Web.Optimization.BundleCollection.Remove(System.Web.Optimization.Bundle)">
<summary>Removes a bundle from the collection.</summary>
<returns>true if the bundle was removed; otherwise, false.</returns>
<param name="bundle">The bundle to remove.</param>
</member>
<member name="M:System.Web.Optimization.BundleCollection.ResetAll">
<summary>Clears the bundles and resets all the defaults.</summary>
</member>
<member name="M:System.Web.Optimization.BundleCollection.ResolveBundleUrl(System.String)">
<summary>Returns the bundle URL for the specified virtual path.</summary>
<returns>The bundle URL or null if the bundle cannot be found.</returns>
<param name="bundleVirtualPath">The bundle virtual path.</param>
</member>
<member name="M:System.Web.Optimization.BundleCollection.ResolveBundleUrl(System.String,System.Boolean)">
<summary>Returns the bundle URL for the specified virtual path, including a content hash if requested.</summary>
<returns>The bundle URL or null if the bundle cannot be found.</returns>
<param name="bundleVirtualPath">The virtual path of the bundle.</param>
<param name="includeContentHash">true to include a hash code for the content; otherwise, false. The default is true.</param>
</member>
<member name="M:System.Web.Optimization.BundleCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
<summary>Returns an enumerator that can be used to iterate through the collection.</summary>
<returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
</member>
<member name="M:System.Web.Optimization.BundleCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>Returns an enumerator that can be used to iterate through the collection.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
</member>
<member name="P:System.Web.Optimization.BundleCollection.UseCdn">
<summary>Gets or sets whether the collection will try to use <see cref="P:System.Web.Optimization.Bundle.CdnPath" /> if specified.</summary>
<returns>true if the collection will try to use Bundle.CdnPath if specified; Otherwise, false.</returns>
</member>
<member name="T:System.Web.Optimization.BundleContext">
<summary>Encapsulates the info needed to process a bundle request</summary>
</member>
<member name="M:System.Web.Optimization.BundleContext.#ctor(System.Web.HttpContextBase,System.Web.Optimization.BundleCollection,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.BundleContext" /> class.</summary>
<param name="context">The context.</param>
<param name="collection">The collection of bundles.</param>
<param name="bundleVirtualPath">The virtual path of the bundles.</param>
</member>
<member name="P:System.Web.Optimization.BundleContext.BundleCollection">
<summary>Gets or sets the collection of bundles.</summary>
<returns>The collection of bundles.</returns>
</member>
<member name="P:System.Web.Optimization.BundleContext.BundleVirtualPath">
<summary>Gets or sets the virtual path for the bundle request</summary>
<returns>The virtual path for the bundle request.</returns>
</member>
<member name="P:System.Web.Optimization.BundleContext.EnableInstrumentation">
<summary>Gets or sets whether the instrumentation output is requested.</summary>
<returns>true if instrumentation output is requested; otherwise, false.</returns>
</member>
<member name="P:System.Web.Optimization.BundleContext.EnableOptimizations">
<summary>Gets or sets whether optimizations are enabled via <see cref="P:System.Web.Optimization.BundleTable.EnableOptimizations" />.</summary>
<returns>true if optimizations are enabled via <see cref="P:System.Web.Optimization.BundleTable.EnableOptimizations" />; otherwise, false.</returns>
</member>
<member name="P:System.Web.Optimization.BundleContext.HttpContext">
<summary>Gets or sets the HTTP context associated with the bundle context.</summary>
<returns>The HTTP context associated with the bundle context.</returns>
</member>
<member name="P:System.Web.Optimization.BundleContext.UseServerCache">
<summary>Gets or sets whether the bindle context will store the bundle response in the HttpContext.Cache.</summary>
<returns>true if the bindle context will store the bundle response in the cache; Otherwise, false.</returns>
</member>
<member name="T:System.Web.Optimization.BundleDefinition">
<summary>Represents a bundle definition as specified by the bundle manifest.</summary>
</member>
<member name="M:System.Web.Optimization.BundleDefinition.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.BundleDefinition" /> class.</summary>
</member>
<member name="P:System.Web.Optimization.BundleDefinition.CdnFallbackExpression">
<summary>Gets or sets the CDN fallback expression for the bundle.</summary>
<returns>The CDN fallback expression for the bundle.</returns>
</member>
<member name="P:System.Web.Optimization.BundleDefinition.CdnPath">
<summary>Gets or sets the CDN path for the bundle.</summary>
<returns>The CDN path for the bundle.</returns>
</member>
<member name="P:System.Web.Optimization.BundleDefinition.Includes">
<summary>Gets the files included in the bundle.</summary>
<returns>The files included in the bundle.</returns>
</member>
<member name="P:System.Web.Optimization.BundleDefinition.Path">
<summary>Gets or sets the virtual path for the bundle.</summary>
<returns>The virtual path for the bundle.</returns>
</member>
<member name="T:System.Web.Optimization.BundleFile"></member>
<member name="M:System.Web.Optimization.BundleFile.#ctor(System.String,System.Web.Hosting.VirtualFile)"></member>
<member name="M:System.Web.Optimization.BundleFile.#ctor(System.String,System.Web.Hosting.VirtualFile,System.Collections.Generic.IList{System.Web.Optimization.IItemTransform})"></member>
<member name="M:System.Web.Optimization.BundleFile.ApplyTransforms"></member>
<member name="P:System.Web.Optimization.BundleFile.IncludedVirtualPath"></member>
<member name="P:System.Web.Optimization.BundleFile.Transforms"></member>
<member name="P:System.Web.Optimization.BundleFile.VirtualFile"></member>
<member name="T:System.Web.Optimization.BundleFileSetOrdering">
<summary>Encapsulates a named set of files with relative orderings, for example jquery or modernizer.</summary>
</member>
<member name="M:System.Web.Optimization.BundleFileSetOrdering.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.BundleFileSetOrdering" /> class.</summary>
<param name="name">The name used to help identify the file ordering.</param>
</member>
<member name="P:System.Web.Optimization.BundleFileSetOrdering.Files">
<summary>Gets or sets the ordered list of file name patterns (allows one prefix/suffix wildcard '*') that determines the relative ordering of these files in the bundle. For example, ["z.js", "b*", "*a", "a.js"].</summary>
<returns>The ordered list of file name patterns that determines the relative ordering of these files in the bundle.</returns>
</member>
<member name="P:System.Web.Optimization.BundleFileSetOrdering.Name">
<summary> Gets or sets the name used to help identify the file ordering, for example, jquery. </summary>
<returns>The name used to help identify the file ordering.</returns>
</member>
<member name="T:System.Web.Optimization.BundleManifest">
<summary> Represents the XML configuration to configure the <see cref="P:System.Web.Optimization.BundleTable.Bundles" /> bundle collection. </summary>
</member>
<member name="P:System.Web.Optimization.BundleManifest.BundleManifestPath">
<summary>Gets or sets the path to the bundle manifest file that sets up the <see cref="T:System.Web.Optimization.BundleCollection" />.</summary>
<returns>The path to the bundle manifest file that sets up the <see cref="T:System.Web.Optimization.BundleCollection" />.</returns>
</member>
<member name="M:System.Web.Optimization.BundleManifest.ReadBundleManifest">
<summary>Reads the bundle manifest using the default bundle configuration.</summary>
<returns>The bundle manifest.</returns>
</member>
<member name="M:System.Web.Optimization.BundleManifest.ReadBundleManifest(System.IO.Stream)">
<summary> Reads the bundle manifest from a given stream. </summary>
<returns>The bundle manifest.</returns>
<param name="bundleStream">The bundle stream to read from.</param>
</member>
<member name="P:System.Web.Optimization.BundleManifest.ScriptBundles">
<summary>Gets the <see cref="T:System.Web.Optimization.ScriptBundle" /> objects specified by the manifest file.</summary>
<returns>The <see cref="T:System.Web.Optimization.ScriptBundle" /> objects specified by the manifest file.</returns>
</member>
<member name="P:System.Web.Optimization.BundleManifest.StyleBundles">
<summary>Gets or sets the registered style bundles. </summary>
<returns>The registered style bundles.</returns>
</member>
<member name="T:System.Web.Optimization.BundleModule">
<summary> Represents a module that enables bundling to intercept requests to bundle URLs. </summary>
</member>
<member name="M:System.Web.Optimization.BundleModule.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.BundleModule" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.BundleModule.Dispose">
<summary> Disposes any resources used by the <see cref="T:System.Web.Optimization.BundleModule" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.BundleModule.Init(System.Web.HttpApplication)">
<summary> Hooks the OnApplicationPostResolveRequestCache event to remap to the bundle handler. </summary>
<param name="application">The application that will receive the registration of the event.</param>
</member>
<member name="M:System.Web.Optimization.BundleModule.System#Web#IHttpModule#Dispose">
<summary>Calls the Dispose() method.</summary>
</member>
<member name="M:System.Web.Optimization.BundleModule.System#Web#IHttpModule#Init(System.Web.HttpApplication)">
<summary>Calls the Init method.</summary>
<param name="application">The application that will receive the registration of the event.</param>
</member>
<member name="T:System.Web.Optimization.BundleResolver">
<summary>Represents a class that determine if a script reference is a bundle, and what it contains to prevent duplicate script references.</summary>
</member>
<member name="M:System.Web.Optimization.BundleResolver.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.BundleResolver" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.BundleResolver.#ctor(System.Web.Optimization.BundleCollection)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.BundleResolver" /> class with the specified bundle.</summary>
<param name="bundles">The bundles of objects.</param>
</member>
<member name="M:System.Web.Optimization.BundleResolver.#ctor(System.Web.Optimization.BundleCollection,System.Web.HttpContextBase)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.BundleResolver" /> class with the specified bundle and context.</summary>
<param name="bundles">The bundles of object.</param>
<param name="context">The HttpContextBase.</param>
</member>
<member name="P:System.Web.Optimization.BundleResolver.Current">
<summary>Gets or sets the ScriptManager that reflects against <see cref="P:System.Web.Optimization.BundleResolver.Current" />.</summary>
<returns>The ScriptManager that reflects against <see cref="P:System.Web.Optimization.BundleResolver.Current" />.</returns>
</member>
<member name="M:System.Web.Optimization.BundleResolver.GetBundleContents(System.String)">
<summary>Returns an enumeration of actual file paths to the contents of the bundle.</summary>
<returns>The actual file paths to the contents of the bundle.</returns>
<param name="virtualPath">The virtual file path.</param>
</member>
<member name="M:System.Web.Optimization.BundleResolver.GetBundleUrl(System.String)">
<summary>Gets the versioned url for the bundle or returns the virtualPath unchanged if it does not point to a bundle.</summary>
<returns>The versioned url for the bundle.</returns>
<param name="virtualPath">The virtual file path.</param>
</member>
<member name="M:System.Web.Optimization.BundleResolver.IsBundleVirtualPath(System.String)">
<summary>Determines if the virtualPath is to a bundle.</summary>
<returns>The virtualPath.</returns>
<param name="virtualPath">The virtual file path.</param>
</member>
<member name="T:System.Web.Optimization.BundleResponse">
<summary>Encapsulates the response data that will be sent for a bundle request.</summary>
</member>
<member name="M:System.Web.Optimization.BundleResponse.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.BundleResponse" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.BundleResponse.#ctor(System.String,System.Collections.Generic.IEnumerable{System.Web.Optimization.BundleFile})"></member>
<member name="P:System.Web.Optimization.BundleResponse.Cacheability">
<summary>Gets or sets a value that is used to set the Cache-Control HTTP header.</summary>
<returns>A value that is used to set the Cache-Control HTTP header.</returns>
</member>
<member name="P:System.Web.Optimization.BundleResponse.Content">
<summary>Gets or sets the content of the bundle which is sent as the response body.</summary>
<returns>The content of the bundle.</returns>
</member>
<member name="P:System.Web.Optimization.BundleResponse.ContentType">
<summary>Gets or sets the media type that is sent in the HTTP content/type header.</summary>
<returns>The media type that is sent in the HTTP content/type header.</returns>
</member>
<member name="P:System.Web.Optimization.BundleResponse.Files">
<summary>Gets or sets the list of files in the bundle.</summary>
<returns>The list of files in the bundle.</returns>
</member>
<member name="T:System.Web.Optimization.BundleTable">
<summary> Static holder class for the default bundle collection. </summary>
</member>
<member name="P:System.Web.Optimization.BundleTable.Bundles">
<summary>Gets the default bundle collection. </summary>
<returns>The default bundle collection.</returns>
</member>
<member name="P:System.Web.Optimization.BundleTable.EnableOptimizations">
<summary>Gets or sets whether bundling and minification of bundle references is enabled.</summary>
<returns>true if bundling and minification of bundle references is enabled; otherwise, false.</returns>
</member>
<member name="P:System.Web.Optimization.BundleTable.VirtualPathProvider">
<summary>Gets or sets the provider to be used in resolving bundle files.</summary>
<returns>The provider to be used in resolving bundle files.</returns>
</member>
<member name="T:System.Web.Optimization.CssMinify">
<summary> Represents a <see cref="T:System.Web.Optimization.IBundleTransform" /> that does CSS minification.</summary>
</member>
<member name="M:System.Web.Optimization.CssMinify.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.CssMinify" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.CssMinify.Process(System.Web.Optimization.BundleContext,System.Web.Optimization.BundleResponse)">
<summary> Transforms the bundle contents by applying CSS minification. </summary>
<param name="context">The bundle context.</param>
<param name="response">The bundle response object</param>
</member>
<member name="T:System.Web.Optimization.CssRewriteUrlTransform"></member>
<member name="M:System.Web.Optimization.CssRewriteUrlTransform.#ctor"></member>
<member name="M:System.Web.Optimization.CssRewriteUrlTransform.Process(System.String,System.String)"></member>
<member name="T:System.Web.Optimization.DefaultBundleBuilder">
<summary>Represents the default logic which combines files in the bundle.</summary>
</member>
<member name="M:System.Web.Optimization.DefaultBundleBuilder.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.DefaultBundleBuilder" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.DefaultBundleBuilder.BuildBundleContent(System.Web.Optimization.Bundle,System.Web.Optimization.BundleContext,System.Collections.Generic.IEnumerable{System.Web.Optimization.BundleFile})"></member>
<member name="T:System.Web.Optimization.DefaultBundleOrderer">
<summary>Default <see cref="T:System.Web.Optimization.IBundleOrderer" /> which orders files in a bundled using <see cref="P:System.Web.Optimization.BundleCollection.FileSetOrderList" />.</summary>
</member>
<member name="M:System.Web.Optimization.DefaultBundleOrderer.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.DefaultBundleOrderer" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.DefaultBundleOrderer.OrderFiles(System.Web.Optimization.BundleContext,System.Collections.Generic.IEnumerable{System.Web.Optimization.BundleFile})"></member>
<member name="T:System.Web.Optimization.DynamicFolderBundle">
<summary>Represents a <see cref="T:System.Web.Optimization.Bundle" /> object that ASP.NET creates from a folder that contains files of the same type.</summary>
</member>
<member name="M:System.Web.Optimization.DynamicFolderBundle.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.DynamicFolderBundle" /> class.</summary>
<param name="pathSuffix">The path suffix.</param>
<param name="searchPattern">The search pattern.</param>
</member>
<member name="M:System.Web.Optimization.DynamicFolderBundle.#ctor(System.String,System.String,System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.DynamicFolderBundle" /> class.</summary>
<param name="pathSuffix">The path suffix.</param>
<param name="searchPattern">The search pattern.</param>
<param name="searchSubdirectories">The search subdirectories.</param>
</member>
<member name="M:System.Web.Optimization.DynamicFolderBundle.#ctor(System.String,System.String,System.Boolean,System.Web.Optimization.IBundleTransform[])">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.DynamicFolderBundle" /> class.</summary>
<param name="pathSuffix">The path suffix.</param>
<param name="searchPattern">The search pattern.</param>
<param name="searchSubdirectories">The search subdirectories.</param>
<param name="transforms">The transform parameter.</param>
</member>
<member name="M:System.Web.Optimization.DynamicFolderBundle.#ctor(System.String,System.String,System.Web.Optimization.IBundleTransform[])">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.DynamicFolderBundle" /> class.</summary>
<param name="pathSuffix">The path suffix.</param>
<param name="searchPattern">The search pattern.</param>
<param name="transforms">The transform parameter.</param>
</member>
<member name="P:System.Web.Optimization.DynamicFolderBundle.CdnPath">
<summary>Gets or set the path of a Content Delivery Network (CDN) that contains the folder bundle.</summary>
<returns>The path of a Content Delivery Network (CDN)</returns>
</member>
<member name="M:System.Web.Optimization.DynamicFolderBundle.EnumerateFiles(System.Web.Optimization.BundleContext)">
<summary>Returns all the base methods files and any dynamic files found in the requested directory.</summary>
<returns>All the base methods files and any dynamic files found in the requested directory.</returns>
<param name="context">The bundle context.</param>
</member>
<member name="P:System.Web.Optimization.DynamicFolderBundle.SearchPattern">
<summary>Gets or sets the search pattern for the folder bundle.</summary>
<returns>The search pattern for the folder bundle.</returns>
</member>
<member name="P:System.Web.Optimization.DynamicFolderBundle.SearchSubdirectories">
<summary>Gets or sets whether the search pattern is applied to subdirectories.</summary>
<returns>true if the search pattern is applied to subdirectories; otherwise, false.</returns>
</member>
<member name="T:System.Web.Optimization.FileExtensionReplacementList">
<summary>A set of file extensions that will be used to select different files based on the <see cref="T:System.Web.Optimization.OptimizationMode" />.</summary>
</member>
<member name="M:System.Web.Optimization.FileExtensionReplacementList.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.FileExtensionReplacementList" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.FileExtensionReplacementList.Add(System.String)">
<summary>Adds a file extension which will be applied regardless of <see cref="T:System.Web.Optimization.OptimizationMode" />.</summary>
<param name="extension">File extension string.</param>
</member>
<member name="M:System.Web.Optimization.FileExtensionReplacementList.Add(System.String,System.Web.Optimization.OptimizationMode)">
<summary>Add a file extension for a specified <see cref="T:System.Web.Optimization.OptimizationMode" />.</summary>
<param name="extension">File extension string.</param>
<param name="mode">
<see cref="T:System.Web.Optimization.OptimizationMode" /> in which to apply the file extension replacement.</param>
</member>
<member name="M:System.Web.Optimization.FileExtensionReplacementList.Clear">
<summary>Clears file extension replacements.</summary>
</member>
<member name="M:System.Web.Optimization.FileExtensionReplacementList.ReplaceFileExtensions(System.Web.Optimization.BundleContext,System.Collections.Generic.IEnumerable{System.Web.Optimization.BundleFile})"></member>
<member name="T:System.Web.Optimization.IBundleBuilder">
<summary>Specifies the building of the bundle from the individual file contents.</summary>
</member>
<member name="M:System.Web.Optimization.IBundleBuilder.BuildBundleContent(System.Web.Optimization.Bundle,System.Web.Optimization.BundleContext,System.Collections.Generic.IEnumerable{System.Web.Optimization.BundleFile})"></member>
<member name="T:System.Web.Optimization.IBundleOrderer">
<summary>Defines methods for ordering files within a <see cref="T:System.Web.Optimization.Bundle" />.</summary>
</member>
<member name="M:System.Web.Optimization.IBundleOrderer.OrderFiles(System.Web.Optimization.BundleContext,System.Collections.Generic.IEnumerable{System.Web.Optimization.BundleFile})"></member>
<member name="T:System.Web.Optimization.IBundleResolver">
<summary>Represents an interface used to query the BundleCollection for metadata.</summary>
</member>
<member name="M:System.Web.Optimization.IBundleResolver.GetBundleContents(System.String)">
<summary>Returns a list of all the virtualPaths of the contents of the bundle.</summary>
<returns>The list of virtual path.</returns>
<param name="virtualPath">The virtual path for the bundle.</param>
</member>
<member name="M:System.Web.Optimization.IBundleResolver.GetBundleUrl(System.String)">
<summary>Returns the versioned URL of the bundle.</summary>
<returns>The versioned URL of the bundle.</returns>
<param name="virtualPath">The virtual path.</param>
</member>
<member name="M:System.Web.Optimization.IBundleResolver.IsBundleVirtualPath(System.String)">
<summary>Specifies whether the virtual path is to a bundle.</summary>
<returns>true if the virtual path is to a bundle; Otherwise, false.</returns>
<param name="virtualPath">The virtual path.</param>
</member>
<member name="T:System.Web.Optimization.IBundleTransform">
<summary>Defines a method that transforms the files in a <see cref="T:System.Web.Optimization.BundleResponse" /> object.</summary>
</member>
<member name="M:System.Web.Optimization.IBundleTransform.Process(System.Web.Optimization.BundleContext,System.Web.Optimization.BundleResponse)">
<summary>Transforms the content in the <see cref="T:System.Web.Optimization.BundleResponse" /> object.</summary>
<param name="context">The bundle context.</param>
<param name="response">The bundle response.</param>
</member>
<member name="T:System.Web.Optimization.IgnoreList">
<summary>A list of filename patterns to be ignored and thereby excluded from bundles.</summary>
</member>
<member name="M:System.Web.Optimization.IgnoreList.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.IgnoreList" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.IgnoreList.Clear">
<summary>Clears entire ignore list.</summary>
</member>
<member name="M:System.Web.Optimization.IgnoreList.FilterIgnoredFiles(System.Web.Optimization.BundleContext,System.Collections.Generic.IEnumerable{System.Web.Optimization.BundleFile})"></member>
<member name="M:System.Web.Optimization.IgnoreList.Ignore(System.String)">
<summary>Ignores the specified pattern regardless of the value set in <see cref="P:System.Web.Optimization.BundleTable.EnableOptimizations" />.</summary>
<param name="item">The ignore pattern.</param>
</member>
<member name="M:System.Web.Optimization.IgnoreList.Ignore(System.String,System.Web.Optimization.OptimizationMode)">
<summary>Ignores the specified pattern when in the appropriate <see cref="T:System.Web.Optimization.OptimizationMode" />.</summary>
<param name="pattern">The ignore pattern.</param>
<param name="mode">The <see cref="T:System.Web.Optimization.OptimizationMode" /> in which to apply the ignore pattern.</param>
</member>
<member name="M:System.Web.Optimization.IgnoreList.ShouldIgnore(System.Web.Optimization.BundleContext,System.String)">
<summary>Determines whether a file should be ignored based on the ignore list.</summary>
<returns>true if the filename matches a pattern in the <see cref="T:System.Web.Optimization.IgnoreList" />; otherwise, false.</returns>
<param name="context">The <see cref="T:System.Web.Optimization.BundleContext" /> object that contains state for both the framework configuration and the HTTP request.</param>
<param name="fileName">The name of the file to compare with the ignore list.</param>
</member>
<member name="T:System.Web.Optimization.IItemTransform"></member>
<member name="M:System.Web.Optimization.IItemTransform.Process(System.String,System.String)"></member>
<member name="T:System.Web.Optimization.JsMinify">
<summary>Represents a BundleTransform that does CSS Minification.</summary>
</member>
<member name="M:System.Web.Optimization.JsMinify.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.JsMinify" /> class.</summary>
</member>
<member name="M:System.Web.Optimization.JsMinify.Process(System.Web.Optimization.BundleContext,System.Web.Optimization.BundleResponse)">
<summary>Transforms the bundle contents by applying javascript minification.</summary>
<param name="context">The context associated with the bundle.</param>
<param name="response">The <see cref="T:System.Web.Optimization.BundleResponse" />.</param>
</member>
<member name="T:System.Web.Optimization.OptimizationMode">
<summary> OptimizationMode used by IgnoreList and FileExtensionReplacement. </summary>
</member>
<member name="F:System.Web.Optimization.OptimizationMode.Always">
<summary> Always: Always ignore </summary>
</member>
<member name="F:System.Web.Optimization.OptimizationMode.WhenDisabled">
<summary> WhenDisabled: Only when BundleTable.EnableOptimization = false </summary>
</member>
<member name="F:System.Web.Optimization.OptimizationMode.WhenEnabled">
<summary> WhenEnabled: Only when BundleTable.EnableOptimization = true </summary>
</member>
<member name="T:System.Web.Optimization.OptimizationSettings">
<summary>Configuration settings used by the <see cref="T:System.Web.Optimization.Optimizer" /> class to generate bundle responses outside of ASP.NET applications.</summary>
</member>
<member name="M:System.Web.Optimization.OptimizationSettings.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.OptimizationSettings" /> class.</summary>
</member>
<member name="P:System.Web.Optimization.OptimizationSettings.ApplicationPath">
<summary>The physical file path to resolve the ~ token in virtual paths.</summary>
<returns>The physical file path.</returns>
</member>
<member name="P:System.Web.Optimization.OptimizationSettings.BundleManifestPath">
<summary>The path to the bundle manifest file that sets up the <see cref="T:System.Web.Optimization.BundleCollection" />.</summary>
<returns>The path to the bundle manifest file that sets up the <see cref="T:System.Web.Optimization.BundleCollection" />.</returns>
</member>
<member name="P:System.Web.Optimization.OptimizationSettings.BundleSetupMethod">
<summary>Gets or sets a callback function which is invoked after the bundle manifest is loaded to allow further customization of the bundle collection.</summary>
<returns>A callback function which is invoked after the bundle manifest is loaded to allow further customization of the bundle collection.</returns>
</member>
<member name="P:System.Web.Optimization.OptimizationSettings.BundleTable"></member>
<member name="T:System.Web.Optimization.Optimizer">
<summary>Represents a standalone class for generating bundle responses outside of ASP.NET</summary>
</member>
<member name="M:System.Web.Optimization.Optimizer.BuildAllBundles(System.Web.Optimization.OptimizationSettings)"></member>
<member name="M:System.Web.Optimization.Optimizer.BuildBundle(System.String,System.Web.Optimization.OptimizationSettings)">
<summary>Builds a <see cref="T:System.Web.Optimization.BundleResponse" /> object from the declarations found in a bundle manifest file.</summary>
<returns>The bundle response for specified <paramref name="bundlePath" />.</returns>
<param name="bundlePath">The path to the bundle being requested.</param>
<param name="settings">An <see cref="T:System.Web.Optimization.OptimizationSettings" /> object containing configuration settings for optimization.</param>
</member>
<member name="T:System.Web.Optimization.PreApplicationStartCode">
<summary> Hooks up the BundleModule </summary>
</member>
<member name="M:System.Web.Optimization.PreApplicationStartCode.Start">
<summary> Hooks up the BundleModule </summary>
</member>
<member name="T:System.Web.Optimization.ScriptBundle">
<summary>Represents a bundle that does Js Minification.</summary>
</member>
<member name="M:System.Web.Optimization.ScriptBundle.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.ScriptBundle" /> class that takes a virtual path for the bundle.</summary>
<param name="virtualPath">The virtual path for the bundle.</param>
</member>
<member name="M:System.Web.Optimization.ScriptBundle.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.ScriptBundle" /> class that takes virtual path and cdnPath for the bundle.</summary>
<param name="virtualPath">The virtual path for the bundle.</param>
<param name="cdnPath">The path of a Content Delivery Network (CDN).</param>
</member>
<member name="T:System.Web.Optimization.Scripts">
<summary>Represents a type that allows queuing and rendering script elements.</summary>
</member>
<member name="P:System.Web.Optimization.Scripts.DefaultTagFormat">
<summary>Gets or sets the default format string for defining how script tags are rendered.</summary>
<returns>The default format string for defining how script tags are rendered.</returns>
</member>
<member name="M:System.Web.Optimization.Scripts.Render(System.String[])">
<summary>Renders script tags for the following paths.</summary>
<returns>The HTML string containing the script tag or tags for the bundle.</returns>
<param name="paths">Set of virtual paths for which to generate script tags.</param>
</member>
<member name="M:System.Web.Optimization.Scripts.RenderFormat(System.String,System.String[])">
<summary>Renders script tags for a set of paths based on a format string.</summary>
<returns>The HTML string containing the script tag or tags for the bundle.</returns>
<param name="tagFormat">The format string for defining the rendered script tags.</param>
<param name="paths">Set of virtual paths for which to generate script tags.</param>
</member>
<member name="M:System.Web.Optimization.Scripts.Url(System.String)">
<summary>Returns a fingerprinted URL if the <paramref name="virtualPath" /> is to a bundle, otherwise returns the resolve URL.</summary>
<returns>A <see cref="T:System.Web.IHtmlString" /> that represents the URL.</returns>
<param name="virtualPath">The virtual path.</param>
</member>
<member name="T:System.Web.Optimization.StyleBundle">
<summary> Represents a bundle that does CSS minification. </summary>
</member>
<member name="M:System.Web.Optimization.StyleBundle.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.StyleBundle" /> class with a virtual path for the bundle. </summary>
<param name="virtualPath">A virtual path for the bundle.</param>
</member>
<member name="M:System.Web.Optimization.StyleBundle.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Optimization.StyleBundle" /> class with virtual path and CDN path for the bundle. </summary>
<param name="virtualPath">A virtual path for the bundle.</param>
<param name="cdnPath">A CDN path for the bundle.</param>
</member>
<member name="T:System.Web.Optimization.Styles">
<summary>Represents a helper class for rendering link elements.</summary>
</member>
<member name="P:System.Web.Optimization.Styles.DefaultTagFormat">
<summary>Gets or sets the default format string for defining how link tags are rendered.</summary>
<returns>The default format string for defining how link tags are rendered.</returns>
</member>
<member name="M:System.Web.Optimization.Styles.Render(System.String[])">
<summary>Renders link tags for a set of paths.</summary>
<returns>A HTML string containing the link tag or tags for the bundle.</returns>
<param name="paths">Set of virtual paths for which to generate link tags.</param>
</member>
<member name="M:System.Web.Optimization.Styles.RenderFormat(System.String,System.String[])">
<summary>Renders link tags for a set of paths based on a format string.</summary>
<returns>A HTML string containing the link tag or tags for the bundle.</returns>
<param name="tagFormat">Format string for defining the rendered link tags.</param>
<param name="paths">Set of virtual paths for which to generate link tags.</param>
</member>
<member name="M:System.Web.Optimization.Styles.Url(System.String)">
<summary>Generates a version-stamped URL for a bundle.</summary>
<returns>A fingerprinted URL.</returns>
<param name="virtualPath">The virtual file path.</param>
</member>
</members>
</doc>

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.WebPages.Deployment</name>
</assembly>
<members>
<member name="T:System.Web.WebPages.Deployment.PreApplicationStartCode">
<summary>Provides a registration point for pre-application start code for Web Pages deployment.</summary>
</member>
<member name="M:System.Web.WebPages.Deployment.PreApplicationStartCode.Start">
<summary>Registers pre-application start code for Web Pages deployment.</summary>
</member>
<member name="T:System.Web.WebPages.Deployment.WebPagesDeployment">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides methods that are used to get deployment information about the Web application.</summary>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetAssemblyPath(System.Version)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the assembly path for the Web Pages deployment.</summary>
<returns>The assembly path for the Web Pages deployment.</returns>
<param name="version">The Web Pages version.</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetExplicitWebPagesVersion(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the Web Pages version from the given binary path.</summary>
<returns>The Web Pages version.</returns>
<param name="path">The binary path for the Web Pages.</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetIncompatibleDependencies(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the assembly references from the given path regardless of the Web Pages version.</summary>
<returns>The dictionary containing the assembly references of the Web Pages and its version.</returns>
<param name="appPath">The path to the Web Pages application.</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetMaxVersion">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the maximum version of the Web Pages loaded assemblies.</summary>
<returns>The maximum version of the Web Pages loaded assemblies.</returns>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetVersion(System.String)">
<summary>Gets the Web Pages version from the given path.</summary>
<returns>The Web Pages version.</returns>
<param name="path">The path of the root directory for the application.</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetVersionWithoutEnabledCheck(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the Web Pages version using the configuration settings with the specified path.</summary>
<returns>The Web Pages version.</returns>
<param name="path">The path to the application settings.</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetWebPagesAssemblies">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the assemblies for this Web Pages deployment.</summary>
<returns>A list containing the assemblies for this Web Pages deployment.</returns>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.IsEnabled(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the Web Pages deployment is enabled.</summary>
<returns>true if the Web Pages deployment is enabled; otherwise, false.</returns>
<param name="path">The path to the Web Pages deployment.</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.IsExplicitlyDisabled(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the Web Pages deployment is explicitly disabled.</summary>
<returns>true if the Web Pages deployment is explicitly disabled; otherwise, false.</returns>
<param name="path">The path to the Web Pages deployment.</param>
</member>
</members>
</doc>

Binary file not shown.

View File

@ -0,0 +1,292 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.WebPages.Razor</name>
</assembly>
<members>
<member name="T:System.Web.WebPages.Razor.CompilingPathEventArgs">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the base class for the compiling path that contains event data.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.CompilingPathEventArgs.#ctor(System.String,System.Web.WebPages.Razor.WebPageRazorHost)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.CompilingPathEventArgs" /> class.</summary>
<param name="virtualPath">The string of virtual path.</param>
<param name="host">The host for the webpage razor.</param>
</member>
<member name="P:System.Web.WebPages.Razor.CompilingPathEventArgs.Host">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the host for the webpage razor.</summary>
<returns>The host for the webpage razor.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.CompilingPathEventArgs.VirtualPath">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual path for the webpage.</summary>
<returns>The virtual path for the webpage.</returns>
</member>
<member name="T:System.Web.WebPages.Razor.PreApplicationStartCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.PreApplicationStartCode.Start">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="T:System.Web.WebPages.Razor.RazorBuildProvider">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a build provider for Razor.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.#ctor">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.RazorBuildProvider" /> class.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.AddVirtualPathDependency(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a virtual path dependency to the collection.</summary>
<param name="dependency">A virtual path dependency to add.</param>
</member>
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.AssemblyBuilder">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the assembly builder for Razor environment.</summary>
<returns>The assembly builder.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.CodeCompilerType">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the compiler settings for Razor environment.</summary>
</member>
<member name="E:System.Web.WebPages.Razor.RazorBuildProvider.CodeGenerationCompleted">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Occurs when code generation is completed.</summary>
</member>
<member name="E:System.Web.WebPages.Razor.RazorBuildProvider.CodeGenerationStarted">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Occurs when code generation is started.</summary>
</member>
<member name="E:System.Web.WebPages.Razor.RazorBuildProvider.CompilingPath">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Occurs when compiling with a new virtual path.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.CreateHost">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a Razor engine host instance base on web configuration.</summary>
<returns>A Razor engine host instance.</returns>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.GenerateCode(System.Web.Compilation.AssemblyBuilder)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the code using the provided assembly builder.</summary>
<param name="assemblyBuilder">The assembly builder.</param>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.GetGeneratedType(System.CodeDom.Compiler.CompilerResults)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the type of the generated code.</summary>
<returns>The type of the generated code.</returns>
<param name="results">The results of the code compilation.</param>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.GetHostFromConfig">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates the Razor engine host instance based on the web configuration.</summary>
<returns>The Razor engine host instance.</returns>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.InternalOpenReader">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Opens an internal text reader.</summary>
<returns>An internal text reader.</returns>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.OnBeforeCompilePath(System.Web.WebPages.Razor.CompilingPathEventArgs)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Raises the CompilingPath event.</summary>
<param name="args">The data provided for the CompilingPath event.</param>
</member>
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.VirtualPath">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual path of the source code.</summary>
<returns>The virtual path of the source code.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.VirtualPathDependencies">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the collection of virtual path for the dependencies.</summary>
<returns>The collection of virtual path for the dependencies.</returns>
</member>
<member name="T:System.Web.WebPages.Razor.WebCodeRazorHost">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a web code razor host for the web pages.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.#ctor(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.WebCodeRazorHost" /> class.</summary>
<param name="virtualPath">The virtual path.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.#ctor(System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.WebCodeRazorHost" /> class.</summary>
<param name="virtualPath">The virtual path.</param>
<param name="physicalPath">The physical path.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.GetClassName(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the class name of this instance.</summary>
<returns>The class name of this instance.</returns>
<param name="virtualPath">The virtual path.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.PostProcessGeneratedCode(System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>Generates a post process code for the web code razor host.</summary>
<param name="context">The generator code context.</param>
</member>
<member name="T:System.Web.WebPages.Razor.WebPageRazorHost">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the razor hosts in a webpage.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.#ctor(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.WebPageRazorHost" /> class with the specified virtual file path.</summary>
<param name="virtualPath">The virtual file path.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.#ctor(System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.WebPageRazorHost" /> class with the specified virtual and physical file path.</summary>
<param name="virtualPath">The virtual file path.</param>
<param name="physicalPath">The physical file path.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.AddGlobalImport(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a global import on the webpage.</summary>
<param name="ns">The notification service name.</param>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.CodeLanguage">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the <see cref="T:System.Web.Razor.RazorCodeLanguage" />.</summary>
<returns>The <see cref="T:System.Web.Razor.RazorCodeLanguage" />.</returns>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.CreateMarkupParser">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a markup parser.</summary>
<returns>A markup parser.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultBaseClass">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value for the DefaultBaseClass.</summary>
<returns>A value for the DefaultBaseClass.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultClassName">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the default class.</summary>
<returns>The name of the default class.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultDebugCompilation">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the debug compilation is set to default.</summary>
<returns>true if the debug compilation is set to default; otherwise, false.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultPageBaseClass">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the base class of the default page.</summary>
<returns>The base class of the default page.</returns>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.GetClassName(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the name of the class to which the specified webpage belongs.</summary>
<returns>The name of the class to which the specified webpage belongs.</returns>
<param name="virtualPath">The virtual file path.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.GetCodeLanguage">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the code language specified in the webpage.</summary>
<returns>The code language specified in the webpage.</returns>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.GetGlobalImports">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the global imports for the webpage.</summary>
<returns>The global imports for the webpage.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.InstrumentedSourceFilePath">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the file path of the instrumental source.</summary>
<returns>The file path of the instrumental source.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.IsSpecialPage">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the webpage is a special page.</summary>
<returns>true if the webpage is a special page; otherwise, false.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.PhysicalPath">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the physical file system path of the razor host.</summary>
<returns>They physical file system path of the razor host.</returns>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.PostProcessGeneratedCode(System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the generated code after the process.</summary>
<param name="context">The <see cref="T:System.Web.Razor.Generator.CodeGeneratorContext" />.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.RegisterSpecialFile(System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Registers the special file with the specified file name and base type name.</summary>
<param name="fileName">The file name.</param>
<param name="baseTypeName">The base type name.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.RegisterSpecialFile(System.String,System.Type)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Registers the special file with the specified file name and base type.</summary>
<param name="fileName">The file name.</param>
<param name="baseType">The type of base file.</param>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.VirtualPath">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual file path.</summary>
<returns>The virtual file path.</returns>
</member>
<member name="T:System.Web.WebPages.Razor.WebRazorHostFactory">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates instances of the host files.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.#ctor">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.WebRazorHostFactory" /> class.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.ApplyConfigurationToHost(System.Web.WebPages.Razor.Configuration.RazorPagesSection,System.Web.WebPages.Razor.WebPageRazorHost)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Loads the service description information from the configuration file and applies it to the host.</summary>
<param name="config">The configuration.</param>
<param name="host">The webpage razor host.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateDefaultHost(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a default host with the specified virtual path.</summary>
<returns>A default host.</returns>
<param name="virtualPath">The virtual path of the file.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateDefaultHost(System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a default host with the specified virtual and physical path.</summary>
<returns>A default host.</returns>
<param name="virtualPath">The virtual path of the file.</param>
<param name="physicalPath">The physical file system path.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHost(System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a Razor host.</summary>
<returns>A razor host.</returns>
<param name="virtualPath">The virtual path to the target file.</param>
<param name="physicalPath">The physical path to the target file.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a host from the configuration.</summary>
<returns>A host from the configuration.</returns>
<param name="virtualPath">The virtual path to the target file.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a host from the configuration.</summary>
<returns>A host from the configuration.</returns>
<param name="virtualPath">The virtual path of the file.</param>
<param name="physicalPath">The physical file system path.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a host from the configuration.</summary>
<returns>A host from the configuration.</returns>
<param name="config">The configuration.</param>
<param name="virtualPath">The virtual path of the file.</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup,System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a host from the configuration.</summary>
<returns>A host from the configuration.</returns>
<param name="config">The configuration.</param>
<param name="virtualPath">The virtual path of the file.</param>
<param name="physicalPath">The physical file system path.</param>
</member>
<member name="T:System.Web.WebPages.Razor.Configuration.HostSection">
<summary>Provides configuration system support for the host configuration section.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.Configuration.HostSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.Configuration.HostSection" /> class.</summary>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.HostSection.FactoryType">
<summary>Gets or sets the host factory.</summary>
<returns>The host factory.</returns>
</member>
<member name="F:System.Web.WebPages.Razor.Configuration.HostSection.SectionName">
<summary>Represents the name of the configuration section for a Razor host environment.</summary>
</member>
<member name="T:System.Web.WebPages.Razor.Configuration.RazorPagesSection">
<summary>Provides configuration system support for the pages configuration section.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.Configuration.RazorPagesSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.Configuration.RazorPagesSection" /> class.</summary>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorPagesSection.Namespaces">
<summary>Gets or sets the collection of namespaces to add to Web Pages pages in the current application.</summary>
<returns>The collection of namespaces.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorPagesSection.PageBaseType">
<summary>Gets or sets the name of the page base type class.</summary>
<returns>The name of the page base type class.</returns>
</member>
<member name="F:System.Web.WebPages.Razor.Configuration.RazorPagesSection.SectionName">
<summary>Represents the name of the configuration section for Razor pages.</summary>
</member>
<member name="T:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup">
<summary>Provides configuration system support for the system.web.webPages.razor configuration section.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup" /> class.</summary>
</member>
<member name="F:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.GroupName">
<summary>Represents the name of the configuration section for Razor Web section. Contains the static, read-only string "system.web.webPages.razor".</summary>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.Host">
<summary>Gets or sets the host value for system.web.webPages.razor section group.</summary>
<returns>The host value.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.Pages">
<summary>Gets or sets the value of the pages element for the system.web.webPages.razor section.</summary>
<returns>The pages element value.</returns>
</member>
</members>
</doc>

Binary file not shown.

File diff suppressed because it is too large Load Diff

BIN
references/WebGrease.dll Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
references/itextsharp.dll Normal file

Binary file not shown.

57830
references/itextsharp.xml Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.