master
editor 1 year ago
commit cd47ca0a39

@ -0,0 +1,63 @@
WINFORM的REDIS客户端
一、源码描述
winform的Redis客户端
环境VS2022 Redis
二、功能介绍
1、启动、关闭redis服务。
2、连接、断开Redis服务。
3、遍历显示所有存储键值对。
4、普通的CRUD。
redis的基本操作都在这了下载下来看看吧~。
三、注意事项
1、安装Redis后将Redis添加到环境变量中
2、ctrl+F5运行即可。
作者: coderbest
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/RedisClient
------------------------------------------------------------------------------------------------
源码服务专家
官网: https://www.51aspx.com
讨论圈: https://club.51aspx.com/
平台声明:
1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用;
2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有;
3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com
4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性;
友情提示:
一般数据库文件默认在 DB_51Aspx 文件夹下
默认账号密码一般均为51Aspx
关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
</dependentAssembly>

15
MainForm.Designer.cs generated

@ -0,0 +1,15 @@
namespace RedisDemo
{
partial class MainForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)

@ -0,0 +1,15 @@
using ServiceStack.Redis;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace RedisDemo
{
public partial class MainForm : Form
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace RedisDemo
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("RedisDemo")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("RedisDemo")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本: 4.0.30319.42000
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace RedisDemo.Properties
{
/// <summary>
/// 强类型资源类,用于查找本地化字符串等。

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace RedisDemo.Properties
{
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{32C2D673-24ED-4F6C-834E-F9F1A60B82EA}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>RedisDemo</RootNamespace>
<AssemblyName>RedisDemo</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>

@ -0,0 +1,15 @@
using ServiceStack.Redis;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RedisDemo
{
public class RedisUtil
{
public RedisClient client = null;
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Bcl.AsyncInterfaces" version="7.0.0" targetFramework="net472" />
<package id="Microsoft.CSharp" version="4.7.0" targetFramework="net472" />
<package id="Newtonsoft.Json" version="13.0.2" targetFramework="net472" />
<package id="ServiceStack.Common" version="6.5.0" targetFramework="net472" />
<package id="ServiceStack.Interfaces" version="6.5.0" targetFramework="net472" />
<package id="ServiceStack.Redis" version="6.5.0" targetFramework="net472" />
<package id="ServiceStack.Text" version="6.5.0" targetFramework="net472" />
<package id="System.Buffers" version="4.5.1" targetFramework="net472" />
<package id="System.Diagnostics.DiagnosticSource" version="7.0.0" targetFramework="net472" />
<package id="System.Memory" version="4.5.5" targetFramework="net472" />
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net472" />
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net472" />
<package id="System.Threading.Tasks.Extensions" version="4.5.4" targetFramework="net472" />

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Bcl.AsyncInterfaces</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1">
<summary>Provides the core logic for implementing a manual-reset <see cref="T:System.Threading.Tasks.Sources.IValueTaskSource"/> or <see cref="T:System.Threading.Tasks.Sources.IValueTaskSource`1"/>.</summary>
<typeparam name="TResult"></typeparam>
</member>
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._continuation">
<summary>
The callback to invoke when the operation completes if <see cref="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)"/> was called before the operation completed,
or <see cref="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCoreShared.s_sentinel"/> if the operation completed before a callback was supplied,
or null if a callback hasn't yet been provided and the operation hasn't yet completed.

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Bcl.AsyncInterfaces</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1">
<summary>Provides the core logic for implementing a manual-reset <see cref="T:System.Threading.Tasks.Sources.IValueTaskSource"/> or <see cref="T:System.Threading.Tasks.Sources.IValueTaskSource`1"/>.</summary>
<typeparam name="TResult"></typeparam>
</member>
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._continuation">
<summary>
The callback to invoke when the operation completes if <see cref="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)"/> was called before the operation completed,
or <see cref="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCoreShared.s_sentinel"/> if the operation completed before a callback was supplied,
or null if a callback hasn't yet been provided and the operation hasn't yet completed.

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Bcl.AsyncInterfaces</name>
</assembly>
<members>
<member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
<summary>
Attribute used to indicate a source generator should create a function for marshalling
arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
</summary>
<remarks>
This attribute is meaningless if the source generator associated with it is not enabled.
The current built-in source generator only supports C# and only supplies an implementation when
applied to static, partial, non-generic methods.

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Contains factory methods to create dynamic call site binders for CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Initializes a new CSharp binary operation binder.</summary>
<param name="flags">The flags with which to initialize the binder.</param>
<param name="operation">The binary operation kind.</param>
<param name="context">The <see cref="T:System.Type" /> that indicates where this operation is used.</param>
<param name="argumentInfo">The sequence of <see cref="T:Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo" /> instances for the arguments to this operation.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Contains factory methods to create dynamic call site binders for CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Initializes a new CSharp binary operation binder.</summary>
<returns>Returns a new CSharp binary operation binder.</returns>
<param name="flags">The flags with which to initialize the binder.</param>
<param name="operation">The binary operation kind.</param>
<param name="context">The <see cref="T:System.Type" /> that indicates where this operation is used.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Enthält Factorymethoden zum Erstellen dynamischer Aufrufsitebinder für CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Initialisiert einen neuen Binder für binäre CSharp-Vorgänge.</summary>
<returns>Gibt einen neuen Binder für binäre CSharp-Vorgänge zurück.</returns>
<param name="flags">Die Flags, mit denen der Binder initialisiert werden soll.</param>
<param name="operation">Die Art des binären Vorgangs.</param>
<param name="context">Der <see cref="T:System.Type" />, der angibt, an welcher Position dieser Vorgang verwendet wird.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Contiene métodos de generador que permiten crear enlazadores de sitios de llamada dinámicos para CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Inicializa un nuevo enlazador de operaciones binarias de CSharp.</summary>
<returns>Devuelve un nuevo enlazador de operaciones binarias de CSharp.</returns>
<param name="flags">Marcas con las que se va a inicializar el enlazador.</param>
<param name="operation">Tipo de operación binaria.</param>
<param name="context">Objeto <see cref="T:System.Type" /> que indica dónde se usa esta operación.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Contient des méthodes de fabrique pour créer des classeurs de sites d'appel dynamiques pour CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Initialise un nouveau classeur d'opérations binaires CSharp.</summary>
<returns>Retourne un nouveau classeur d'opérations binaires CSharp.</returns>
<param name="flags">Indicateurs avec lesquels initialiser le classeur.</param>
<param name="operation">Type d'opération binaire.</param>
<param name="context">

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Contiene metodi factory per creare gestori di associazione del sito di chiamata dinamica per CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Inizializza un nuovo gestore di associazione dell'operazione binaria di CSharp.</summary>
<returns>Restituisce un nuovo gestore di associazione dell'operazione binaria di CSharp.</returns>
<param name="flags">Flag con cui inizializzare il gestore di associazione.</param>
<param name="operation">Tipo di operazione binaria.</param>
<param name="context">Oggetto <see cref="T:System.Type" /> che indica il contesto in cui viene utilizzata l'operazione.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>CSharp の動的呼び出しサイト バインダーを作成するファクトリ メソッドが含まれています。</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>CSharp の新しい二項演算バインダーを初期化します。</summary>
<returns>CSharp の新しい二項演算バインダーを返します。</returns>
<param name="flags">バインダーの初期化に使用するフラグ。</param>
<param name="operation">二項演算の種類。</param>
<param name="context">この操作の使用場所を示す <see cref="T:System.Type" /></param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>CSharp의 동적 호출 사이트 바인더를 만드는 팩터리 메서드가 들어 있습니다.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>새 CSharp 이항 연산 바인더를 초기화합니다.</summary>
<returns>새 CSharp 이항 연산 바인더를 반환합니다.</returns>
<param name="flags">바인더를 초기화하는 데 사용할 플래그입니다.</param>
<param name="operation">이항 연산 종류입니다.</param>
<param name="context">이 작업이 사용된 위치를 나타내는 <see cref="T:System.Type" />입니다.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Содержит фабричные методы для создания динамических связывателей источников вызова для CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Инициализирует новый связыватель бинарной операции CSharp.</summary>
<returns>Возвращает новый связыватель бинарной операции CSharp.</returns>
<param name="flags">Флаги, с помощью которых выполняется инициализация связывателя.</param>
<param name="operation">Вид бинарной операции.</param>
<param name="context">Объект <see cref="T:System.Type" />, который указывает, где используется операция.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>包含用于为 CSharp 创建动态调用站点联编程序的工厂方法。</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>初始化新的 CSharp 二元运算联编程序。</summary>
<returns>返回新的 CSharp 二元运算联编程序。</returns>
<param name="flags">用于初始化联编程序的标志。</param>
<param name="operation">二元运算类型。</param>
<param name="context">用于指示此操作的使用位置的 <see cref="T:System.Type" /></param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>包含建立 CSharp 動態呼叫位置繫結器的 Factory 方法。</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>初始化新的 CSharp 二進位運算繫結器。</summary>
<returns>傳回新的 CSharp 二進位運算繫結器。</returns>
<param name="flags">用來初始化繫結器的旗標。</param>
<param name="operation">二元運算類型。</param>
<param name="context">

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Contains factory methods to create dynamic call site binders for CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Initializes a new CSharp binary operation binder.</summary>
<returns>Returns a new CSharp binary operation binder.</returns>
<param name="flags">The flags with which to initialize the binder.</param>
<param name="operation">The binary operation kind.</param>
<param name="context">The <see cref="T:System.Type" /> that indicates where this operation is used.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Enthält Factorymethoden zum Erstellen dynamischer Aufrufsitebinder für CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Initialisiert einen neuen Binder für binäre CSharp-Vorgänge.</summary>
<returns>Gibt einen neuen Binder für binäre CSharp-Vorgänge zurück.</returns>
<param name="flags">Die Flags, mit denen der Binder initialisiert werden soll.</param>
<param name="operation">Die Art des binären Vorgangs.</param>
<param name="context">Der <see cref="T:System.Type" />, der angibt, an welcher Position dieser Vorgang verwendet wird.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Contiene métodos de generador que permiten crear enlazadores de sitios de llamada dinámicos para CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Inicializa un nuevo enlazador de operaciones binarias de CSharp.</summary>
<returns>Devuelve un nuevo enlazador de operaciones binarias de CSharp.</returns>
<param name="flags">Marcas con las que se va a inicializar el enlazador.</param>
<param name="operation">Tipo de operación binaria.</param>
<param name="context">Objeto <see cref="T:System.Type" /> que indica dónde se usa esta operación.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Contient des méthodes de fabrique pour créer des classeurs de sites d'appel dynamiques pour CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Initialise un nouveau classeur d'opérations binaires CSharp.</summary>
<returns>Retourne un nouveau classeur d'opérations binaires CSharp.</returns>
<param name="flags">Indicateurs avec lesquels initialiser le classeur.</param>
<param name="operation">Type d'opération binaire.</param>
<param name="context">

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Contiene metodi factory per creare gestori di associazione del sito di chiamata dinamica per CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Inizializza un nuovo gestore di associazione dell'operazione binaria di CSharp.</summary>
<returns>Restituisce un nuovo gestore di associazione dell'operazione binaria di CSharp.</returns>
<param name="flags">Flag con cui inizializzare il gestore di associazione.</param>
<param name="operation">Tipo di operazione binaria.</param>
<param name="context">Oggetto <see cref="T:System.Type" /> che indica il contesto in cui viene utilizzata l'operazione.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>CSharp の動的呼び出しサイト バインダーを作成するファクトリ メソッドが含まれています。</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>CSharp の新しい二項演算バインダーを初期化します。</summary>
<returns>CSharp の新しい二項演算バインダーを返します。</returns>
<param name="flags">バインダーの初期化に使用するフラグ。</param>
<param name="operation">二項演算の種類。</param>
<param name="context">この操作の使用場所を示す <see cref="T:System.Type" /></param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>CSharp의 동적 호출 사이트 바인더를 만드는 팩터리 메서드가 들어 있습니다.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>새 CSharp 이항 연산 바인더를 초기화합니다.</summary>
<returns>새 CSharp 이항 연산 바인더를 반환합니다.</returns>
<param name="flags">바인더를 초기화하는 데 사용할 플래그입니다.</param>
<param name="operation">이항 연산 종류입니다.</param>
<param name="context">이 작업이 사용된 위치를 나타내는 <see cref="T:System.Type" />입니다.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Содержит фабричные методы для создания динамических связывателей источников вызова для CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Инициализирует новый связыватель бинарной операции CSharp.</summary>
<returns>Возвращает новый связыватель бинарной операции CSharp.</returns>
<param name="flags">Флаги, с помощью которых выполняется инициализация связывателя.</param>
<param name="operation">Вид бинарной операции.</param>
<param name="context">Объект <see cref="T:System.Type" />, который указывает, где используется операция.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>包含用于为 CSharp 创建动态调用站点联编程序的工厂方法。</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>初始化新的 CSharp 二元运算联编程序。</summary>
<returns>返回新的 CSharp 二元运算联编程序。</returns>
<param name="flags">用于初始化联编程序的标志。</param>
<param name="operation">二元运算类型。</param>
<param name="context">用于指示此操作的使用位置的 <see cref="T:System.Type" /></param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>包含建立 CSharp 動態呼叫位置繫結器的 Factory 方法。</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>初始化新的 CSharp 二進位運算繫結器。</summary>
<returns>傳回新的 CSharp 二進位運算繫結器。</returns>
<param name="flags">用來初始化繫結器的旗標。</param>
<param name="operation">二元運算類型。</param>
<param name="context">

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CSharp.RuntimeBinder.Binder">
<summary>Contains factory methods to create dynamic call site binders for CSharp.</summary>
</member>
<member name="M:Microsoft.CSharp.RuntimeBinder.Binder.BinaryOperation(Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags,System.Linq.Expressions.ExpressionType,System.Type,System.Collections.Generic.IEnumerable{Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo})">
<summary>Initializes a new CSharp binary operation binder.</summary>
<param name="flags">The flags with which to initialize the binder.</param>
<param name="operation">The binary operation kind.</param>
<param name="context">The <see cref="T:System.Type" /> that indicates where this operation is used.</param>
<param name="argumentInfo">The sequence of <see cref="T:Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo" /> instances for the arguments to this operation.</param>

@ -0,0 +1 @@
0f7f38c4fd323b26da10cce95f857f77f0f09b48

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Newtonsoft.Json</name>
</assembly>
<members>
<member name="T:Newtonsoft.Json.Bson.BsonObjectId">
<summary>
Represents a BSON Oid (object id).
</summary>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
<summary>
Gets or sets the value of the Oid.
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Newtonsoft.Json</name>
</assembly>
<members>
<member name="T:Newtonsoft.Json.Bson.BsonObjectId">
<summary>
Represents a BSON Oid (object id).
</summary>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
<summary>
Gets or sets the value of the Oid.
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Newtonsoft.Json</name>
</assembly>
<members>
<member name="T:Newtonsoft.Json.Bson.BsonObjectId">
<summary>
Represents a BSON Oid (object id).
</summary>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
<summary>
Gets or sets the value of the Oid.
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Newtonsoft.Json</name>
</assembly>
<members>
<member name="T:Newtonsoft.Json.Bson.BsonObjectId">
<summary>
Represents a BSON Oid (object id).
</summary>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
<summary>
Gets or sets the value of the Oid.
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Newtonsoft.Json</name>
</assembly>
<members>
<member name="T:Newtonsoft.Json.Bson.BsonObjectId">
<summary>
Represents a BSON Oid (object id).
</summary>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
<summary>
Gets or sets the value of the Oid.
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Newtonsoft.Json</name>
</assembly>
<members>
<member name="T:Newtonsoft.Json.Bson.BsonObjectId">
<summary>
Represents a BSON Oid (object id).
</summary>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
<summary>
Gets or sets the value of the Oid.
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Newtonsoft.Json</name>
</assembly>
<members>
<member name="T:Newtonsoft.Json.Bson.BsonObjectId">
<summary>
Represents a BSON Oid (object id).
</summary>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
<summary>
Gets or sets the value of the Oid.
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Newtonsoft.Json</name>
</assembly>
<members>
<member name="T:Newtonsoft.Json.Bson.BsonObjectId">
<summary>
Represents a BSON Oid (object id).
</summary>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
<summary>
Gets or sets the value of the Oid.
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Common</name>
</assembly>
<members>
<member name="M:ServiceStack.AppTasks.Register(System.String,System.Action{System.String[]})">
<summary>
Register Task to run in APP_TASKS=task1;task2
</summary>
</member>
<member name="M:ServiceStack.AssertUtils.AreNotNull(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Asserts that the supplied arguments are not null.

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Common</name>
</assembly>
<members>
<member name="M:ServiceStack.AppTasks.Register(System.String,System.Action{System.String[]})">
<summary>
Register Task to run in APP_TASKS=task1;task2
</summary>
</member>
<member name="M:ServiceStack.AssertUtils.AreNotNull(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Asserts that the supplied arguments are not null.

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Common</name>
</assembly>
<members>
<member name="M:ServiceStack.AppTasks.Register(System.String,System.Action{System.String[]})">
<summary>
Register Task to run in APP_TASKS=task1;task2
</summary>
</member>
<member name="M:ServiceStack.AssertUtils.AreNotNull(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Asserts that the supplied arguments are not null.

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Redis</name>
</assembly>
<members>
<member name="T:ServiceStack.Redis.BasicRedisClientManager">
<summary>
Provides thread-safe retrieval of redis clients since each client is a new one.
Allows the configuration of different ReadWrite and ReadOnly hosts
</summary>
<summary>
Provides thread-safe retrieval of redis clients since each client is a new one.
Allows the configuration of different ReadWrite and ReadOnly hosts
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Redis</name>
</assembly>
<members>
<member name="T:ServiceStack.Redis.BasicRedisClientManager">
<summary>
Provides thread-safe retrieval of redis clients since each client is a new one.
Allows the configuration of different ReadWrite and ReadOnly hosts
</summary>
<summary>
Provides thread-safe retrieval of redis clients since each client is a new one.
Allows the configuration of different ReadWrite and ReadOnly hosts
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Redis</name>
</assembly>
<members>
<member name="T:ServiceStack.Redis.BasicRedisClientManager">
<summary>
Provides thread-safe retrieval of redis clients since each client is a new one.
Allows the configuration of different ReadWrite and ReadOnly hosts
</summary>
<summary>
Provides thread-safe retrieval of redis clients since each client is a new one.
Allows the configuration of different ReadWrite and ReadOnly hosts
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Redis</name>
</assembly>
<members>
<member name="T:ServiceStack.Redis.BasicRedisClientManager">
<summary>
Provides thread-safe retrieval of redis clients since each client is a new one.
Allows the configuration of different ReadWrite and ReadOnly hosts
</summary>
<summary>
Provides thread-safe retrieval of redis clients since each client is a new one.
Allows the configuration of different ReadWrite and ReadOnly hosts
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Text</name>
</assembly>
<members>
<member name="T:ServiceStack.Text.AssemblyUtils">
<summary>
Utils to load types
</summary>
</member>
<member name="M:ServiceStack.Text.AssemblyUtils.FindType(System.String)">
<summary>
Find the type from the name supplied
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Text</name>
</assembly>
<members>
<member name="T:ServiceStack.Text.AssemblyUtils">
<summary>
Utils to load types
</summary>
</member>
<member name="M:ServiceStack.Text.AssemblyUtils.FindType(System.String)">
<summary>
Find the type from the name supplied
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Text</name>
</assembly>
<members>
<member name="T:ServiceStack.Text.AssemblyUtils">
<summary>
Utils to load types
</summary>
</member>
<member name="M:ServiceStack.Text.AssemblyUtils.FindType(System.String)">
<summary>
Find the type from the name supplied
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class.</returns>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class.</returns>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class.</returns>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class.</returns>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class.</returns>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class.</returns>

@ -0,0 +1 @@
7601f4f6225089ffb291dc7d58293c7bbf5c5d4f

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Diagnostics.DiagnosticSource</name>
</assembly>
<members>
<member name="T:System.Diagnostics.Activity">
<summary>Represents an operation with context to be used for logging.</summary>
</member>
<member name="E:System.Diagnostics.Activity.CurrentChanged">
<summary>Occurs when the <see cref="P:System.Diagnostics.Activity.Current" /> value changes.</summary>
</member>
<member name="M:System.Diagnostics.Activity.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Activity" /> class.</summary>
<param name="operationName">The name of the operation.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Diagnostics.DiagnosticSource</name>
</assembly>
<members>
<member name="T:System.Diagnostics.Activity">
<summary>Represents an operation with context to be used for logging.</summary>
</member>
<member name="E:System.Diagnostics.Activity.CurrentChanged">
<summary>Occurs when the <see cref="P:System.Diagnostics.Activity.Current" /> value changes.</summary>
</member>
<member name="M:System.Diagnostics.Activity.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Activity" /> class.</summary>
<param name="operationName">The name of the operation.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Diagnostics.DiagnosticSource</name>
</assembly>
<members>
<member name="T:System.Diagnostics.Activity">
<summary>Represents an operation with context to be used for logging.</summary>
</member>
<member name="E:System.Diagnostics.Activity.CurrentChanged">
<summary>Occurs when the <see cref="P:System.Diagnostics.Activity.Current" /> value changes.</summary>
</member>
<member name="M:System.Diagnostics.Activity.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Activity" /> class.</summary>
<param name="operationName">The name of the operation.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Diagnostics.DiagnosticSource</name>
</assembly>
<members>
<member name="T:System.Diagnostics.Activity">
<summary>Represents an operation with context to be used for logging.</summary>
</member>
<member name="E:System.Diagnostics.Activity.CurrentChanged">
<summary>Occurs when the <see cref="P:System.Diagnostics.Activity.Current" /> value changes.</summary>
</member>
<member name="M:System.Diagnostics.Activity.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Activity" /> class.</summary>
<param name="operationName">The name of the operation.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Memory</name>
</assembly>
<members>
<member name="T:System.Span`1">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Span`1.#ctor(`0[])">
<param name="array"></param>
</member>
<member name="M:System.Span`1.#ctor(System.Void*,System.Int32)">
<param name="pointer"></param>
<param name="length"></param>
</member>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Memory</name>
</assembly>
<members>
<member name="T:System.Span`1">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Span`1.#ctor(`0[])">
<param name="array"></param>
</member>
<member name="M:System.Span`1.#ctor(System.Void*,System.Int32)">
<param name="pointer"></param>
<param name="length"></param>
</member>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Memory</name>
</assembly>
<members>
<member name="T:System.Span`1">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Span`1.#ctor(`0[])">
<param name="array"></param>
</member>
<member name="M:System.Span`1.#ctor(System.Void*,System.Int32)">
<param name="pointer"></param>
<param name="length"></param>
</member>

@ -0,0 +1 @@
32b491939fbd125f304031c35038b1e14b4e3958

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Numerics.Vectors</name>
</assembly>
<members>
<member name="T:System.Numerics.Matrix3x2">
<summary>Represents a 3x2 matrix.</summary>
</member>
<member name="M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>Creates a 3x2 matrix from the specified components.</summary>
<param name="m11">The value to assign to the first element in the first row.</param>
<param name="m12">The value to assign to the second element in the first row.</param>
<param name="m21">The value to assign to the first element in the second row.</param>
<param name="m22">The value to assign to the second element in the second row.</param>
<param name="m31">The value to assign to the first element in the third row.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Numerics.Vectors</name>
</assembly>
<members>
<member name="T:System.Numerics.Matrix3x2">
<summary>Represents a 3x2 matrix.</summary>
</member>
<member name="M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>Creates a 3x2 matrix from the specified components.</summary>
<param name="m11">The value to assign to the first element in the first row.</param>
<param name="m12">The value to assign to the second element in the first row.</param>
<param name="m21">The value to assign to the first element in the second row.</param>
<param name="m22">The value to assign to the second element in the second row.</param>
<param name="m31">The value to assign to the first element in the third row.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Numerics.Vectors</name>
</assembly>
<members>
<member name="T:System.Numerics.Matrix3x2">
<summary>Represents a 3x2 matrix.</summary>
</member>
<member name="M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>Creates a 3x2 matrix from the specified components.</summary>
<param name="m11">The value to assign to the first element in the first row.</param>
<param name="m12">The value to assign to the second element in the first row.</param>
<param name="m21">The value to assign to the first element in the second row.</param>
<param name="m22">The value to assign to the second element in the second row.</param>
<param name="m31">The value to assign to the first element in the third row.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Numerics.Vectors</name>
</assembly>
<members>
<member name="T:System.Numerics.Matrix3x2">
<summary>Represents a 3x2 matrix.</summary>
</member>
<member name="M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>Creates a 3x2 matrix from the specified components.</summary>
<param name="m11">The value to assign to the first element in the first row.</param>
<param name="m12">The value to assign to the second element in the first row.</param>
<param name="m21">The value to assign to the first element in the second row.</param>
<param name="m22">The value to assign to the second element in the second row.</param>
<param name="m31">The value to assign to the first element in the third row.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Numerics.Vectors</name>
</assembly>
<members>
<member name="T:System.Numerics.Matrix3x2">
<summary>Represents a 3x2 matrix.</summary>
</member>
<member name="M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>Creates a 3x2 matrix from the specified components.</summary>
<param name="m11">The value to assign to the first element in the first row.</param>
<param name="m12">The value to assign to the second element in the first row.</param>
<param name="m21">The value to assign to the first element in the second row.</param>
<param name="m22">The value to assign to the second element in the second row.</param>
<param name="m31">The value to assign to the first element in the third row.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Numerics.Vectors</name>
</assembly>
<members>
<member name="T:System.Numerics.Matrix3x2">
<summary>Represents a 3x2 matrix.</summary>
</member>
<member name="M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>Creates a 3x2 matrix from the specified components.</summary>
<param name="m11">The value to assign to the first element in the first row.</param>
<param name="m12">The value to assign to the second element in the first row.</param>
<param name="m21">The value to assign to the first element in the second row.</param>
<param name="m22">The value to assign to the second element in the second row.</param>
<param name="m31">The value to assign to the first element in the third row.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Numerics.Vectors</name>
</assembly>
<members>
<member name="T:System.Numerics.Matrix3x2">
<summary>Represents a 3x2 matrix.</summary>
</member>
<member name="M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>Creates a 3x2 matrix from the specified components.</summary>
<param name="m11">The value to assign to the first element in the first row.</param>
<param name="m12">The value to assign to the second element in the first row.</param>
<param name="m21">The value to assign to the first element in the second row.</param>
<param name="m22">The value to assign to the second element in the second row.</param>
<param name="m31">The value to assign to the first element in the third row.</param>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Numerics.Vectors</name>
</assembly>
<members>
<member name="T:System.Numerics.Matrix3x2">
<summary>Represents a 3x2 matrix.</summary>
</member>
<member name="M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>Creates a 3x2 matrix from the specified components.</summary>
<param name="m11">The value to assign to the first element in the first row.</param>
<param name="m12">The value to assign to the second element in the first row.</param>
<param name="m21">The value to assign to the first element in the second row.</param>
<param name="m22">The value to assign to the second element in the second row.</param>
<param name="m31">The value to assign to the first element in the third row.</param>

@ -0,0 +1 @@
30ab651fcb4354552bd4891619a0bdd81e0ebdbf

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Runtime.CompilerServices.Unsafe</name>
</assembly>
<members>
<member name="T:System.Runtime.CompilerServices.Unsafe">
<summary>Contains generic, low-level functionality for manipulating pointers.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)">
<summary>Adds an element offset to the given reference.</summary>
<param name="source">The reference to add the offset to.</param>
<param name="elementOffset">The offset to add.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>A new reference that reflects the addition of offset to pointer.</returns>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Runtime.CompilerServices.Unsafe</name>
</assembly>
<members>
<member name="T:System.Runtime.CompilerServices.Unsafe">
<summary>Contains generic, low-level functionality for manipulating pointers.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)">
<summary>Adds an element offset to the given reference.</summary>
<param name="source">The reference to add the offset to.</param>
<param name="elementOffset">The offset to add.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>A new reference that reflects the addition of offset to pointer.</returns>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Runtime.CompilerServices.Unsafe</name>
</assembly>
<members>
<member name="T:System.Runtime.CompilerServices.Unsafe">
<summary>Contains generic, low-level functionality for manipulating pointers.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)">
<summary>Adds an element offset to the given reference.</summary>
<param name="source">The reference to add the offset to.</param>
<param name="elementOffset">The offset to add.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>A new reference that reflects the addition of offset to pointer.</returns>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Runtime.CompilerServices.Unsafe</name>
</assembly>
<members>
<member name="T:System.Runtime.CompilerServices.Unsafe">
<summary>Contains generic, low-level functionality for manipulating pointers.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)">
<summary>Adds an element offset to the given reference.</summary>
<param name="source">The reference to add the offset to.</param>
<param name="elementOffset">The offset to add.</param>
<typeparam name="T">The type of reference.</typeparam>
<returns>A new reference that reflects the addition of offset to pointer.</returns>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="T:System.Runtime.CompilerServices.ValueTaskAwaiter`1">
<typeparam name="TResult"></typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.GetResult">
<returns></returns>
</member>
<member name="P:System.Runtime.CompilerServices.ValueTaskAwaiter`1.IsCompleted">
<returns></returns>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.OnCompleted(System.Action)">

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="T:System.Runtime.CompilerServices.ValueTaskAwaiter`1">
<typeparam name="TResult"></typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.GetResult">
<returns></returns>
</member>
<member name="P:System.Runtime.CompilerServices.ValueTaskAwaiter`1.IsCompleted">
<returns></returns>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.OnCompleted(System.Action)">

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="T:System.Runtime.CompilerServices.ValueTaskAwaiter`1">
<typeparam name="TResult"></typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.GetResult">
<returns></returns>
</member>
<member name="P:System.Runtime.CompilerServices.ValueTaskAwaiter`1.IsCompleted">
<returns></returns>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.OnCompleted(System.Action)">

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="T:System.Runtime.CompilerServices.ValueTaskAwaiter`1">
<typeparam name="TResult"></typeparam>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.GetResult">
<returns></returns>
</member>
<member name="P:System.Runtime.CompilerServices.ValueTaskAwaiter`1.IsCompleted">
<returns></returns>
</member>
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.OnCompleted(System.Action)">

@ -0,0 +1 @@
7601f4f6225089ffb291dc7d58293c7bbf5c5d4f
Loading…
Cancel
Save