Files
Net.Like.Xue.Tokyo/Assets/Packages/Microsoft.Extensions.Features.9.0.5/lib/netstandard2.0/Microsoft.Extensions.Features.xml
CortexCore 83b2ccc530 1
2025-06-09 15:55:24 +08:00

353 lines
23 KiB
XML

<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Extensions.Features</name>
</assembly>
<members>
<member name="T:Microsoft.AspNetCore.Http.Features.FeatureCollection">
<summary>
Default implementation for <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/>.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureCollection.#ctor">
<summary>
Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Http.Features.FeatureCollection"/>.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureCollection.#ctor(System.Int32)">
<summary>
Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Http.Features.FeatureCollection"/> with the specified initial capacity.
</summary>
<param name="initialCapacity">The initial number of elements that the collection can contain.</param>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="initialCapacity"/> is less than 0</exception>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureCollection.#ctor(Microsoft.AspNetCore.Http.Features.IFeatureCollection)">
<summary>
Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Http.Features.FeatureCollection"/> with the specified defaults.
</summary>
<param name="defaults">The feature defaults.</param>
</member>
<member name="P:Microsoft.AspNetCore.Http.Features.FeatureCollection.Revision">
<inheritdoc />
</member>
<member name="P:Microsoft.AspNetCore.Http.Features.FeatureCollection.IsReadOnly">
<inheritdoc />
</member>
<member name="P:Microsoft.AspNetCore.Http.Features.FeatureCollection.Item(System.Type)">
<inheritdoc />
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureCollection.GetEnumerator">
<inheritdoc />
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureCollection.Get``1">
<inheritdoc />
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureCollection.Set``1(``0)">
<inheritdoc />
</member>
<member name="T:Microsoft.AspNetCore.Http.Features.FeatureCollectionExtensions">
<summary>
Extension methods for getting feature from <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/>
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureCollectionExtensions.GetRequiredFeature``1(Microsoft.AspNetCore.Http.Features.IFeatureCollection)">
<summary>
Retrieves the requested feature from the collection.
Throws an <see cref="T:System.InvalidOperationException"/> if the feature is not present.
</summary>
<param name="featureCollection">The <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/>.</param>
<typeparam name="TFeature">The feature key.</typeparam>
<returns>The requested feature.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureCollectionExtensions.GetRequiredFeature(Microsoft.AspNetCore.Http.Features.IFeatureCollection,System.Type)">
<summary>
Retrieves the requested feature from the collection.
Throws an <see cref="T:System.InvalidOperationException"/> if the feature is not present.
</summary>
<param name="featureCollection">feature collection</param>
<param name="key">The feature key.</param>
<returns>The requested feature.</returns>
</member>
<member name="T:Microsoft.AspNetCore.Http.Features.FeatureReference`1">
<summary>
A cached reference to a feature.
</summary>
<typeparam name="T">The feature type.</typeparam>
</member>
<member name="F:Microsoft.AspNetCore.Http.Features.FeatureReference`1.Default">
<summary>
Gets the default <see cref="T:Microsoft.AspNetCore.Http.Features.FeatureReference`1"/>.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureReference`1.Fetch(Microsoft.AspNetCore.Http.Features.IFeatureCollection)">
<summary>
Gets the feature of type <typeparamref name="T"/> from <paramref name="features"/>.
</summary>
<param name="features">The <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/>.</param>
<returns>The feature.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureReference`1.Update(Microsoft.AspNetCore.Http.Features.IFeatureCollection,`0)">
<summary>
Updates the reference to the feature.
</summary>
<param name="features">The <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/> to update.</param>
<param name="feature">The instance of the feature.</param>
<returns>A reference to <paramref name="feature"/> after the operation has completed.</returns>
</member>
<member name="T:Microsoft.AspNetCore.Http.Features.FeatureReferences`1">
<summary>
A reference to a collection of features.
</summary>
<typeparam name="TCache">The type of the feature.</typeparam>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureReferences`1.#ctor(Microsoft.AspNetCore.Http.Features.IFeatureCollection)">
<summary>
Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Http.Features.FeatureReferences`1"/>.
</summary>
<param name="collection">The <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/>.</param>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureReferences`1.Initalize(Microsoft.AspNetCore.Http.Features.IFeatureCollection)">
<summary>
Initializes the <see cref="T:Microsoft.AspNetCore.Http.Features.FeatureReferences`1"/>.
</summary>
<param name="collection">The <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/> to initialize with.</param>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureReferences`1.Initalize(Microsoft.AspNetCore.Http.Features.IFeatureCollection,System.Int32)">
<summary>
Initializes the <see cref="T:Microsoft.AspNetCore.Http.Features.FeatureReferences`1"/>.
</summary>
<param name="collection">The <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/> to initialize with.</param>
<param name="revision">The version of the <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/>.</param>
</member>
<member name="P:Microsoft.AspNetCore.Http.Features.FeatureReferences`1.Collection">
<summary>
Gets the <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/>.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Http.Features.FeatureReferences`1.Revision">
<summary>
Gets the revision number.
</summary>
</member>
<member name="F:Microsoft.AspNetCore.Http.Features.FeatureReferences`1.Cache">
<summary>
This API is part of ASP.NET Core's infrastructure and should not be referenced by application code.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureReferences`1.Fetch``2(``0@,``1,System.Func{``1,``0})">
<summary>
This API is part of ASP.NET Core's infrastructure and should not be referenced by application code.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.FeatureReferences`1.Fetch``1(``0@,System.Func{Microsoft.AspNetCore.Http.Features.IFeatureCollection,``0})">
<summary>
This API is part of ASP.NET Core's infrastructure and should not be referenced by application code.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection">
<summary>
Represents a collection of HTTP features.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.IsReadOnly">
<summary>
Indicates if the collection can be modified.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Revision">
<summary>
Incremented for each modification and can be used to verify cached results.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Item(System.Type)">
<summary>
Gets or sets a given feature. Setting a null value removes the feature.
</summary>
<param name="key"></param>
<returns>The requested feature, or null if it is not present.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Get``1">
<summary>
Retrieves the requested feature from the collection.
</summary>
<typeparam name="TFeature">The feature key.</typeparam>
<returns>The requested feature, or null if it is not present.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Set``1(``0)">
<summary>
Sets the given feature in the collection.
</summary>
<typeparam name="TFeature">The feature key.</typeparam>
<param name="instance">The feature value.</param>
</member>
<member name="M:Microsoft.AspNetCore.Shared.ArgumentNullThrowHelper.ThrowIfNull(System.Object,System.String)">
<summary>Throws an <see cref="T:System.ArgumentNullException"/> if <paramref name="argument"/> is null.</summary>
<param name="argument">The reference type argument to validate as non-null.</param>
<param name="paramName">The name of the parameter with which <paramref name="argument"/> corresponds.</param>
</member>
<member name="M:Microsoft.AspNetCore.Shared.ArgumentNullThrowHelper.ThrowIfNullOrEmpty(System.String,System.String)">
<summary>Throws an <see cref="T:System.ArgumentException"/> if <paramref name="argument"/> is null or empty.</summary>
<param name="argument">The <see cref="T:System.String"/> argument to validate as non-null and non-empty.</param>
<param name="paramName">The name of the parameter with which <paramref name="argument"/> corresponds.</param>
</member>
<member name="M:Microsoft.AspNetCore.Shared.ArgumentOutOfRangeThrowHelper.ThrowIfZero(System.Int32,System.String)">
<summary>Throws an <see cref="T:System.ArgumentOutOfRangeException"/> if <paramref name="value"/> is zero.</summary>
<param name="value">The argument to validate as non-zero.</param>
<param name="paramName">The name of the parameter with which <paramref name="value"/> corresponds.</param>
</member>
<member name="M:Microsoft.AspNetCore.Shared.ArgumentOutOfRangeThrowHelper.ThrowIfNegative(System.Int32,System.String)">
<summary>Throws an <see cref="T:System.ArgumentOutOfRangeException"/> if <paramref name="value"/> is negative.</summary>
<param name="value">The argument to validate as non-negative.</param>
<param name="paramName">The name of the parameter with which <paramref name="value"/> corresponds.</param>
</member>
<member name="M:Microsoft.AspNetCore.Shared.ArgumentOutOfRangeThrowHelper.ThrowIfNegative(System.Int64,System.String)">
<summary>Throws an <see cref="T:System.ArgumentOutOfRangeException"/> if <paramref name="value"/> is negative.</summary>
<param name="value">The argument to validate as non-negative.</param>
<param name="paramName">The name of the parameter with which <paramref name="value"/> corresponds.</param>
</member>
<member name="M:Microsoft.AspNetCore.Shared.ArgumentOutOfRangeThrowHelper.ThrowIfNegativeOrZero(System.Int32,System.String)">
<summary>Throws an <see cref="T:System.ArgumentOutOfRangeException"/> if <paramref name="value"/> is negative or zero.</summary>
<param name="value">The argument to validate as non-zero or non-negative.</param>
<param name="paramName">The name of the parameter with which <paramref name="value"/> corresponds.</param>
</member>
<member name="M:Microsoft.AspNetCore.Shared.ArgumentOutOfRangeThrowHelper.ThrowIfGreaterThan``1(``0,``0,System.String)">
<summary>Throws an <see cref="T:System.ArgumentOutOfRangeException"/> if <paramref name="value"/> is greater than <paramref name="other"/>.</summary>
<param name="value">The argument to validate as less or equal than <paramref name="other"/>.</param>
<param name="other">The value to compare with <paramref name="value"/>.</param>
<param name="paramName">The name of the parameter with which <paramref name="value"/> corresponds.</param>
</member>
<member name="M:Microsoft.AspNetCore.Shared.ArgumentOutOfRangeThrowHelper.ThrowIfGreaterThanOrEqual``1(``0,``0,System.String)">
<summary>Throws an <see cref="T:System.ArgumentOutOfRangeException"/> if <paramref name="value"/> is greater than or equal <paramref name="other"/>.</summary>
<param name="value">The argument to validate as less than <paramref name="other"/>.</param>
<param name="other">The value to compare with <paramref name="value"/>.</param>
<param name="paramName">The name of the parameter with which <paramref name="value"/> corresponds.</param>
</member>
<member name="M:Microsoft.AspNetCore.Shared.ArgumentOutOfRangeThrowHelper.ThrowIfLessThan``1(``0,``0,System.String)">
<summary>Throws an <see cref="T:System.ArgumentOutOfRangeException"/> if <paramref name="value"/> is less than <paramref name="other"/>.</summary>
<param name="value">The argument to validate as greatar than or equal than <paramref name="other"/>.</param>
<param name="other">The value to compare with <paramref name="value"/>.</param>
<param name="paramName">The name of the parameter with which <paramref name="value"/> corresponds.</param>
</member>
<member name="M:Microsoft.AspNetCore.Shared.ArgumentOutOfRangeThrowHelper.ThrowIfLessThanOrEqual``1(``0,``0,System.String)">
<summary>Throws an <see cref="T:System.ArgumentOutOfRangeException"/> if <paramref name="value"/> is less than or equal <paramref name="other"/>.</summary>
<param name="value">The argument to validate as greatar than than <paramref name="other"/>.</param>
<param name="other">The value to compare with <paramref name="value"/>.</param>
<param name="paramName">The name of the parameter with which <paramref name="value"/> corresponds.</param>
</member>
<member name="T:Microsoft.AspNetCore.Shared.DictionaryItemDebugView`2">
<summary>
Defines a key/value pair for displaying an item of a dictionary by a debugger.
</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
<summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
<summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
<summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
<summary>Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
<summary>Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue"/>, the parameter may be null even if the corresponding type disallows it.</summary>
</member>
<member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
<summary>Initializes the attribute with the specified return value condition.</summary>
<param name="returnValue">
The return value condition. If the method returns this value, the associated parameter may be null.
</param>
</member>
<member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
<summary>Gets the return value condition.</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
<summary>Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue"/>, the parameter will not be null even if the corresponding type allows it.</summary>
</member>
<member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
<summary>Initializes the attribute with the specified return value condition.</summary>
<param name="returnValue">
The return value condition. If the method returns this value, the associated parameter will not be null.
</param>
</member>
<member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
<summary>Gets the return value condition.</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
<summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>
</member>
<member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
<summary>Initializes the attribute with the associated parameter name.</summary>
<param name="parameterName">
The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
</param>
</member>
<member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
<summary>Gets the associated parameter name.</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
<summary>Applied to a method that will never return under any circumstance.</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
<summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>
</member>
<member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
<summary>Initializes the attribute with the specified parameter value.</summary>
<param name="parameterValue">
The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
the associated parameter matches this value.
</param>
</member>
<member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
<summary>Gets the condition parameter value.</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
<summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
</member>
<member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
<summary>Initializes the attribute with a field or property member.</summary>
<param name="member">
The field or property member that is promised to be not-null.
</param>
</member>
<member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
<summary>Initializes the attribute with the list of field and property members.</summary>
<param name="members">
The list of field and property members that are promised to be not-null.
</param>
</member>
<member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
<summary>Gets field or property member names.</summary>
</member>
<member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
<summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>
</member>
<member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
<summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
<param name="returnValue">
The return value condition. If the method returns this value, the associated parameter will not be null.
</param>
<param name="member">
The field or property member that is promised to be not-null.
</param>
</member>
<member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
<summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
<param name="returnValue">
The return value condition. If the method returns this value, the associated parameter will not be null.
</param>
<param name="members">
The list of field and property members that are promised to be not-null.
</param>
</member>
<member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
<summary>Gets the return value condition.</summary>
</member>
<member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
<summary>Gets field or property member names.</summary>
</member>
</members>
</doc>