This commit is contained in:
commit
bea333e6cc
|
@ -0,0 +1,63 @@
|
|||
###############################################################################
|
||||
# Set default behavior to automatically normalize line endings.
|
||||
###############################################################################
|
||||
* text=auto
|
||||
|
||||
###############################################################################
|
||||
# Set default behavior for command prompt diff.
|
||||
#
|
||||
# This is need for earlier builds of msysgit that does not have it on by
|
||||
# default for csharp files.
|
||||
# Note: This is only used by command line
|
||||
###############################################################################
|
||||
#*.cs diff=csharp
|
||||
|
||||
###############################################################################
|
||||
# Set the merge driver for project and solution files
|
||||
#
|
||||
# Merging from the command prompt will add diff markers to the files if there
|
||||
# are conflicts (Merging from VS is not affected by the settings below, in VS
|
||||
# the diff markers are never inserted). Diff markers may cause the following
|
||||
# file extensions to fail to load in VS. An alternative would be to treat
|
||||
# these files as binary and thus will always conflict and require user
|
||||
# intervention with every merge. To do so, just uncomment the entries below
|
||||
###############################################################################
|
||||
#*.sln merge=binary
|
||||
#*.csproj merge=binary
|
||||
#*.vbproj merge=binary
|
||||
#*.vcxproj merge=binary
|
||||
#*.vcproj merge=binary
|
||||
#*.dbproj merge=binary
|
||||
#*.fsproj merge=binary
|
||||
#*.lsproj merge=binary
|
||||
#*.wixproj merge=binary
|
||||
#*.modelproj merge=binary
|
||||
#*.sqlproj merge=binary
|
||||
#*.wwaproj merge=binary
|
||||
|
||||
###############################################################################
|
||||
# behavior for image files
|
||||
#
|
||||
# image files are treated as binary by default.
|
||||
###############################################################################
|
||||
#*.jpg binary
|
||||
#*.png binary
|
||||
#*.gif binary
|
||||
|
||||
###############################################################################
|
||||
# diff behavior for common document formats
|
||||
#
|
||||
# Convert binary document formats to text before diffing them. This feature
|
||||
# is only available from the command line. Turn it on by uncommenting the
|
||||
# entries below.
|
||||
###############################################################################
|
||||
#*.doc diff=astextplain
|
||||
#*.DOC diff=astextplain
|
||||
#*.docx diff=astextplain
|
||||
#*.DOCX diff=astextplain
|
||||
#*.dot diff=astextplain
|
||||
#*.DOT diff=astextplain
|
||||
#*.pdf diff=astextplain
|
||||
#*.PDF diff=astextplain
|
||||
#*.rtf diff=astextplain
|
||||
#*.RTF diff=astextplain
|
|
@ -0,0 +1,374 @@
|
|||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||
|
||||
# User-specific files
|
||||
*.rsuser
|
||||
*.suo
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
||||
# Mono auto generated files
|
||||
mono_crash.*
|
||||
|
||||
# Build results
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
[Rr]eleases/
|
||||
x64/
|
||||
x86/
|
||||
[Ww][Ii][Nn]32/
|
||||
[Aa][Rr][Mm]/
|
||||
[Aa][Rr][Mm]64/
|
||||
bld/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
[Oo]ut/
|
||||
[Ll]og/
|
||||
[Ll]ogs/
|
||||
|
||||
# Visual Studio 2015/2017 cache/options directory
|
||||
.vs/
|
||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||
#wwwroot/
|
||||
|
||||
# Visual Studio 2017 auto generated files
|
||||
Generated\ Files/
|
||||
|
||||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
|
||||
# NUnit
|
||||
*.VisualState.xml
|
||||
TestResult.xml
|
||||
nunit-*.xml
|
||||
|
||||
# Build Results of an ATL Project
|
||||
[Dd]ebugPS/
|
||||
[Rr]eleasePS/
|
||||
dlldata.c
|
||||
|
||||
# Benchmark Results
|
||||
BenchmarkDotNet.Artifacts/
|
||||
|
||||
# .NET Core
|
||||
project.lock.json
|
||||
project.fragment.lock.json
|
||||
artifacts/
|
||||
|
||||
# ASP.NET Scaffolding
|
||||
ScaffoldingReadMe.txt
|
||||
|
||||
# StyleCop
|
||||
StyleCopReport.xml
|
||||
|
||||
# Files built by Visual Studio
|
||||
*_i.c
|
||||
*_p.c
|
||||
*_h.h
|
||||
*.ilk
|
||||
*.meta
|
||||
*.obj
|
||||
*.iobj
|
||||
*.pch
|
||||
*.pdb
|
||||
*.ipdb
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
*.tlh
|
||||
*.tmp
|
||||
*.tmp_proj
|
||||
*_wpftmp.csproj
|
||||
*.log
|
||||
*.vspscc
|
||||
*.vssscc
|
||||
.builds
|
||||
*.pidb
|
||||
*.svclog
|
||||
*.scc
|
||||
|
||||
# Chutzpah Test files
|
||||
_Chutzpah*
|
||||
|
||||
# Visual C++ cache files
|
||||
ipch/
|
||||
*.aps
|
||||
*.ncb
|
||||
*.opendb
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.cachefile
|
||||
*.VC.db
|
||||
*.VC.VC.opendb
|
||||
|
||||
# Visual Studio profiler
|
||||
*.psess
|
||||
*.vsp
|
||||
*.vspx
|
||||
*.sap
|
||||
|
||||
# Visual Studio Trace Files
|
||||
*.e2e
|
||||
|
||||
# TFS 2012 Local Workspace
|
||||
$tf/
|
||||
|
||||
# Guidance Automation Toolkit
|
||||
*.gpState
|
||||
|
||||
# ReSharper is a .NET coding add-in
|
||||
_ReSharper*/
|
||||
*.[Rr]e[Ss]harper
|
||||
*.DotSettings.user
|
||||
|
||||
# TeamCity is a build add-in
|
||||
_TeamCity*
|
||||
|
||||
# DotCover is a Code Coverage Tool
|
||||
*.dotCover
|
||||
|
||||
# AxoCover is a Code Coverage Tool
|
||||
.axoCover/*
|
||||
!.axoCover/settings.json
|
||||
|
||||
# Coverlet is a free, cross platform Code Coverage Tool
|
||||
coverage*.json
|
||||
coverage*.xml
|
||||
coverage*.info
|
||||
|
||||
# Visual Studio code coverage results
|
||||
*.coverage
|
||||
*.coveragexml
|
||||
|
||||
# NCrunch
|
||||
_NCrunch_*
|
||||
.*crunch*.local.xml
|
||||
nCrunchTemp_*
|
||||
|
||||
# MightyMoose
|
||||
*.mm.*
|
||||
AutoTest.Net/
|
||||
|
||||
# Web workbench (sass)
|
||||
.sass-cache/
|
||||
|
||||
# Installshield output folder
|
||||
[Ee]xpress/
|
||||
|
||||
# DocProject is a documentation generator add-in
|
||||
DocProject/buildhelp/
|
||||
DocProject/Help/*.HxT
|
||||
DocProject/Help/*.HxC
|
||||
DocProject/Help/*.hhc
|
||||
DocProject/Help/*.hhk
|
||||
DocProject/Help/*.hhp
|
||||
DocProject/Help/Html2
|
||||
DocProject/Help/html
|
||||
|
||||
# Click-Once directory
|
||||
publish/
|
||||
|
||||
# Publish Web Output
|
||||
*.[Pp]ublish.xml
|
||||
*.azurePubxml
|
||||
# Note: Comment the next line if you want to checkin your web deploy settings,
|
||||
# but database connection strings (with potential passwords) will be unencrypted
|
||||
*.pubxml
|
||||
*.publishproj
|
||||
|
||||
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
||||
# checkin your Azure Web App publish settings, but sensitive information contained
|
||||
# in these scripts will be unencrypted
|
||||
PublishScripts/
|
||||
|
||||
# NuGet Packages
|
||||
*.nupkg
|
||||
# NuGet Symbol Packages
|
||||
*.snupkg
|
||||
# The packages folder can be ignored because of Package Restore
|
||||
**/[Pp]ackages/*
|
||||
# except build/, which is used as an MSBuild target.
|
||||
!**/[Pp]ackages/build/
|
||||
# Uncomment if necessary however generally it will be regenerated when needed
|
||||
#!**/[Pp]ackages/repositories.config
|
||||
# NuGet v3's project.json files produces more ignorable files
|
||||
*.nuget.props
|
||||
*.nuget.targets
|
||||
|
||||
# Microsoft Azure Build Output
|
||||
csx/
|
||||
*.build.csdef
|
||||
|
||||
# Microsoft Azure Emulator
|
||||
ecf/
|
||||
rcf/
|
||||
|
||||
# Windows Store app package directories and files
|
||||
AppPackages/
|
||||
BundleArtifacts/
|
||||
Package.StoreAssociation.xml
|
||||
_pkginfo.txt
|
||||
*.appx
|
||||
*.appxbundle
|
||||
*.appxupload
|
||||
|
||||
# Visual Studio cache files
|
||||
# files ending in .cache can be ignored
|
||||
*.[Cc]ache
|
||||
# but keep track of directories ending in .cache
|
||||
!?*.[Cc]ache/
|
||||
|
||||
# Others
|
||||
ClientBin/
|
||||
~$*
|
||||
*~
|
||||
*.dbmdl
|
||||
*.dbproj.schemaview
|
||||
*.jfm
|
||||
*.pfx
|
||||
*.publishsettings
|
||||
orleans.codegen.cs
|
||||
|
||||
# Including strong name files can present a security risk
|
||||
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
||||
#*.snk
|
||||
|
||||
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||
#bower_components/
|
||||
|
||||
# RIA/Silverlight projects
|
||||
Generated_Code/
|
||||
|
||||
# Backup & report files from converting an old project file
|
||||
# to a newer Visual Studio version. Backup files are not needed,
|
||||
# because we have git ;-)
|
||||
_UpgradeReport_Files/
|
||||
Backup*/
|
||||
UpgradeLog*.XML
|
||||
UpgradeLog*.htm
|
||||
ServiceFabricBackup/
|
||||
*.rptproj.bak
|
||||
|
||||
# SQL Server files
|
||||
*.mdf
|
||||
*.ldf
|
||||
*.ndf
|
||||
|
||||
# Business Intelligence projects
|
||||
*.rdl.data
|
||||
*.bim.layout
|
||||
*.bim_*.settings
|
||||
*.rptproj.rsuser
|
||||
*- [Bb]ackup.rdl
|
||||
*- [Bb]ackup ([0-9]).rdl
|
||||
*- [Bb]ackup ([0-9][0-9]).rdl
|
||||
|
||||
# Microsoft Fakes
|
||||
FakesAssemblies/
|
||||
|
||||
# GhostDoc plugin setting file
|
||||
*.GhostDoc.xml
|
||||
|
||||
# Node.js Tools for Visual Studio
|
||||
.ntvs_analysis.dat
|
||||
node_modules/
|
||||
|
||||
# Visual Studio 6 build log
|
||||
*.plg
|
||||
|
||||
# Visual Studio 6 workspace options file
|
||||
*.opt
|
||||
|
||||
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
||||
*.vbw
|
||||
|
||||
# Visual Studio LightSwitch build output
|
||||
**/*.HTMLClient/GeneratedArtifacts
|
||||
**/*.DesktopClient/GeneratedArtifacts
|
||||
**/*.DesktopClient/ModelManifest.xml
|
||||
**/*.Server/GeneratedArtifacts
|
||||
**/*.Server/ModelManifest.xml
|
||||
_Pvt_Extensions
|
||||
|
||||
# Paket dependency manager
|
||||
.paket/paket.exe
|
||||
paket-files/
|
||||
|
||||
# FAKE - F# Make
|
||||
.fake/
|
||||
|
||||
# CodeRush personal settings
|
||||
.cr/personal
|
||||
|
||||
# Python Tools for Visual Studio (PTVS)
|
||||
__pycache__/
|
||||
*.pyc
|
||||
|
||||
# Cake - Uncomment if you are using it
|
||||
# tools/**
|
||||
# !tools/packages.config
|
||||
|
||||
# Tabs Studio
|
||||
*.tss
|
||||
|
||||
# Telerik's JustMock configuration file
|
||||
*.jmconfig
|
||||
|
||||
# BizTalk build output
|
||||
*.btp.cs
|
||||
*.btm.cs
|
||||
*.odx.cs
|
||||
*.xsd.cs
|
||||
|
||||
# OpenCover UI analysis results
|
||||
OpenCover/
|
||||
|
||||
# Azure Stream Analytics local run output
|
||||
ASALocalRun/
|
||||
|
||||
# MSBuild Binary and Structured Log
|
||||
*.binlog
|
||||
|
||||
# NVidia Nsight GPU debugger configuration file
|
||||
*.nvuser
|
||||
|
||||
# MFractors (Xamarin productivity tool) working folder
|
||||
.mfractor/
|
||||
|
||||
# Local History for Visual Studio
|
||||
.localhistory/
|
||||
|
||||
# BeatPulse healthcheck temp database
|
||||
healthchecksdb
|
||||
|
||||
# Backup folder for Package Reference Convert tool in Visual Studio 2017
|
||||
MigrationBackup/
|
||||
|
||||
# Ionide (cross platform F# VS Code tools) working folder
|
||||
.ionide/
|
||||
|
||||
# Fody - auto-generated XML schema
|
||||
FodyWeavers.xsd
|
||||
/packages
|
||||
加密处理
|
||||
加密处理
|
||||
jiami
|
||||
WXRobot2.8Demo
|
||||
Coco.Framework
|
||||
Help
|
||||
Members
|
||||
Coco.Framework
|
||||
/ProductTool
|
||||
ProductTool
|
|
@ -0,0 +1,32 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Chat.Packet
|
||||
{
|
||||
///// <summary>
|
||||
///// 客户端 - CMD命令
|
||||
///// </summary>
|
||||
//public enum : int
|
||||
//{
|
||||
// 登陆成功Wechat = 1000,
|
||||
// 收到消息Wechat = 1001,
|
||||
// 收到通讯录Wechat = 1002,
|
||||
// 收到客户端Wechat = 1003
|
||||
//}
|
||||
|
||||
/// <summary>
|
||||
/// 服务器 - CMD命令
|
||||
/// </summary>
|
||||
public enum PackCMD : int
|
||||
{
|
||||
Wechat发送消息 = 100001,
|
||||
|
||||
|
||||
Wechat刷新客户端 = 200001,
|
||||
Wechat刷新通讯录 = 200002 ,
|
||||
Wechat收到消息 = 200003
|
||||
}
|
||||
}
|
|
@ -0,0 +1,56 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Runtime.Serialization.Json;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using CsharpHttpHelper;
|
||||
namespace Chat.Packet
|
||||
{
|
||||
public class PacketData
|
||||
{
|
||||
public PacketData() { }
|
||||
|
||||
public PackCMD Cmd { get; set; }
|
||||
public string FromUser { get; set; }
|
||||
|
||||
public object Data { get; set; }
|
||||
public PacketData(PackCMD cmd)
|
||||
{
|
||||
this.Cmd = cmd;
|
||||
}
|
||||
|
||||
public PacketData(PackCMD cmd, object data) : this(cmd)
|
||||
{
|
||||
this.Data = data;
|
||||
}
|
||||
|
||||
private byte[] _body;
|
||||
public byte[] EncData(string key)
|
||||
{
|
||||
if (_body != null) return _body;
|
||||
try
|
||||
{
|
||||
string aes_data = string.Empty;
|
||||
var _json = HttpHelper.ObjectToJson(Data);
|
||||
if (_json != null)
|
||||
{
|
||||
var aes = new AESCryption();
|
||||
aes_data = aes.AesEncrypt(_json, key);
|
||||
}
|
||||
string need = (int)Cmd + " " + aes_data + "\r\n";
|
||||
_body = Encoding.UTF8.GetBytes(need);
|
||||
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
}
|
||||
return _body;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,42 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Chat.Packet.Packts
|
||||
{
|
||||
public class MessagePack :PacketData
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 是群消息
|
||||
/// </summary>
|
||||
public string ToUsername { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///发送给谁
|
||||
/// </summary>
|
||||
public string ToUsernick { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 群号
|
||||
/// </summary>
|
||||
public string ToGroupid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 群名称
|
||||
/// </summary>
|
||||
public string ToGroupname { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 消息正文
|
||||
/// </summary>
|
||||
public string Message { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// At某成员
|
||||
/// </summary>
|
||||
public string AtUsername { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,36 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// 有关程序集的一般信息由以下
|
||||
// 控制。更改这些特性值可修改
|
||||
// 与程序集关联的信息。
|
||||
[assembly: AssemblyTitle("Chat.Packet")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Chat.Packet")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2019")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// 将 ComVisible 设置为 false 会使此程序集中的类型
|
||||
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
|
||||
//请将此类型的 ComVisible 特性设置为 true。
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
|
||||
[assembly: Guid("1bddba09-c420-4897-8e8c-3625f2eec154")]
|
||||
|
||||
// 程序集的版本信息由下列四个值组成:
|
||||
//
|
||||
// 主版本
|
||||
// 次版本
|
||||
// 生成号
|
||||
// 修订号
|
||||
//
|
||||
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
|
||||
//通过使用 "*",如下所示:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Chat.Packet
|
||||
{
|
||||
public enum RobotType:int
|
||||
{
|
||||
微信 = 1
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<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>
|
||||
<system.data>
|
||||
<DbProviderFactories>
|
||||
<remove invariant="System.Data.SQLite.EF6"/>
|
||||
<add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".NET Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6"/>
|
||||
</DbProviderFactories>
|
||||
</system.data>
|
||||
<entityFramework>
|
||||
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
|
||||
<parameters>
|
||||
<parameter value="v12.0"/>
|
||||
</parameters>
|
||||
</defaultConnectionFactory>
|
||||
<providers>
|
||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
|
||||
<provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6"/>
|
||||
</providers>
|
||||
</entityFramework>
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/></startup></configuration>
|
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Files>
|
||||
<File Name="Dev" Version="2039.12.21.1" Url="http://update.api.52cmg.cn/file/flsystem/dev.xml" />
|
||||
<File Name="Dev2" Version="2039.12.21.1" Url="http://update.api.52cmg.cn/file/flsystem/dev.xml" />
|
||||
<File Name="Dev3" Version="2039.12.21.1" Url="http://update.api.52cmg.cn/file/flsystem/dev.xml" />
|
||||
</Files>
|
Binary file not shown.
|
@ -0,0 +1,96 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Owin.Cors</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Owin.CorsExtensions">
|
||||
<summary>
|
||||
Extension methods for adding CorsMiddleware to an application pipeline.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Owin.CorsExtensions.UseCors(Owin.IAppBuilder,Microsoft.Owin.Cors.CorsOptions)">
|
||||
<summary>
|
||||
Adds a CORS middleware to your web application pipeline to allow cross domain requests.
|
||||
</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.Cors.CorsMiddleware">
|
||||
<summary>
|
||||
Processes requests according to the provided cross domain policy.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Cors.CorsMiddleware.#ctor(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},Microsoft.Owin.Cors.CorsOptions)">
|
||||
<summary>
|
||||
Creates a new instance of CorsMiddleware.
|
||||
</summary>
|
||||
<param name="next"></param>
|
||||
<param name="options"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Cors.CorsMiddleware.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>
|
||||
Evaluates and applies the CORS policy. Responses will be generated for preflight requests.
|
||||
Requests that are permitted by the CORS policy will be passed onto the next middleware.
|
||||
</summary>
|
||||
<param name="environment"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Cors.CorsOptions">
|
||||
<summary>
|
||||
Contains the options used by the CorsMiddleware
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Cors.CorsOptions.AllowAll">
|
||||
<summary>
|
||||
A policy that allows all headers, all methods, any origin and supports credentials
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Cors.CorsOptions.PolicyProvider">
|
||||
<summary>
|
||||
The cors policy to apply
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Cors.CorsOptions.CorsEngine">
|
||||
<summary>
|
||||
The cors engine
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Cors.CorsPolicyProvider">
|
||||
<summary>
|
||||
A pluggable CORS policy provider that always returns null by default.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Cors.ICorsPolicyProvider">
|
||||
<summary>
|
||||
Defines how to select a CORS policy for a given request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Cors.ICorsPolicyProvider.GetCorsPolicyAsync(Microsoft.Owin.IOwinRequest)">
|
||||
<summary>
|
||||
Selects a CORS policy to apply for the given request.
|
||||
</summary>
|
||||
<param name="request"></param>
|
||||
<returns>The CORS policy to apply to the request, or null if no policy applies and
|
||||
the request should be passed through to the next middleware.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Cors.CorsPolicyProvider.#ctor">
|
||||
<summary>
|
||||
Creates a new CorsPolicyProvider instance.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Cors.CorsPolicyProvider.GetCorsPolicyAsync(Microsoft.Owin.IOwinRequest)">
|
||||
<summary>
|
||||
Executes the PolicyResolver unless overridden by a subclass.
|
||||
</summary>
|
||||
<param name="request"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Cors.CorsPolicyProvider.PolicyResolver">
|
||||
<summary>
|
||||
A pluggable callback that will be used to select the CORS policy for the given requests.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
|
@ -0,0 +1,148 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Owin.FileSystems</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem">
|
||||
<summary>
|
||||
Looks up files using embedded resources in the specified assembly.
|
||||
This file system is case sensitive.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.FileSystems.IFileSystem">
|
||||
<summary>
|
||||
A file system abstraction
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.IFileSystem.TryGetFileInfo(System.String,Microsoft.Owin.FileSystems.IFileInfo@)">
|
||||
<summary>
|
||||
Locate a file at the given path
|
||||
</summary>
|
||||
<param name="subpath">The path that identifies the file</param>
|
||||
<param name="fileInfo">The discovered file if any</param>
|
||||
<returns>True if a file was located at the given path</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.IFileSystem.TryGetDirectoryContents(System.String,System.Collections.Generic.IEnumerable{Microsoft.Owin.FileSystems.IFileInfo}@)">
|
||||
<summary>
|
||||
Enumerate a directory at the given path, if any
|
||||
</summary>
|
||||
<param name="subpath">The path that identifies the directory</param>
|
||||
<param name="contents">The contents if any</param>
|
||||
<returns>True if a directory was located at the given path</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem"/> class using the calling
|
||||
assembly and empty base namespace.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem.#ctor(System.Reflection.Assembly)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem"/> class using the specified
|
||||
assembly and empty base namespace.
|
||||
</summary>
|
||||
<param name="assembly"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem"/> class using the calling
|
||||
assembly and specified base namespace.
|
||||
</summary>
|
||||
<param name="baseNamespace">The base namespace that contains the embedded resources.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem.#ctor(System.Reflection.Assembly,System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem"/> class using the specified
|
||||
assembly and base namespace.
|
||||
</summary>
|
||||
<param name="assembly">The assembly that contains the embedded resources.</param>
|
||||
<param name="baseNamespace">The base namespace that contains the embedded resources.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem.TryGetFileInfo(System.String,Microsoft.Owin.FileSystems.IFileInfo@)">
|
||||
<summary>
|
||||
Locate a file at the given path
|
||||
</summary>
|
||||
<param name="subpath">The path that identifies the file</param>
|
||||
<param name="fileInfo">The discovered file if any</param>
|
||||
<returns>True if a file was located at the given path</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.EmbeddedResourceFileSystem.TryGetDirectoryContents(System.String,System.Collections.Generic.IEnumerable{Microsoft.Owin.FileSystems.IFileInfo}@)">
|
||||
<summary>
|
||||
Enumerate a directory at the given path, if any.
|
||||
This file system uses a flat directory structure. Everything under the base namespace is considered to be one directory.
|
||||
</summary>
|
||||
<param name="subpath">The path that identifies the directory</param>
|
||||
<param name="contents">The contents if any</param>
|
||||
<returns>True if a directory was located at the given path</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.FileSystems.IFileInfo">
|
||||
<summary>
|
||||
Represents a file in the given file system.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.IFileInfo.CreateReadStream">
|
||||
<summary>
|
||||
Return file contents as readonly stream. Caller should dispose stream when complete.
|
||||
</summary>
|
||||
<returns>The file stream</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.FileSystems.IFileInfo.Length">
|
||||
<summary>
|
||||
The length of the file in bytes, or -1 for a directory info
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.FileSystems.IFileInfo.PhysicalPath">
|
||||
<summary>
|
||||
The path to the file, including the file name. Return null if the file is not directly accessible.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.FileSystems.IFileInfo.Name">
|
||||
<summary>
|
||||
The name of the file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.FileSystems.IFileInfo.LastModified">
|
||||
<summary>
|
||||
When the file was last modified
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.FileSystems.IFileInfo.IsDirectory">
|
||||
<summary>
|
||||
True for the case TryGetDirectoryContents has enumerated a sub-directory
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.FileSystems.PhysicalFileSystem">
|
||||
<summary>
|
||||
Looks up files using the on-disk file system
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.PhysicalFileSystem.#ctor(System.String)">
|
||||
<summary>
|
||||
Creates a new instance of a PhysicalFileSystem at the given root directory.
|
||||
</summary>
|
||||
<param name="root">The root directory</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.PhysicalFileSystem.TryGetFileInfo(System.String,Microsoft.Owin.FileSystems.IFileInfo@)">
|
||||
<summary>
|
||||
Locate a file at the given path by directly mapping path segments to physical directories.
|
||||
</summary>
|
||||
<param name="subpath">A path under the root directory</param>
|
||||
<param name="fileInfo">The discovered file, if any</param>
|
||||
<returns>True if a file was discovered at the given path</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.FileSystems.PhysicalFileSystem.TryGetDirectoryContents(System.String,System.Collections.Generic.IEnumerable{Microsoft.Owin.FileSystems.IFileInfo}@)">
|
||||
<summary>
|
||||
Enumerate a directory at the given path, if any.
|
||||
</summary>
|
||||
<param name="subpath">A path under the root directory</param>
|
||||
<param name="contents">The discovered directories, if any</param>
|
||||
<returns>True if a directory was discovered at the given path</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.FileSystems.PhysicalFileSystem.Root">
|
||||
<summary>
|
||||
The root directory for this instance.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
|
@ -0,0 +1,140 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Owin.Host.HttpListener</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Owin.Host.HttpListener.RequestProcessing.ExceptionFilterStream">
|
||||
<summary>
|
||||
This class is used to wrap other streams and convert some exception types.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Host.HttpListener.RequestProcessing.RequestHeadersDictionary">
|
||||
<summary>
|
||||
This wraps HttpListenerRequest's WebHeaderCollection (NameValueCollection) and adapts it to
|
||||
the OWIN required IDictionary surface area. It remains fully mutable, but you will be subject
|
||||
to the header validations performed by the underlying collection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Host.HttpListener.OwinHttpListener">
|
||||
<summary>
|
||||
This wraps HttpListener and exposes it as an OWIN compatible server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.HttpListener.OwinHttpListener.#ctor">
|
||||
<summary>
|
||||
Creates a listener wrapper that can be configured by the user before starting.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.HttpListener.OwinHttpListener.SetRequestProcessingLimits(System.Int32,System.Int32)">
|
||||
<summary>
|
||||
These are merged as one call because they should be swapped out atomically.
|
||||
This controls how many requests the server attempts to process concurrently.
|
||||
</summary>
|
||||
<param name="maxAccepts">The maximum number of pending request receives.</param>
|
||||
<param name="maxRequests">The maximum number of active requests being processed.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.HttpListener.OwinHttpListener.GetRequestProcessingLimits(System.Int32@,System.Int32@)">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
<param name="maxAccepts"></param>
|
||||
<param name="maxRequests"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.HttpListener.OwinHttpListener.SetRequestQueueLimit(System.Int64)">
|
||||
<summary>
|
||||
Sets the maximum number of requests that will be queued up in Http.Sys.
|
||||
</summary>
|
||||
<param name="limit"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.HttpListener.OwinHttpListener.Start(System.Net.HttpListener,System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},System.Collections.Generic.IList{System.Collections.Generic.IDictionary{System.String,System.Object}},System.Collections.Generic.IDictionary{System.String,System.Object},System.Func{System.String,System.Func{System.Diagnostics.TraceEventType,System.Int32,System.Object,System.Exception,System.Func{System.Object,System.Exception,System.String},System.Boolean}})">
|
||||
<summary>
|
||||
Starts the listener and request processing threads.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.HttpListener.OwinHttpListener.Dispose">
|
||||
<summary>
|
||||
Shuts down the listener and disposes it.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.HttpListener.OwinHttpListener.Listener">
|
||||
<summary>
|
||||
The HttpListener instance wrapped by this wrapper.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Host.HttpListener.RequestProcessing.OwinHttpListenerRequest">
|
||||
<summary>
|
||||
This wraps an HttpListenerRequest and exposes it as an OWIN environment IDictionary.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.HttpListener.RequestProcessing.OwinHttpListenerRequest.#ctor(System.Net.HttpListenerRequest,System.String,System.String,System.String,Microsoft.Owin.Host.HttpListener.RequestProcessing.CallEnvironment)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.Owin.Host.HttpListener.RequestProcessing.OwinHttpListenerRequest"/> class.
|
||||
Uses the given request object to populate the OWIN standard keys in the environment IDictionary.
|
||||
Most values are copied so that they can be mutable, but the headers collection is only wrapped.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Host.HttpListener.RequestProcessing.OwinHttpListenerResponse">
|
||||
<summary>
|
||||
This wraps an HttpListenerResponse, populates it with the given response fields, and relays
|
||||
the response body to the underlying stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.HttpListener.RequestProcessing.OwinHttpListenerResponse.#ctor(System.Net.HttpListenerContext,Microsoft.Owin.Host.HttpListener.RequestProcessing.CallEnvironment)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.Owin.Host.HttpListener.RequestProcessing.OwinHttpListenerResponse"/> class.
|
||||
Sets up the Environment with the necessary request state items.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Host.HttpListener.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.HttpListener.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.HttpListener.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.HttpListener.Resources.Exception_DuplicateKey">
|
||||
<summary>
|
||||
Looks up a localized string similar to The key '{0}' is already present in the dictionary..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.HttpListener.Resources.Exception_ResponseAlreadySent">
|
||||
<summary>
|
||||
Looks up a localized string similar to The response headers have already been sent..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Host.HttpListener.OwinServerFactory">
|
||||
<summary>
|
||||
Implements the Katana setup pattern for the OwinHttpListener server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.HttpListener.OwinServerFactory.Initialize(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>
|
||||
Advertise the capabilities of the server.
|
||||
</summary>
|
||||
<param name="properties"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.HttpListener.OwinServerFactory.Create(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>
|
||||
Creates an OwinHttpListener and starts listening on the given URL.
|
||||
</summary>
|
||||
<param name="app">The application entry point.</param>
|
||||
<param name="properties">The addresses to listen on.</param>
|
||||
<returns>The OwinHttpListener. Invoke Dispose to shut down.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Host.HttpListener.WebSockets.Constants">
|
||||
<summary>
|
||||
Standard keys and values for use within the OWIN interfaces
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
|
@ -0,0 +1,639 @@
|
|||
<?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 '{0}', the assembly '{1}' 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 '{0}', the class '{1}' was not found in assembly '{2}'..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SharedResourceNamespace.LoaderResources.Exception_AttributeNameConflict">
|
||||
<summary>
|
||||
Looks up a localized string similar to The OwinStartup attribute discovered in assembly '{0}' referencing startup type '{1}' conflicts with the attribute in assembly '{2}' referencing startup type '{3}' because they have the same FriendlyName '{4}'. 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 '{0}' conflicts with the type '{1}'. 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 '{0}' does not match the given value '{1}' in Assembly '{2}'..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SharedResourceNamespace.LoaderResources.MethodNotFoundInClass">
|
||||
<summary>
|
||||
Looks up a localized string similar to No '{0}' method was found in class '{1}'..
|
||||
</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 '{0}'..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SharedResourceNamespace.LoaderResources.StartupTypePropertyMissing">
|
||||
<summary>
|
||||
Looks up a localized string similar to The type '{0}' referenced from assembly '{1}' does not define a property 'StartupType' of type 'Type'..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SharedResourceNamespace.LoaderResources.TypeOrMethodNotFound">
|
||||
<summary>
|
||||
Looks up a localized string similar to The given type or method '{0}' was not found. Try specifying the Assembly..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SharedResourceNamespace.LoaderResources.UnexpectedMethodSignature">
|
||||
<summary>
|
||||
Looks up a localized string similar to The '{0}' method on class '{1}' does not have the expected signature 'void {0}(IAppBuilder)'..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager">
|
||||
<summary>
|
||||
This handles cookies that are limited by per cookie length. It breaks down long cookies for responses, and reassembles them
|
||||
from requests. The cookies are stored in the System.Web object model rather than directly in the headers.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.#ctor">
|
||||
<summary>
|
||||
This handles cookies that are limited by per cookie length. It breaks down long cookies for responses, and reassembles them
|
||||
from requests. The cookies are stored in the System.Web object model rather than directly in the headers.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.GetRequestCookie(Microsoft.Owin.IOwinContext,System.String)">
|
||||
<summary>
|
||||
Get the reassembled cookie. Non chunked cookies are returned normally.
|
||||
Cookies with missing chunks just have their "chunks:XX" header returned.
|
||||
</summary>
|
||||
<param name="context"></param>
|
||||
<param name="key"></param>
|
||||
<returns>The reassembled cookie, if any, or null.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.AppendResponseCookie(Microsoft.Owin.IOwinContext,System.String,System.String,Microsoft.Owin.CookieOptions)">
|
||||
<summary>
|
||||
Appends a new response cookie to the Set-Cookie header. If the cookie is larger than the given size limit
|
||||
then it will be broken down into multiple cookies as follows:
|
||||
Set-Cookie: CookieName=chunks:3; path=/
|
||||
Set-Cookie: CookieNameC1=Segment1; path=/
|
||||
Set-Cookie: CookieNameC2=Segment2; path=/
|
||||
Set-Cookie: CookieNameC3=Segment3; path=/
|
||||
</summary>
|
||||
<param name="context"></param>
|
||||
<param name="key"></param>
|
||||
<param name="value"></param>
|
||||
<param name="options"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.DeleteCookie(Microsoft.Owin.IOwinContext,System.String,Microsoft.Owin.CookieOptions)">
|
||||
<summary>
|
||||
Deletes the cookie with the given key by setting an expired state. If a matching chunked cookie exists on
|
||||
the request, delete each chunk.
|
||||
</summary>
|
||||
<param name="context"></param>
|
||||
<param name="key"></param>
|
||||
<param name="options"></param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.Fallback">
|
||||
<summary>
|
||||
A fallback manager used if HttpContextBase can't be located.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.ChunkSize">
|
||||
<summary>
|
||||
The maximum size of cookie to send back to the client. If a cookie exceeds this size it will be broken down into multiple
|
||||
cookies. Set this value to null to disable this behavior. The default is 4090 characters, which is supported by all
|
||||
common browsers.
|
||||
|
||||
Note that browsers may also have limits on the total size of all cookies per domain, and on the number of cookies per domain.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.SystemWeb.SystemWebChunkingCookieManager.ThrowForPartialCookies">
|
||||
<summary>
|
||||
Throw if not all chunks of a cookie are available on a request for re-assembly.
|
||||
</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>
|
||||
Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
|
||||
</summary>
|
||||
<param name="context"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Web.HttpContextBaseExtensions.GetOwinContext(System.Web.HttpRequestBase)">
|
||||
<summary>
|
||||
Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
|
||||
</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>
|
||||
Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
|
||||
</summary>
|
||||
<param name="context"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Web.HttpContextExtensions.GetOwinContext(System.Web.HttpRequest)">
|
||||
<summary>
|
||||
Gets the <see cref="T:Microsoft.Owin.IOwinContext"/> for the current request.
|
||||
</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 'OnSendingHeaders' event after response headers have been sent..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_CookieLimitTooSmall">
|
||||
<summary>
|
||||
Looks up a localized string similar to The cookie key and options are larger than ChunksSize, leaving no room for data..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_DuplicateKey">
|
||||
<summary>
|
||||
Looks up a localized string similar to The key '{0}' 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 "false" 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_ImcompleteChunkedCookie">
|
||||
<summary>
|
||||
Looks up a localized string similar to The chunked cookie is incomplete. Only {0} of the expected {1} chunks were found, totaling {2} characters. A client size limit may have been exceeded..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.SystemWeb.Resources.Exception_UnsupportedPipelineStage">
|
||||
<summary>
|
||||
Looks up a localized string similar to The given stage '{0}' 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>
|
||||
<member name="T:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager">
|
||||
<summary>
|
||||
An implementation of ICookieManager that uses the System.Web.HttpContextBase object model.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager.#ctor">
|
||||
<summary>
|
||||
Creates a new instance of SystemWebCookieManager.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager.GetRequestCookie(Microsoft.Owin.IOwinContext,System.String)">
|
||||
<summary>
|
||||
Reads the requested cookie from System.Web.HttpContextBase.Request.Cookies.
|
||||
</summary>
|
||||
<param name="context"></param>
|
||||
<param name="key"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager.AppendResponseCookie(Microsoft.Owin.IOwinContext,System.String,System.String,Microsoft.Owin.CookieOptions)">
|
||||
<summary>
|
||||
Appends the requested cookie to System.Web.HttpContextBase.Response.Cookies.
|
||||
</summary>
|
||||
<param name="context"></param>
|
||||
<param name="key"></param>
|
||||
<param name="value"></param>
|
||||
<param name="options"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager.DeleteCookie(Microsoft.Owin.IOwinContext,System.String,Microsoft.Owin.CookieOptions)">
|
||||
<summary>
|
||||
Deletes the requested cookie by appending an expired cookie to System.Web.HttpContextBase.Response.Cookies.
|
||||
</summary>
|
||||
<param name="context"></param>
|
||||
<param name="key"></param>
|
||||
<param name="options"></param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Host.SystemWeb.SystemWebCookieManager.Fallback">
|
||||
<summary>
|
||||
A fallback manager used if HttpContextBase can't be located.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
@ -0,0 +1,559 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Owin.StaticFiles</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.ContentTypes.FileExtensionContentTypeProvider">
|
||||
<summary>
|
||||
Provides a mapping between file extensions and MIME types.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.ContentTypes.IContentTypeProvider">
|
||||
<summary>
|
||||
Used to look up MIME types given a file path
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.ContentTypes.IContentTypeProvider.TryGetContentType(System.String,System.String@)">
|
||||
<summary>
|
||||
Given a file path, determine the MIME type
|
||||
</summary>
|
||||
<param name="subpath">A file path</param>
|
||||
<param name="contentType">The resulting MIME type</param>
|
||||
<returns>True if MIME type could be determined</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.ContentTypes.FileExtensionContentTypeProvider.#ctor">
|
||||
<summary>
|
||||
Creates a new provider with a set of default mappings.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.ContentTypes.FileExtensionContentTypeProvider.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Creates a lookup engine using the provided mapping.
|
||||
It is recommended that the IDictionary instance use StringComparer.OrdinalIgnoreCase.
|
||||
</summary>
|
||||
<param name="mapping"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.ContentTypes.FileExtensionContentTypeProvider.TryGetContentType(System.String,System.String@)">
|
||||
<summary>
|
||||
Given a file path, determine the MIME type
|
||||
</summary>
|
||||
<param name="subpath">A file path</param>
|
||||
<param name="contentType">The resulting MIME type</param>
|
||||
<returns>True if MIME type could be determined</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.ContentTypes.FileExtensionContentTypeProvider.Mappings">
|
||||
<summary>
|
||||
The cross reference table of file extensions and content-types.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.DirectoryFormatters.HtmlDirectoryFormatter">
|
||||
<summary>
|
||||
Generates an HTML view for a directory.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.DirectoryFormatters.IDirectoryFormatter">
|
||||
<summary>
|
||||
Generates the view for a directory
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.DirectoryFormatters.IDirectoryFormatter.GenerateContentAsync(Microsoft.Owin.IOwinContext,System.Collections.Generic.IEnumerable{Microsoft.Owin.FileSystems.IFileInfo})">
|
||||
<summary>
|
||||
Generates the view for a directory.
|
||||
Implementers should properly handle HEAD requests.
|
||||
Implementers should set all necessary response headers (e.g. Content-Type, Content-Length, etc.).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.DirectoryFormatters.HtmlDirectoryFormatter.GenerateContentAsync(Microsoft.Owin.IOwinContext,System.Collections.Generic.IEnumerable{Microsoft.Owin.FileSystems.IFileInfo})">
|
||||
<summary>
|
||||
Generates an HTML view for a directory.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.DefaultFilesOptions">
|
||||
<summary>
|
||||
Options for selecting default file names.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.Infrastructure.SharedOptionsBase`1">
|
||||
<summary>
|
||||
Options common to several middleware components
|
||||
</summary>
|
||||
<typeparam name="T">The type of the subclass</typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.Infrastructure.SharedOptionsBase`1.#ctor(Microsoft.Owin.StaticFiles.Infrastructure.SharedOptions)">
|
||||
<summary>
|
||||
Creates an new instance of the SharedOptionsBase.
|
||||
</summary>
|
||||
<param name="sharedOptions"></param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Infrastructure.SharedOptionsBase`1.SharedOptions">
|
||||
<summary>
|
||||
Options common to several middleware components
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Infrastructure.SharedOptionsBase`1.RequestPath">
|
||||
<summary>
|
||||
The relative request path that maps to static resources.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Infrastructure.SharedOptionsBase`1.FileSystem">
|
||||
<summary>
|
||||
The file system used to locate resources
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.DefaultFilesOptions.#ctor">
|
||||
<summary>
|
||||
Configuration for the DefaultFilesMiddleware.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.DefaultFilesOptions.#ctor(Microsoft.Owin.StaticFiles.Infrastructure.SharedOptions)">
|
||||
<summary>
|
||||
Configuration for the DefaultFilesMiddleware.
|
||||
</summary>
|
||||
<param name="sharedOptions"></param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.DefaultFilesOptions.DefaultFileNames">
|
||||
<summary>
|
||||
An ordered list of file names to select by default. List length and ordering may affect performance.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.DirectoryBrowserOptions">
|
||||
<summary>
|
||||
Directory browsing options
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.DirectoryBrowserOptions.#ctor">
|
||||
<summary>
|
||||
Enabled directory browsing in the current physical directory for all request paths
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.DirectoryBrowserOptions.#ctor(Microsoft.Owin.StaticFiles.Infrastructure.SharedOptions)">
|
||||
<summary>
|
||||
Enabled directory browsing in the current physical directory for all request paths
|
||||
</summary>
|
||||
<param name="sharedOptions"></param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.DirectoryBrowserOptions.Formatter">
|
||||
<summary>
|
||||
The component that generates the view.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.Infrastructure.SharedOptions">
|
||||
<summary>
|
||||
Options common to several middleware components
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.Infrastructure.SharedOptions.#ctor">
|
||||
<summary>
|
||||
Defaults to all request paths and the current physical directory.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Infrastructure.SharedOptions.RequestPath">
|
||||
<summary>
|
||||
The request path that maps to static resources
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Infrastructure.SharedOptions.FileSystem">
|
||||
<summary>
|
||||
The file system used to locate resources
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.FileServerOptions">
|
||||
<summary>
|
||||
Options for all of the static file middleware components
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.FileServerOptions.#ctor">
|
||||
<summary>
|
||||
Creates a combined options class for all of the static file middleware components.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.FileServerOptions.StaticFileOptions">
|
||||
<summary>
|
||||
Options for configuring the StaticFileMiddleware.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.FileServerOptions.DirectoryBrowserOptions">
|
||||
<summary>
|
||||
Options for configuring the DirectoryBrowserMiddleware.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.FileServerOptions.DefaultFilesOptions">
|
||||
<summary>
|
||||
Options for configuring the DefaultFilesMiddleware.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.FileServerOptions.EnableDirectoryBrowsing">
|
||||
<summary>
|
||||
Directory browsing is disabled by default.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.FileServerOptions.EnableDefaultFiles">
|
||||
<summary>
|
||||
Default files are enabled by default.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Owin.FileServerExtensions">
|
||||
<summary>
|
||||
Extension methods that combine all of the static file middleware components:
|
||||
Default files, directory browsing, send file, and static files
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Owin.FileServerExtensions.UseFileServer(Owin.IAppBuilder)">
|
||||
<summary>
|
||||
Enable all static file middleware (except directory browsing) for the current request path in the current directory.
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Owin.FileServerExtensions.UseFileServer(Owin.IAppBuilder,System.Boolean)">
|
||||
<summary>
|
||||
Enable all static file middleware on for the current request path in the current directory.
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<param name="enableDirectoryBrowsing">Should directory browsing be enabled?</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Owin.FileServerExtensions.UseFileServer(Owin.IAppBuilder,System.String)">
|
||||
<summary>
|
||||
Enables all static file middleware (except directory browsing) for the given request path from the directory of the same name
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<param name="requestPath">The relative request path and physical path.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Owin.FileServerExtensions.UseFileServer(Owin.IAppBuilder,Microsoft.Owin.StaticFiles.FileServerOptions)">
|
||||
<summary>
|
||||
Enable all static file middleware with the given options
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<param name="options"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Owin.DefaultFilesExtensions">
|
||||
<summary>
|
||||
Extension methods for the DefaultFilesMiddleware
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Owin.DefaultFilesExtensions.UseDefaultFiles(Owin.IAppBuilder)">
|
||||
<summary>
|
||||
Enables default file mapping on the current path from the current directory
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Owin.DefaultFilesExtensions.UseDefaultFiles(Owin.IAppBuilder,System.String)">
|
||||
<summary>
|
||||
Enables default file mapping for the given request path from the directory of the same name
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<param name="requestPath">The relative request path and physical path.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Owin.DefaultFilesExtensions.UseDefaultFiles(Owin.IAppBuilder,Microsoft.Owin.StaticFiles.DefaultFilesOptions)">
|
||||
<summary>
|
||||
Enables default file mapping with the given options
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<param name="options"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.DefaultFilesMiddleware">
|
||||
<summary>
|
||||
This examines a directory path and determines if there is a default file present.
|
||||
If so the file name is appended to the path and execution continues.
|
||||
Note we don't just serve the file because it may require interpretation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.DefaultFilesMiddleware.#ctor(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},Microsoft.Owin.StaticFiles.DefaultFilesOptions)">
|
||||
<summary>
|
||||
Creates a new instance of the DefaultFilesMiddleware.
|
||||
</summary>
|
||||
<param name="next">The next middleware in the pipeline.</param>
|
||||
<param name="options">The configuration options for this middleware.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.DefaultFilesMiddleware.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>
|
||||
This examines the request to see if it matches a configured directory, and if there are any files with the
|
||||
configured default names in that directory. If so this will append the corresponding file name to the request
|
||||
path for a later middleware to handle.
|
||||
</summary>
|
||||
<param name="environment">The request environment.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.DirectoryBrowserMiddleware">
|
||||
<summary>
|
||||
Enables directory browsing
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.DirectoryBrowserMiddleware.#ctor(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},Microsoft.Owin.StaticFiles.DirectoryBrowserOptions)">
|
||||
<summary>
|
||||
Creates a new instance of the SendFileMiddleware.
|
||||
</summary>
|
||||
<param name="next">The next middleware in the pipeline.</param>
|
||||
<param name="options">The configuration for this middleware.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.DirectoryBrowserMiddleware.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>
|
||||
Examines the request to see if it matches a configured directory. If so, a view of the directory contents is returned.
|
||||
</summary>
|
||||
<param name="environment">The request environment.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Owin.DirectoryBrowserExtensions">
|
||||
<summary>
|
||||
Extension methods for the DirectoryBrowserMiddleware
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Owin.DirectoryBrowserExtensions.UseDirectoryBrowser(Owin.IAppBuilder)">
|
||||
<summary>
|
||||
Enable directory browsing on the current path for the current directory
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Owin.DirectoryBrowserExtensions.UseDirectoryBrowser(Owin.IAppBuilder,System.String)">
|
||||
<summary>
|
||||
Enables directory browsing for the given request path from the directory of the same name
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<param name="requestPath">The relative request path and physical path.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Owin.DirectoryBrowserExtensions.UseDirectoryBrowser(Owin.IAppBuilder,Microsoft.Owin.StaticFiles.DirectoryBrowserOptions)">
|
||||
<summary>
|
||||
Enable directory browsing with the given options
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<param name="options"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.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.StaticFiles.Resources.Args_NoContentTypeProvider">
|
||||
<summary>
|
||||
Looks up a localized string similar to No IContentTypeProvider was specified..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Resources.Args_NoFormatter">
|
||||
<summary>
|
||||
Looks up a localized string similar to No formatter provided..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Resources.Exception_SendFileNotSupported">
|
||||
<summary>
|
||||
Looks up a localized string similar to This server does not support the sendfile.SendAsync extension..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Resources.HtmlDir_IndexOf">
|
||||
<summary>
|
||||
Looks up a localized string similar to Index of.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Resources.HtmlDir_LastModified">
|
||||
<summary>
|
||||
Looks up a localized string similar to Last Modified.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Resources.HtmlDir_Modified">
|
||||
<summary>
|
||||
Looks up a localized string similar to Modified.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Resources.HtmlDir_Name">
|
||||
<summary>
|
||||
Looks up a localized string similar to Name.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Resources.HtmlDir_Size">
|
||||
<summary>
|
||||
Looks up a localized string similar to Size.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.Resources.HtmlDir_TableSummary">
|
||||
<summary>
|
||||
Looks up a localized string similar to The list of files in the given directory. Column headers are listed in the first row..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.SendFileMiddleware">
|
||||
<summary>
|
||||
This middleware provides an efficient fallback mechanism for sending static files
|
||||
when the server does not natively support such a feature.
|
||||
The caller is responsible for setting all headers in advance.
|
||||
The caller is responsible for performing the correct impersonation to give access to the file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.SendFileMiddleware.#ctor(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task})">
|
||||
<summary>
|
||||
Creates a new instance of the SendFileMiddleware.
|
||||
</summary>
|
||||
<param name="next">The next middleware in the pipeline.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.SendFileMiddleware.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>
|
||||
Adds the sendfile.SendAsync Func to the request environment, if not already present.
|
||||
</summary>
|
||||
<param name="environment">OWIN environment dictionary which stores state information about the request, response and relevant server state.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.SendFileExtensions">
|
||||
<summary>
|
||||
Extension methods for the SendFileMiddleware
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.SendFileExtensions.UseSendFileFallback(Owin.IAppBuilder)">
|
||||
<summary>
|
||||
Provide a SendFileFunc if another component does not.
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.SendFileResponseExtensions">
|
||||
<summary>
|
||||
Provides extensions for IOwinResponse exposing the SendFile extension.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.SendFileResponseExtensions.SupportsSendFile(Microsoft.Owin.IOwinResponse)">
|
||||
<summary>
|
||||
Checks if the SendFile extension is supported.
|
||||
</summary>
|
||||
<param name="response"></param>
|
||||
<returns>True if sendfile.SendAsync is defined in the environment.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.SendFileResponseExtensions.SendFileAsync(Microsoft.Owin.IOwinResponse,System.String)">
|
||||
<summary>
|
||||
Sends the given file using the SendFile extension.
|
||||
</summary>
|
||||
<param name="response"></param>
|
||||
<param name="fileName"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.SendFileResponseExtensions.SendFileAsync(Microsoft.Owin.IOwinResponse,System.String,System.Int64,System.Nullable{System.Int64},System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Sends the given file using the SendFile extension.
|
||||
</summary>
|
||||
<param name="response"></param>
|
||||
<param name="fileName">The full or relative path to the file.</param>
|
||||
<param name="offset">The offset in the file.</param>
|
||||
<param name="count">The number of types to send, or null to send the remainder of the file.</param>
|
||||
<param name="cancellationToken"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Owin.StaticFileExtensions">
|
||||
<summary>
|
||||
Extension methods for the StaticFileMiddleware
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Owin.StaticFileExtensions.UseStaticFiles(Owin.IAppBuilder)">
|
||||
<summary>
|
||||
Enables static file serving for the current request path from the current directory
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Owin.StaticFileExtensions.UseStaticFiles(Owin.IAppBuilder,System.String)">
|
||||
<summary>
|
||||
Enables static file serving for the given request path from the directory of the same name
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<param name="requestPath">The relative request path and physical path.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Owin.StaticFileExtensions.UseStaticFiles(Owin.IAppBuilder,Microsoft.Owin.StaticFiles.StaticFileOptions)">
|
||||
<summary>
|
||||
Enables static file serving with the given options
|
||||
</summary>
|
||||
<param name="builder"></param>
|
||||
<param name="options"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.StaticFileMiddleware">
|
||||
<summary>
|
||||
Enables serving static files for a given request path
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.StaticFileMiddleware.#ctor(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},Microsoft.Owin.StaticFiles.StaticFileOptions)">
|
||||
<summary>
|
||||
Creates a new instance of the StaticFileMiddleware.
|
||||
</summary>
|
||||
<param name="next">The next middleware in the pipeline.</param>
|
||||
<param name="options">The configuration options.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.StaticFileMiddleware.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>
|
||||
Processes a request to determine if it matches a known file, and if so, serves it.
|
||||
</summary>
|
||||
<param name="environment">OWIN environment dictionary which stores state information about the request, response and relevant server state.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.StaticFileOptions">
|
||||
<summary>
|
||||
Options for serving static files
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.StaticFileOptions.#ctor">
|
||||
<summary>
|
||||
Defaults to all request paths in the current physical directory
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.StaticFiles.StaticFileOptions.#ctor(Microsoft.Owin.StaticFiles.Infrastructure.SharedOptions)">
|
||||
<summary>
|
||||
Defaults to all request paths in the current physical directory
|
||||
</summary>
|
||||
<param name="sharedOptions"></param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.StaticFileOptions.ContentTypeProvider">
|
||||
<summary>
|
||||
Used to map files to content-types.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.StaticFileOptions.DefaultContentType">
|
||||
<summary>
|
||||
The default content type for a request if the ContentTypeProvider cannot determine one.
|
||||
None is provided by default, so the client must determine the format themselves.
|
||||
http://www.w3.org/Protocols/rfc2616/rfc2616-sec7.html#sec7
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.StaticFileOptions.ServeUnknownFileTypes">
|
||||
<summary>
|
||||
If the file is not a recognized content-type should it be served?
|
||||
Default: false.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.StaticFileOptions.OnPrepareResponse">
|
||||
<summary>
|
||||
Called after the status code and headers have been set, but before the body has been written.
|
||||
This can be used to add or change the response headers.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.StaticFiles.StaticFileResponseContext">
|
||||
<summary>
|
||||
Contains information about the request and the file that will be served in response.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.StaticFileResponseContext.OwinContext">
|
||||
<summary>
|
||||
The request and response information.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.StaticFiles.StaticFileResponseContext.File">
|
||||
<summary>
|
||||
The file to be served.
|
||||
</summary>
|
||||
</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.
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.
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.
|
@ -0,0 +1,70 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<HVMProject version ="2">
|
||||
<Assemblies>
|
||||
<assembly>
|
||||
<path>.\Robot.Framework.dll</path>
|
||||
<obfuscate>true</obfuscate>
|
||||
</assembly>
|
||||
</Assemblies>
|
||||
<Output>
|
||||
<path>..\加密处理\FLSystem\Assembly\apifile</path>
|
||||
<runtime rename ="true">Runtime.dll</runtime>
|
||||
<runtime64>HVMRun64.dll</runtime64>
|
||||
<LibMode>0</LibMode>
|
||||
<EmbedRuntime>0</EmbedRuntime>
|
||||
<shrink>true</shrink>
|
||||
<EXE>
|
||||
<Main></Main>
|
||||
<PackType>1</PackType>
|
||||
<EntryType>0</EntryType>
|
||||
<LoadType>0</LoadType>
|
||||
<Assemblies>
|
||||
<SplashConfig>
|
||||
<Width>600</Width>
|
||||
<Height>400</Height>
|
||||
<iAutoClose>0</iAutoClose>
|
||||
<Image></Image>
|
||||
<msg1>Loading...</msg1>
|
||||
<msg2>Starting...</msg2>
|
||||
<title></title>
|
||||
</SplashConfig>
|
||||
</Assemblies>
|
||||
</EXE>
|
||||
</Output>
|
||||
<Settings>
|
||||
<EncryptComplierGen>true</EncryptComplierGen>
|
||||
<AntiIldasm>true</AntiIldasm>
|
||||
<AntiDump>true</AntiDump>
|
||||
<ShadowAppDomain>true</ShadowAppDomain>
|
||||
<EncryptNew>true</EncryptNew>
|
||||
<EncryptRes>true</EncryptRes>
|
||||
<EncryptBlob>true</EncryptBlob>
|
||||
<AntiDis>true</AntiDis>
|
||||
<EncryptUS>true</EncryptUS>
|
||||
<OptEncrypt>true</OptEncrypt>
|
||||
<HVM>true</HVM>
|
||||
<HVMSig>true</HVMSig>
|
||||
<HVMEH>true</HVMEH>
|
||||
<HVMStr>true</HVMStr>
|
||||
<Level>5</Level>
|
||||
<Level2>1</Level2>
|
||||
<CompatLevel>2</CompatLevel>
|
||||
<AntiTrace>true</AntiTrace>
|
||||
<HVMAntiTrace>true</HVMAntiTrace>
|
||||
<HVMProxyMethod>true</HVMProxyMethod>
|
||||
<HVMProxyCompat>true</HVMProxyCompat>
|
||||
<AnonymousProtection>2</AnonymousProtection>
|
||||
</Settings>
|
||||
<Obfuscation>
|
||||
<AutoRename>true</AutoRename>
|
||||
<ObILCode>true</ObILCode>
|
||||
<RenameMode>1</RenameMode>
|
||||
</Obfuscation>
|
||||
<TrialSettings>
|
||||
</TrialSettings>
|
||||
<LicenseSettings>
|
||||
<AddBiosID>true</AddBiosID>
|
||||
<AddMacID>true</AddMacID>
|
||||
<MasterKey></MasterKey>
|
||||
</LicenseSettings>
|
||||
</HVMProject>
|
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0"?>
|
||||
<!--
|
||||
*
|
||||
* System.Data.SQLite.dll.config -
|
||||
*
|
||||
* WARNING: This XML configuration file is intended for use within the NuGet
|
||||
* package directories only. Please do not copy this file to any of
|
||||
* the build output directories because it could interfere with the
|
||||
* native library pre-loading feature.
|
||||
*
|
||||
* Written by Joe Mistachkin.
|
||||
* Released to the public domain, use at your own risk!
|
||||
*
|
||||
-->
|
||||
<configuration>
|
||||
<appSettings>
|
||||
<add key="PreLoadSQLite_BaseDirectory"
|
||||
value="%PreLoadSQLite_AssemblyDirectory%\..\..\build\%PreLoadSQLite_TargetFramework%" />
|
||||
</appSettings>
|
||||
|
||||
<dllmap dll="SQLite.Interop" target="SQLite.Interop.dll" />
|
||||
</configuration>
|
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.
|
@ -0,0 +1,67 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<HVMProject version ="2">
|
||||
<Assemblies>
|
||||
<assembly>
|
||||
<path>.\WeiQ.Framework.dll</path>
|
||||
</assembly>
|
||||
</Assemblies>
|
||||
<Output>
|
||||
<path>..\DLL_Protected</path>
|
||||
<runtime rename ="true">Runtime.dll</runtime>
|
||||
<runtime64>HVMRun64.dll</runtime64>
|
||||
<LibMode>0</LibMode>
|
||||
<EmbedRuntime>0</EmbedRuntime>
|
||||
<UseTemp>true</UseTemp>
|
||||
<Net45>true</Net45>
|
||||
<shrink>true</shrink>
|
||||
<EXE>
|
||||
<Main></Main>
|
||||
<PackType>1</PackType>
|
||||
<Assemblies>
|
||||
<SplashConfig>
|
||||
<Width>600</Width>
|
||||
<Height>400</Height>
|
||||
<iAutoClose>0</iAutoClose>
|
||||
<Image></Image>
|
||||
<msg1>Loading...</msg1>
|
||||
<msg2>Starting...</msg2>
|
||||
<title></title>
|
||||
</SplashConfig>
|
||||
</Assemblies>
|
||||
</EXE>
|
||||
</Output>
|
||||
<Settings>
|
||||
<EncryptComplierGen>true</EncryptComplierGen>
|
||||
<AntiIldasm>true</AntiIldasm>
|
||||
<AntiDump>true</AntiDump>
|
||||
<OptMem>true</OptMem>
|
||||
<ShadowAppDomain>true</ShadowAppDomain>
|
||||
<EncryptNew>true</EncryptNew>
|
||||
<EncryptRes>true</EncryptRes>
|
||||
<EncryptBlob>true</EncryptBlob>
|
||||
<AntiDis>true</AntiDis>
|
||||
<EncryptUS>true</EncryptUS>
|
||||
<HVM>true</HVM>
|
||||
<HVMSig>true</HVMSig>
|
||||
<HVMEH>true</HVMEH>
|
||||
<HVMStr>true</HVMStr>
|
||||
<Level>5</Level>
|
||||
<CompatLevel>0</CompatLevel>
|
||||
<AntiTrace>true</AntiTrace>
|
||||
<HVMAntiTrace>true</HVMAntiTrace>
|
||||
<HVMProxyMethod>true</HVMProxyMethod>
|
||||
<AnonymousType>true</AnonymousType>
|
||||
</Settings>
|
||||
<Obfuscation>
|
||||
<AutoRename>true</AutoRename>
|
||||
<ObILCode>true</ObILCode>
|
||||
<RenameMode>1</RenameMode>
|
||||
</Obfuscation>
|
||||
<TrialSettings>
|
||||
</TrialSettings>
|
||||
<LicenseSettings>
|
||||
<AddBiosID>true</AddBiosID>
|
||||
<AddMacID>true</AddMacID>
|
||||
<MasterKey></MasterKey>
|
||||
</LicenseSettings>
|
||||
</HVMProject>
|
|
@ -0,0 +1 @@
|
|||
0024000004800000940000000602000000240000525341310004000001000100d5a0c7e494766fed85a57d1797641738ef18a7476257c4d2ff2c1fdda845dd5f7f0a9fcc52ba537b66ed6ff450595a520d2357eaa1ead76bf7852f8038f4a3d36e5daedde75674c48247bdb95670179305c96d037bb9c8b37665c42a43b744645996c025969a215abbf1d86b2c2c6a57a34cb968c801442b04e2bb765d82d4bf
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue