updfate 20250919
This commit is contained in:
BIN
OnDocScript/bin/Debug/Humanizer.dll
Normal file
BIN
OnDocScript/bin/Debug/Humanizer.dll
Normal file
Binary file not shown.
6549
OnDocScript/bin/Debug/Humanizer.xml
Normal file
6549
OnDocScript/bin/Debug/Humanizer.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
OnDocScript/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll
Normal file
Binary file not shown.
417
OnDocScript/bin/Debug/Microsoft.Bcl.AsyncInterfaces.xml
Normal file
417
OnDocScript/bin/Debug/Microsoft.Bcl.AsyncInterfaces.xml
Normal file
@@ -0,0 +1,417 @@
|
||||
<?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.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._continuationState">
|
||||
<summary>State to pass to <see cref="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._continuation"/>.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._executionContext">
|
||||
<summary><see cref="T:System.Threading.ExecutionContext"/> to flow to the callback, or null if no flowing is required.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._capturedContext">
|
||||
<summary>
|
||||
A "captured" <see cref="T:System.Threading.SynchronizationContext"/> or <see cref="T:System.Threading.Tasks.TaskScheduler"/> with which to invoke the callback,
|
||||
or null if no special context is required.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._completed">
|
||||
<summary>Whether the current operation has completed.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._result">
|
||||
<summary>The result with which the operation succeeded, or the default value if it hasn't yet completed or failed.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._error">
|
||||
<summary>The exception with which the operation failed, or null if it hasn't yet completed or completed successfully.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._version">
|
||||
<summary>The current version of this value, used to help prevent misuse.</summary>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.RunContinuationsAsynchronously">
|
||||
<summary>Gets or sets whether to force continuations to run asynchronously.</summary>
|
||||
<remarks>Continuations may run asynchronously if this is false, but they'll never run synchronously if this is true.</remarks>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.Reset">
|
||||
<summary>Resets to prepare for the next operation.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.SetResult(`0)">
|
||||
<summary>Completes with a successful result.</summary>
|
||||
<param name="result">The result.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.SetException(System.Exception)">
|
||||
<summary>Complets with an error.</summary>
|
||||
<param name="error"></param>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.Version">
|
||||
<summary>Gets the operation version.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetStatus(System.Int16)">
|
||||
<summary>Gets the status of the operation.</summary>
|
||||
<param name="token">Opaque value that was provided to the <see cref="T:System.Threading.Tasks.ValueTask"/>'s constructor.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetResult(System.Int16)">
|
||||
<summary>Gets the result of the operation.</summary>
|
||||
<param name="token">Opaque value that was provided to the <see cref="T:System.Threading.Tasks.ValueTask"/>'s constructor.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)">
|
||||
<summary>Schedules the continuation action for this operation.</summary>
|
||||
<param name="continuation">The continuation to invoke when the operation has completed.</param>
|
||||
<param name="state">The state object to pass to <paramref name="continuation"/> when it's invoked.</param>
|
||||
<param name="token">Opaque value that was provided to the <see cref="T:System.Threading.Tasks.ValueTask"/>'s constructor.</param>
|
||||
<param name="flags">The flags describing the behavior of the continuation.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.ValidateToken(System.Int16)">
|
||||
<summary>Ensures that the specified token matches the current version.</summary>
|
||||
<param name="token">The token supplied by <see cref="T:System.Threading.Tasks.ValueTask"/>.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.SignalCompletion">
|
||||
<summary>Signals that the operation has completed. Invoked after the result or error has been set.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.InvokeContinuation">
|
||||
<summary>
|
||||
Invokes the continuation with the appropriate captured context / scheduler.
|
||||
This assumes that if <see cref="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._executionContext"/> is not null we're already
|
||||
running within that <see cref="T:System.Threading.ExecutionContext"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:System.Threading.Tasks.TaskAsyncEnumerableExtensions">
|
||||
<summary>Provides a set of static methods for configuring <see cref="T:System.Threading.Tasks.Task"/>-related behaviors on asynchronous enumerables and disposables.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.ConfigureAwait(System.IAsyncDisposable,System.Boolean)">
|
||||
<summary>Configures how awaits on the tasks returned from an async disposable will be performed.</summary>
|
||||
<param name="source">The source async disposable.</param>
|
||||
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
|
||||
<returns>The configured async disposable.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.ConfigureAwait``1(System.Collections.Generic.IAsyncEnumerable{``0},System.Boolean)">
|
||||
<summary>Configures how awaits on the tasks returned from an async iteration will be performed.</summary>
|
||||
<typeparam name="T">The type of the objects being iterated.</typeparam>
|
||||
<param name="source">The source enumerable being iterated.</param>
|
||||
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
|
||||
<returns>The configured enumerable.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.WithCancellation``1(System.Collections.Generic.IAsyncEnumerable{``0},System.Threading.CancellationToken)">
|
||||
<summary>Sets the <see cref="T:System.Threading.CancellationToken"/> to be passed to <see cref="M:System.Collections.Generic.IAsyncEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken)"/> when iterating.</summary>
|
||||
<typeparam name="T">The type of the objects being iterated.</typeparam>
|
||||
<param name="source">The source enumerable being iterated.</param>
|
||||
<param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken"/> to use.</param>
|
||||
<returns>The configured enumerable.</returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder">
|
||||
<summary>Represents a builder for asynchronous iterators.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create">
|
||||
<summary>Creates an instance of the <see cref="T:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder"/> struct.</summary>
|
||||
<returns>The initialized instance.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.MoveNext``1(``0@)">
|
||||
<summary>Invokes <see cref="M:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext"/> on the state machine while guarding the <see cref="T:System.Threading.ExecutionContext"/>.</summary>
|
||||
<typeparam name="TStateMachine">The type of the state machine.</typeparam>
|
||||
<param name="stateMachine">The state machine instance, passed by reference.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.AwaitOnCompleted``2(``0@,``1@)">
|
||||
<summary>Schedules the state machine to proceed to the next action when the specified awaiter completes.</summary>
|
||||
<typeparam name="TAwaiter">The type of the awaiter.</typeparam>
|
||||
<typeparam name="TStateMachine">The type of the state machine.</typeparam>
|
||||
<param name="awaiter">The awaiter.</param>
|
||||
<param name="stateMachine">The state machine.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@)">
|
||||
<summary>Schedules the state machine to proceed to the next action when the specified awaiter completes.</summary>
|
||||
<typeparam name="TAwaiter">The type of the awaiter.</typeparam>
|
||||
<typeparam name="TStateMachine">The type of the state machine.</typeparam>
|
||||
<param name="awaiter">The awaiter.</param>
|
||||
<param name="stateMachine">The state machine.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Complete">
|
||||
<summary>Marks iteration as being completed, whether successfully or otherwise.</summary>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.ObjectIdForDebugger">
|
||||
<summary>Gets an object that may be used to uniquely identify this builder to the debugger.</summary>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute">
|
||||
<summary>Indicates whether a method is an asynchronous iterator.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute.#ctor(System.Type)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute"/> class.</summary>
|
||||
<param name="stateMachineType">The type object for the underlying state machine type that's used to implement a state machine method.</param>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredAsyncDisposable">
|
||||
<summary>Provides a type that can be used to configure how awaits on an <see cref="T:System.IAsyncDisposable"/> are performed.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredAsyncDisposable.DisposeAsync">
|
||||
<summary>Asynchronously releases the unmanaged resources used by the <see cref="T:System.Runtime.CompilerServices.ConfiguredAsyncDisposable" />.</summary>
|
||||
<returns>A task that represents the asynchronous dispose operation.</returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1">
|
||||
<summary>Provides an awaitable async enumerable that enables cancelable iteration and configured awaits.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.ConfigureAwait(System.Boolean)">
|
||||
<summary>Configures how awaits on the tasks returned from an async iteration will be performed.</summary>
|
||||
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
|
||||
<returns>The configured enumerable.</returns>
|
||||
<remarks>This will replace any previous value set by <see cref="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.ConfigureAwait(System.Boolean)"/> for this iteration.</remarks>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.WithCancellation(System.Threading.CancellationToken)">
|
||||
<summary>Sets the <see cref="T:System.Threading.CancellationToken"/> to be passed to <see cref="M:System.Collections.Generic.IAsyncEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken)"/> when iterating.</summary>
|
||||
<param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken"/> to use.</param>
|
||||
<returns>The configured enumerable.</returns>
|
||||
<remarks>This will replace any previous <see cref="T:System.Threading.CancellationToken"/> set by <see cref="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.WithCancellation(System.Threading.CancellationToken)"/> for this iteration.</remarks>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.GetAsyncEnumerator">
|
||||
<summary>Returns an enumerator that iterates asynchronously through collections that enables cancelable iteration and configured awaits.</summary>
|
||||
<returns>An enumerator for the <see cref="T:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1" /> class.</returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator">
|
||||
<summary>Provides an awaitable async enumerator that enables cancelable iteration and configured awaits.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.MoveNextAsync">
|
||||
<summary>Advances the enumerator asynchronously to the next element of the collection.</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1"/> that will complete with a result of <c>true</c>
|
||||
if the enumerator was successfully advanced to the next element, or <c>false</c> if the enumerator has
|
||||
passed the end of the collection.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.Current">
|
||||
<summary>Gets the element in the collection at the current position of the enumerator.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.DisposeAsync">
|
||||
<summary>
|
||||
Performs application-defined tasks associated with freeing, releasing, or
|
||||
resetting unmanaged resources asynchronously.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.EnumeratorCancellationAttribute">
|
||||
<summary>Allows users of async-enumerable methods to mark the parameter that should receive the cancellation token value from <see cref="M:System.Collections.Generic.IAsyncEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken)" />.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.EnumeratorCancellationAttribute.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.EnumeratorCancellationAttribute" /> class.</summary>
|
||||
</member>
|
||||
<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.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
|
||||
</summary>
|
||||
<param name="libraryName">Name of the library containing the import.</param>
|
||||
</member>
|
||||
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
|
||||
<summary>
|
||||
Gets the name of the library containing the import.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
|
||||
<summary>
|
||||
Gets or sets the name of the entry point to be called.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
|
||||
<summary>
|
||||
Gets or sets how to marshal string arguments to the method.
|
||||
</summary>
|
||||
<remarks>
|
||||
If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
|
||||
<see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
|
||||
<summary>
|
||||
Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
|
||||
</summary>
|
||||
<remarks>
|
||||
If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
|
||||
or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
|
||||
<summary>
|
||||
Gets or sets whether the callee sets an error (SetLastError on Windows or errno
|
||||
on other platforms) before returning from the attributed method.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:System.Runtime.InteropServices.StringMarshalling">
|
||||
<summary>
|
||||
Specifies how strings should be marshalled for generated p/invokes
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
|
||||
<summary>
|
||||
Indicates the user is supplying a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
|
||||
<summary>
|
||||
Use the platform-provided UTF-8 marshaller.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
|
||||
<summary>
|
||||
Use the platform-provided UTF-16 marshaller.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:System.Collections.Generic.IAsyncEnumerable`1">
|
||||
<summary>Exposes an enumerator that provides asynchronous iteration over values of a specified type.</summary>
|
||||
<typeparam name="T">The type of values to enumerate.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Collections.Generic.IAsyncEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken)">
|
||||
<summary>Returns an enumerator that iterates asynchronously through the collection.</summary>
|
||||
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> that may be used to cancel the asynchronous iteration.</param>
|
||||
<returns>An enumerator that can be used to iterate asynchronously through the collection.</returns>
|
||||
</member>
|
||||
<member name="T:System.Collections.Generic.IAsyncEnumerator`1">
|
||||
<summary>Supports a simple asynchronous iteration over a generic collection.</summary>
|
||||
<typeparam name="T">The type of objects to enumerate.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Collections.Generic.IAsyncEnumerator`1.MoveNextAsync">
|
||||
<summary>Advances the enumerator asynchronously to the next element of the collection.</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Threading.Tasks.ValueTask`1"/> that will complete with a result of <c>true</c> if the enumerator
|
||||
was successfully advanced to the next element, or <c>false</c> if the enumerator has passed the end
|
||||
of the collection.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:System.Collections.Generic.IAsyncEnumerator`1.Current">
|
||||
<summary>Gets the element in the collection at the current position of the enumerator.</summary>
|
||||
</member>
|
||||
<member name="T:System.IAsyncDisposable">
|
||||
<summary>Provides a mechanism for releasing unmanaged resources asynchronously.</summary>
|
||||
</member>
|
||||
<member name="M:System.IAsyncDisposable.DisposeAsync">
|
||||
<summary>
|
||||
Performs application-defined tasks associated with freeing, releasing, or
|
||||
resetting unmanaged resources asynchronously.
|
||||
</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 field or property member 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 field and property members 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>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,119 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.CodeAnalysis.CSharp.Scripting</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript">
|
||||
<summary>
|
||||
A factory for creating and running C# scripts.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.Create``1(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Type,Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader)">
|
||||
<summary>
|
||||
Create a new C# script.
|
||||
</summary>
|
||||
<param name="code">The source code of the script.</param>
|
||||
<param name="options">The script options.</param>
|
||||
<param name="globalsType">Type of global object.</param>
|
||||
<param name="assemblyLoader">Custom assembly loader.</param>
|
||||
<typeparam name="T">The return type of the script</typeparam>
|
||||
<exception cref="T:System.ArgumentNullException">Code is null.</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.Create``1(System.IO.Stream,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Type,Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader)">
|
||||
<summary>
|
||||
Create a new C# script.
|
||||
</summary>
|
||||
<param name="code">The <see cref="T:System.IO.Stream"/> representing the source code of the script.</param>
|
||||
<param name="options">The script options.</param>
|
||||
<param name="globalsType">Type of global object.</param>
|
||||
<param name="assemblyLoader">Custom assembly loader.</param>
|
||||
<typeparam name="T">The return type of the script</typeparam>
|
||||
<exception cref="T:System.ArgumentNullException">Stream is null.</exception>
|
||||
<exception cref="T:System.ArgumentException">Stream is not readable or seekable.</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.Create(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Type,Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader)">
|
||||
<summary>
|
||||
Create a new C# script.
|
||||
</summary>
|
||||
<param name="code">The source code of the script.</param>
|
||||
<param name="options">The script options.</param>
|
||||
<param name="globalsType">Type of global object.</param>
|
||||
<param name="assemblyLoader">Custom assembly loader.</param>
|
||||
<exception cref="T:System.ArgumentNullException">Code is null.</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.Create(System.IO.Stream,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Type,Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader)">
|
||||
<summary>
|
||||
Create a new C# script.
|
||||
</summary>
|
||||
<param name="code">The <see cref="T:System.IO.Stream"/> representing the source code of the script.</param>
|
||||
<param name="options">The script options.</param>
|
||||
<param name="globalsType">Type of global object.</param>
|
||||
<param name="assemblyLoader">Custom assembly loader.</param>
|
||||
<exception cref="T:System.ArgumentNullException">Stream is null.</exception>
|
||||
<exception cref="T:System.ArgumentException">Stream is not readable or seekable.</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.RunAsync``1(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Object,System.Type,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Run a C# script.
|
||||
</summary>
|
||||
<param name="code">The source code of the script.</param>
|
||||
<param name="options">The script options.</param>
|
||||
<param name="globals">An object instance whose members can be accessed by the script as global variables.</param>
|
||||
<param name="globalsType">Type of global object, <paramref name="globals"/>.GetType() is used if not specified.</param>
|
||||
<param name="cancellationToken">Cancellation token.</param>
|
||||
<typeparam name="T">The return type of the submission</typeparam>
|
||||
<exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Specified code has errors.</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.RunAsync(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Object,System.Type,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Run a C# script.
|
||||
</summary>
|
||||
<param name="code">The source code of the script.</param>
|
||||
<param name="options">The script options.</param>
|
||||
<param name="globals">An object instance whose members can be accessed by the script as global variables.</param>
|
||||
<param name="globalsType">Type of global object, <paramref name="globals"/>.GetType() is used if not specified.</param>
|
||||
<param name="cancellationToken">Cancellation token.</param>
|
||||
<exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Specified code has errors.</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.EvaluateAsync``1(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Object,System.Type,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Run a C# script and return its resulting value.
|
||||
</summary>
|
||||
<param name="code">The source code of the script.</param>
|
||||
<param name="options">The script options.</param>
|
||||
<param name="globals">An object instance whose members can be accessed by the script as global variables.</param>
|
||||
<param name="globalsType">Type of global object, <paramref name="globals"/>.GetType() is used if not specified.</param>
|
||||
<param name="cancellationToken">Cancellation token.</param>
|
||||
<typeparam name="T">The return type of the submission</typeparam>
|
||||
<return>Returns the value returned by running the script.</return>
|
||||
<exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Specified code has errors.</exception>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.EvaluateAsync(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Object,System.Type,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Run a C# script and return its resulting value.
|
||||
</summary>
|
||||
<param name="code">The source code of the script.</param>
|
||||
<param name="options">The script options.</param>
|
||||
<param name="globals">An object instance whose members can be accessed by the script as global variables.</param>
|
||||
<param name="globalsType">Type of global object, <paramref name="globals"/>.GetType() is used if not specified.</param>
|
||||
<param name="cancellationToken">Cancellation token.</param>
|
||||
<return>Returns the value returned by running the script.</return>
|
||||
<exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Specified code has errors.</exception>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScriptingResources.LogoLine1">
|
||||
<summary>Microsoft (R) Visual C# Interactive Compiler version {0}</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScriptingResources.LogoLine2">
|
||||
<summary>Copyright (C) Microsoft Corporation. All rights reserved.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScriptingResources.InteractiveHelp">
|
||||
<summary>Usage: csi [option] ... [script-file.csx] [script-argument] ...
|
||||
|
||||
Executes script-file.csx if specified, otherwise launches an interactive REPL (Read Eval Print Loop).
|
||||
|
||||
Options:
|
||||
/help Display this usage message (alternative form: ...</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,907 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.CodeAnalysis.CSharp.Workspaces</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Classification.ClassificationHelpers.GetClassification(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Determine the classification type for a given token.
|
||||
</summary>
|
||||
<param name="token">The token.</param>
|
||||
<returns>The correct syntactic classification for the token.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Classification.Worker">
|
||||
<summary>
|
||||
Worker is an utility class that can classify a list of tokens or a tree within a
|
||||
requested span The implementation is generic and can produce any kind of classification
|
||||
artifacts T T is normally either ClassificationSpan or a Tuple (for testing purposes)
|
||||
and constructed via provided factory.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.CodeGeneration.CSharpSyntaxGenerator.ShiftTrivia(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode)">
|
||||
<summary>
|
||||
Moves the trailing trivia from the node's previous token to the end of the node
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.CodeGeneration.CSharpCodeGenerationHelpers.GetReuseableSyntaxNodeForSymbol``1(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.CSharp.CodeGeneration.CSharpCodeGenerationContextInfo)">
|
||||
<summary>
|
||||
Try use the existing syntax node and generate a new syntax node for the given <param name="symbol"/>.
|
||||
Note: the returned syntax node might be modified, which means its parent information might be missing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.CodeGeneration.CSharpSyntaxGeneratorInternal.RequiresLocalDeclarationType">
|
||||
<summary>
|
||||
C# always requires a type to be present with a local declaration. (Even if that type is
|
||||
<c>var</c>).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.CodeGeneration.CSharpSyntaxGeneratorInternal.ParenthesizeLeft(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax)">
|
||||
<summary>
|
||||
Parenthesize the left hand size of a member access, invocation or element access expression
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.FindSymbols.CSharpDeclaredSymbolInfoFactoryService.GetSuffix(System.Char,System.Char,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax})">
|
||||
<summary>
|
||||
Builds up the suffix to show for something with parameters in navigate-to.
|
||||
While it would be nice to just use the compiler SymbolDisplay API for this,
|
||||
it would be too expensive as it requires going back to Symbols (which requires
|
||||
creating compilations, etc.) in a perf sensitive area.
|
||||
|
||||
So, instead, we just build a reasonable suffix using the pure syntax that a
|
||||
user provided. That means that if they wrote "Method(System.Int32 i)" we'll
|
||||
show that as "Method(System.Int32)" not "Method(int)". Given that this is
|
||||
actually what the user wrote, and it saves us from ever having to go back to
|
||||
symbols/compilations, this is well worth it, even if it does mean we have to
|
||||
create our own 'symbol display' logic here.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions">
|
||||
<inheritdoc cref="T:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpacingAfterMethodDeclarationName">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpacingAfterMethodDeclarationName"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceWithinMethodDeclarationParenthesis">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceWithinMethodDeclarationParenthesis"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceBetweenEmptyMethodDeclarationParentheses">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceBetweenEmptyMethodDeclarationParentheses"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceAfterMethodCallName">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceAfterMethodCallName"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceWithinMethodCallParentheses">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceWithinMethodCallParentheses"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceBetweenEmptyMethodCallParentheses">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceBetweenEmptyMethodCallParentheses"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceAfterControlFlowStatementKeyword">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceAfterControlFlowStatementKeyword"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceAfterCast">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceAfterCast"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpacesIgnoreAroundVariableDeclaration">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpacesIgnoreAroundVariableDeclaration"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceBeforeOpenSquareBracket">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceBeforeOpenSquareBracket"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceBetweenEmptySquareBrackets">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceBetweenEmptySquareBrackets"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceWithinSquareBrackets">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceWithinSquareBrackets"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceAfterColonInBaseTypeDeclaration">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceAfterColonInBaseTypeDeclaration"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceAfterComma">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceAfterComma"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceAfterDot">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceAfterDot"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceAfterSemicolonsInForStatement">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceAfterSemicolonsInForStatement"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceBeforeColonInBaseTypeDeclaration">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceBeforeColonInBaseTypeDeclaration"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceBeforeComma">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceBeforeComma"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceBeforeDot">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceBeforeDot"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpaceBeforeSemicolonsInForStatement">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpaceBeforeSemicolonsInForStatement"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.SpacingAroundBinaryOperator">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.SpacingAroundBinaryOperator"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.IndentBraces">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.IndentBraces"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.IndentBlock">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.IndentBlock"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.IndentSwitchSection">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.IndentSwitchSection"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.IndentSwitchCaseSection">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.IndentSwitchCaseSection"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.IndentSwitchCaseSectionWhenBlock">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.IndentSwitchCaseSectionWhenBlock"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.LabelPositioning">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.LabelPositioning"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.WrappingPreserveSingleLine">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.WrappingPreserveSingleLine"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.WrappingKeepStatementsOnSingleLine">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.WrappingKeepStatementsOnSingleLine"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.NewLineForElse">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.NewLineForElse"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.NewLineForCatch">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.NewLineForCatch"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.NewLineForFinally">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.NewLineForFinally"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.NewLineForMembersInObjectInit">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.NewLineForMembersInObjectInit"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.NewLineForMembersInAnonymousTypes">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.NewLineForMembersInAnonymousTypes"/>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions.NewLineForClausesInQuery">
|
||||
<inheritdoc cref="P:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.NewLineForClausesInQuery"/>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpSyntaxFormattingService.ValidSingleOrMultiCharactersTokenKind(System.Char,Microsoft.CodeAnalysis.CSharp.SyntaxKind)">
|
||||
<summary>
|
||||
We'll autoformat on 'n', 't', 'e', only if they are the last character of the below keywords.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.CollectionExpressionWrappingLength">
|
||||
<summary>
|
||||
Internal option -- not exposed to editorconfig tooling via <see cref="F:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.EditorConfigOptions"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.EditorConfigOptions">
|
||||
<summary>
|
||||
Options that we expect the user to set in editorconfig.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpFormattingOptions2.UndocumentedOptions">
|
||||
<summary>
|
||||
Options that can be set via editorconfig but we do not provide tooling support.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Formatting.LabelPositionOptions.LeftMost">
|
||||
Placed in the Zeroth column of the text editor
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Formatting.LabelPositionOptions.OneLess">
|
||||
Placed at one less indent to the current context
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Formatting.LabelPositionOptions.NoIndent">
|
||||
Placed at the same indent as the current context
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Formatting.BinaryOperatorSpacingOptions.Single">
|
||||
Single Spacing
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Formatting.BinaryOperatorSpacingOptions.Ignore">
|
||||
Ignore Formatting
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Formatting.BinaryOperatorSpacingOptions.Remove">
|
||||
Remove Spacing
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Formatting.FormattingResult">
|
||||
<summary>
|
||||
this holds onto changes made by formatting engine.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Formatting.CSharpTriviaFormatter.IsVisualBasicComment(Microsoft.CodeAnalysis.SyntaxTrivia)">
|
||||
<summary>
|
||||
C# never passes a VB Comment
|
||||
</summary>
|
||||
<param name="trivia"></param>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Formatting.TriviaDataFactory">
|
||||
<summary>
|
||||
trivia factory.
|
||||
|
||||
it will cache some commonly used trivia to reduce memory footprint and heap allocation
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Formatting.TriviaDataFactory.ComplexTrivia">
|
||||
<summary>
|
||||
represents a general trivia between two tokens. slightly more expensive than others since it
|
||||
needs to calculate stuff unlike other cases
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Formatting.FormattingHelpers.IsOpenParenInVarDeconstructionDeclaration(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Checks whether currentToken is the opening paren of a deconstruction-declaration in var form, such as <c>var (x, y) = ...</c>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Formatting.FormattingHelpers.IsCommaInTupleExpression(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Check whether the currentToken is a comma and is a delimiter between arguments inside a tuple expression.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Recommendations.CSharpRecommendationService.CSharpRecommendationServiceRunner">
|
||||
<summary>
|
||||
Adds user defined and predefined conversions to the unnamed recommendation set.
|
||||
</summary>
|
||||
<summary>
|
||||
Adds user defined operators to the unnamed recommendation set.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Rename.CSharpRenameConflictLanguageService.RenameRewriter._isRenamingInStrings">
|
||||
<summary>
|
||||
Flag indicating if we should perform a rename inside string literals.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Rename.CSharpRenameConflictLanguageService.RenameRewriter._isRenamingInComments">
|
||||
<summary>
|
||||
Flag indicating if we should perform a rename inside comment trivia.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Rename.CSharpRenameConflictLanguageService.RenameRewriter._stringAndCommentTextSpans">
|
||||
<summary>
|
||||
A map from spans of tokens needing rename within strings or comments to an optional
|
||||
set of specific sub-spans within the token span that
|
||||
have <see cref="F:Microsoft.CodeAnalysis.CSharp.Rename.CSharpRenameConflictLanguageService.RenameRewriter._originalText"/> matches and should be renamed.
|
||||
If this sorted set is null, it indicates that sub-spans to rename within the token span
|
||||
are not available, and a regex match should be performed to rename
|
||||
all <see cref="F:Microsoft.CodeAnalysis.CSharp.Rename.CSharpRenameConflictLanguageService.RenameRewriter._originalText"/> matches within the span.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Rename.CSharpRenameConflictLanguageService.GetExpansionTargetForLocation(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Gets the top most enclosing statement or CrefSyntax as target to call MakeExplicit on.
|
||||
It's either the enclosing statement, or if this statement is inside of a lambda expression, the enclosing
|
||||
statement of this lambda.
|
||||
</summary>
|
||||
<param name="token">The token to get the complexification target for.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Rename.CSharpRenameConflictLanguageService.GetSemanticModelForNode(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SemanticModel)">
|
||||
<summary>
|
||||
Gets the semantic model for the given node.
|
||||
If the node belongs to the syntax tree of the original semantic model, then returns originalSemanticModel.
|
||||
Otherwise, returns a speculative model.
|
||||
The assumption for the later case is that span start position of the given node in it's syntax tree is same as
|
||||
the span start of the original node in the original syntax tree.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Simplification.CSharpSimplificationService.NodesAndTokensToReduceComputer.Compute(Microsoft.CodeAnalysis.SyntaxNode,System.Func{Microsoft.CodeAnalysis.SyntaxNodeOrToken,System.Boolean})">
|
||||
<summary>
|
||||
Computes a list of nodes and tokens that need to be reduced in the given syntax root.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Simplification.CSharpInferredMemberNameReducer">
|
||||
<summary>
|
||||
Complexify makes inferred names explicit for tuple elements and anonymous type members. This
|
||||
class considers which ones of those can be simplified (after the refactoring was done).
|
||||
If the inferred name of the member matches, the explicit name (from Complexify) can be removed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Simplification.Simplifiers.AbstractCSharpSimplifier`2">
|
||||
<summary>
|
||||
Contains helpers used by several simplifier subclasses.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Simplification.Simplifiers.AbstractCSharpSimplifier`2.TryGetPredefinedKeywordToken(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SpecialType)">
|
||||
<summary>
|
||||
Returns the predefined keyword kind for a given <see cref="T:Microsoft.CodeAnalysis.SpecialType"/>.
|
||||
</summary>
|
||||
<param name="specialType">The <see cref="T:Microsoft.CodeAnalysis.SpecialType"/> of this type.</param>
|
||||
<returns>The keyword kind for a given special type, or SyntaxKind.None if the type name is not a predefined type.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Simplification.Simplifiers.ExpressionSimplifier.CandidateSymbolEqualityComparer">
|
||||
<summary>
|
||||
Compares symbols by their original definition.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Simplification.Simplifiers.ExpressionSimplifier.IsReplacementCandidate(Microsoft.CodeAnalysis.ISymbol,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ISymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ISymbol})">
|
||||
<summary>
|
||||
Determines if <paramref name="speculativeSymbols"/> and <paramref name="speculativeNamespacesAndTypes"/>
|
||||
together contain a superset of the symbols in <paramref name="actualSymbol"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Simplification.Simplifiers.ExpressionSimplifier.IsNonRemovablePartOfDynamicMethodInvocation(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Tells if the member access is dynamically invoked and cannot be reduced. In the case of
|
||||
<c>NS1.NS2.T1.T2.Method(...dynamic...)</c> we can only remove the <c>NS1.NS2</c>
|
||||
portion. The namespace part is not encoded into the IL, but the specific types in
|
||||
<c>T1.T2</c> and cannot be removed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Simplification.Simplifiers.NameSimplifier.IsPartOfNamespaceDeclarationName(Microsoft.CodeAnalysis.SyntaxNode)">
|
||||
<summary>
|
||||
Checks if the SyntaxNode is a name of a namespace declaration. To be a namespace name, the syntax
|
||||
must be parented by an namespace declaration and the node itself must be equal to the declaration's Name
|
||||
property.
|
||||
</summary>
|
||||
<param name="node"></param>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Simplification.Simplifiers.CastSimplifier">
|
||||
<summary>
|
||||
By default the cast simplifier operates under several main principles:
|
||||
<list type="number">
|
||||
<item>The final type that a cast-expression was converted to should be the same as the final
|
||||
type that the underlying expression should convert to without the cast. This tells us that
|
||||
the compiler thinks that value should convert to that type implicitly, not just explicitly.</item>
|
||||
<item>Static semantics of the code should remain the same. This means that things like overload
|
||||
resolution of the invocations the casted expression is contained within should not change.</item>
|
||||
<item>Runtime types and values should not observably change. This means that if casting the
|
||||
value would cause a different type to be seen in a <see cref="M:System.Object.GetType"/> call,
|
||||
or a different value could be observed at runtime, then it must remain.</item>
|
||||
</list>
|
||||
|
||||
These rules serve as a good foundational intuition about when casts should be kept and when
|
||||
they should be removable. However, they are not entirely complete. There are cases when we
|
||||
can weaken some of the above rules if it would not be observable at runtime. For example,
|
||||
if it can be proven that calling through an interface method would lead to the exact same
|
||||
call at runtime to a specific implementation of that interface method, then it can be legal to
|
||||
remove such a cast as at runtime this would not be observable. This does in effect mean that
|
||||
the emitted IL will be different, but this matches the user expectation that the *end* behavior
|
||||
of their code remains the same.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTreeFactoryService.ParsedSyntaxTree">
|
||||
<summary>
|
||||
Parsed <see cref="T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree"/> that creates <see cref="T:Microsoft.CodeAnalysis.Text.SourceText"/> with given encoding and checksum algorithm.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.CodeStyle.CSharpCodeStyleOptions.EditorConfigOptions">
|
||||
<summary>
|
||||
Options that we expect the user to set in editorconfig.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.CodeStyle.TypeStyle.TypeStyleHelper.IsTypeApparentInAssignmentExpression(Microsoft.CodeAnalysis.CSharp.CodeStyle.TypeStyle.UseVarPreference,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.ITypeSymbol,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Analyzes if type information is obvious to the reader by simply looking at the assignment expression.
|
||||
</summary>
|
||||
<remarks>
|
||||
<paramref name="typeInDeclaration"/> accepts null, to be able to cater to codegen features
|
||||
that are about to generate a local declaration and do not have this information to pass in.
|
||||
Things (like analyzers) that do have a local declaration already, should pass this in.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.CodeStyle.TypeStyle.TypeStyleHelper.IsPossibleCreationMethod(Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.INamedTypeSymbol)">
|
||||
<summary>
|
||||
Looks for types that have static methods that return the same type as the container.
|
||||
e.g: int.Parse, XElement.Load, Tuple.Create etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.CodeStyle.TypeStyle.TypeStyleHelper.IsPossibleConversionMethod(Microsoft.CodeAnalysis.IMethodSymbol)">
|
||||
<summary>
|
||||
If we have a method ToXXX and its return type is also XXX, then type name is apparent
|
||||
e.g: Convert.ToString.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.EmbeddedLanguages.VirtualChars.CSharpVirtualCharService.TryConvertMultiLineRawStringToVirtualChars(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Boolean)">
|
||||
<summary>
|
||||
Creates the sequence for the <b>content</b> characters in this <paramref name="token"/>. This will not
|
||||
include indentation whitespace that the language specifies is not part of the content.
|
||||
</summary>
|
||||
<param name="parentExpression">The containing expression for this token. This is needed so that we can
|
||||
determine the indentation whitespace based on the last line of the containing multiline literal.</param>
|
||||
<param name="tokenIncludeDelimiters">If this token includes the quote (<c>"</c>) characters for the
|
||||
delimiters inside of it or not. If so, then those quotes will need to be skipped when determining the
|
||||
content</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ArgumentSyntaxExtensions.DetermineParameter(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax,Microsoft.CodeAnalysis.SemanticModel,System.Boolean,System.Boolean,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Returns the parameter to which this argument is passed. If <paramref name="allowParams"/>
|
||||
is true, the last parameter will be returned if it is params parameter and the index of
|
||||
the specified argument is greater than the number of parameters.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.AttributeArgumentSyntaxExtensions.DetermineParameter(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax,Microsoft.CodeAnalysis.SemanticModel,System.Boolean,System.Boolean,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Returns the parameter to which this argument is passed. If <paramref name="allowParams"/>
|
||||
is true, the last parameter will be returned if it is params parameter and the index of
|
||||
the specified argument is greater than the number of parameters.
|
||||
</summary>
|
||||
<remarks>
|
||||
Returns null if the <paramref name="argument"/> is a named argument.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery.SyntaxTreeExtensions.IsPossibleTupleContext(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxToken,System.Int32)">
|
||||
<summary>
|
||||
Are you possibly typing a tuple type or expression?
|
||||
This is used to suppress colon as a completion trigger (so that you can type element names).
|
||||
This is also used to recommend some keywords (like var).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery.SyntaxTreeExtensions.IsPossibleDeconstructionDesignation(Microsoft.CodeAnalysis.SyntaxTree,System.Int32,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Are you possibly in the designation part of a deconstruction?
|
||||
This is used to enter suggestion mode (suggestions become soft-selected).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery.SyntaxTreeExtensions.UnwrapPossibleTuple(Microsoft.CodeAnalysis.SyntaxNode)">
|
||||
<summary>
|
||||
If inside a parenthesized or tuple expression, unwrap the nestings and return the container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery.CSharpSyntaxContext.IsAwaitStatementContext(System.Int32,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Is this a possible position for an await statement (`await using` or `await foreach`)?
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery.CSharpSyntaxContext.ComputeIsAwaitKeywordContext(System.Int32,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Determines whether await should be suggested in a given position.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ExpressionSyntaxExtensions.IsInRefContext(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxNode@)">
|
||||
<summary>
|
||||
Returns true if this expression is in some <c>ref</c> keyword context. If <see langword="true"/> then
|
||||
<paramref name="refParent"/> will be the node containing the <see langword="ref"/> keyword.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ExpressionSyntaxExtensions.IsExpressionOfArgumentInDeconstruction(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax)">
|
||||
<summary>
|
||||
If this declaration or identifier is part of a deconstruction, find the deconstruction.
|
||||
If found, returns either an assignment expression or a foreach variable statement.
|
||||
Returns null otherwise.
|
||||
|
||||
copied from SyntaxExtensions.GetContainingDeconstruction
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ExpressionSyntaxExtensions.CastIfPossible(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.ITypeSymbol,System.Int32,Microsoft.CodeAnalysis.SemanticModel,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Adds to <paramref name="targetType"/> if it does not contain an anonymous
|
||||
type and binds to the same type at the given <paramref name="position"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ExpressionSyntaxExtensions.ShouldNameExpressionBeTreatedAsExpressionInsteadOfType(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SymbolInfo@,Microsoft.CodeAnalysis.ITypeSymbol@)">
|
||||
<summary>
|
||||
DeterminesCheck if we're in an interesting situation like this:
|
||||
<code>
|
||||
int i = 5;
|
||||
i. // -- here
|
||||
List ml = new List();
|
||||
</code>
|
||||
The problem is that "i.List" gets parsed as a type. In this case we need to try binding again as if "i" is
|
||||
an expression and not a type. In order to do that, we need to speculate as to what 'i' meant if it wasn't
|
||||
part of a local declaration's type.
|
||||
<para/>
|
||||
Another interesting case is something like:
|
||||
<code>
|
||||
stringList.
|
||||
await Test2();
|
||||
</code>
|
||||
Here "stringList.await" is thought of as the return type of a local function.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ITypeSymbolExtensions.GenerateExpressionSyntax(Microsoft.CodeAnalysis.ITypeSymbol,System.Boolean)">
|
||||
<paramref name="nameSyntax"><see langword="true"/> if only normal name-syntax nodes should be returned.
|
||||
<see langword="false"/> if special nodes (like predefined types) can be used.</paramref>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.ITypeSymbolExtensions.TypeSyntaxGeneratorVisitor.AddGlobalAlias(Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax)">
|
||||
<summary>
|
||||
We always unilaterally add "global::" to all named types/namespaces. This
|
||||
will then be trimmed off if possible by the simplifier.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Extensions.OperatorPrecedence">
|
||||
<summary>
|
||||
Operator precedence classes from section 7.3.1 of the C# language specification.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SemanticModelExtensions.DecomposeName(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax@,System.String@,System.Int32@)">
|
||||
<summary>
|
||||
Decomposes a name or member access expression into its component parts.
|
||||
</summary>
|
||||
<param name="expression">The name or member access expression.</param>
|
||||
<param name="qualifier">The qualifier (or left-hand-side) of the name expression. This may be null if there is no qualifier.</param>
|
||||
<param name="name">The name of the expression.</param>
|
||||
<param name="arity">The number of generic type parameters.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SemanticModelExtensions.GenerateNameForExpression(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Boolean,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Given an expression node, tries to generate an appropriate name that can be used for
|
||||
that expression.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SemanticModelExtensions.UnifiesNativeIntegers(Microsoft.CodeAnalysis.SemanticModel)">
|
||||
<summary>
|
||||
Returns whether or not <see cref="T:System.IntPtr"/> and <see cref="T:System.UIntPtr"/> are exactly identical to <see
|
||||
cref="T:System.IntPtr"/> and <see cref="T:System.UIntPtr"/> respectively.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SemanticModelExtensions.GenerateNameForArgument(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Given an argument node, tries to generate an appropriate name that can be used for that
|
||||
argument.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxKindExtensions.Contains(Microsoft.CodeAnalysis.CSharp.SyntaxKind[],Microsoft.CodeAnalysis.CSharp.SyntaxKind)">
|
||||
<summary>
|
||||
Determine if the given <see cref="T:Microsoft.CodeAnalysis.CSharp.SyntaxKind"/> array contains the given kind.
|
||||
</summary>
|
||||
<param name="kinds">Array to search</param>
|
||||
<param name="kind">Sought value</param>
|
||||
<returns>True if <paramref name = "kinds"/> contains the value<paramref name= "kind"/>.</returns>
|
||||
<remarks>PERF: Not using Array.IndexOf here because it results in a call to IndexOf on the
|
||||
default EqualityComparer for SyntaxKind.The default comparer for SyntaxKind is the
|
||||
ObjectEqualityComparer which results in boxing allocations.</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxNodeExtensions.GetAllPrecedingTriviaToPreviousToken(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.Text.SourceText,System.Boolean)">
|
||||
<summary>
|
||||
Returns all of the trivia to the left of this token up to the previous token (concatenates
|
||||
the previous token's trailing trivia and this token's leading trivia).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxNodeExtensions.GetRootConditionalAccessExpression(Microsoft.CodeAnalysis.SyntaxNode)">
|
||||
<summary>
|
||||
<inheritdoc cref="M:Microsoft.CodeAnalysis.LanguageService.ISyntaxFacts.GetRootConditionalAccessExpression(Microsoft.CodeAnalysis.SyntaxNode)"/>
|
||||
</summary>>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxNodeExtensions.GetEnclosingUsingDirectives(Microsoft.CodeAnalysis.SyntaxNode)">
|
||||
<summary>
|
||||
Returns the list of using directives that affect <paramref name="node"/>. The list will be returned in
|
||||
top down order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxNodeExtensions.ContainsInterleavedDirective(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Returns true if the passed in node contains an interleaved pp directive.
|
||||
|
||||
i.e. The following returns false:
|
||||
|
||||
void Goo() {
|
||||
#if true
|
||||
#endif
|
||||
}
|
||||
|
||||
#if true
|
||||
void Goo() {
|
||||
}
|
||||
#endif
|
||||
|
||||
but these return true:
|
||||
|
||||
#if true
|
||||
void Goo() {
|
||||
#endif
|
||||
}
|
||||
|
||||
void Goo() {
|
||||
#if true
|
||||
}
|
||||
#endif
|
||||
|
||||
#if true
|
||||
void Goo() {
|
||||
#else
|
||||
}
|
||||
#endif
|
||||
|
||||
i.e. the method returns true if it contains a PP directive that belongs to a grouping
|
||||
constructs (like #if/#endif or #region/#endregion), but the grouping construct isn't
|
||||
entirely contained within the span of the node.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxNodeExtensions.ContainsInterleavedDirective(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Similar to <see cref="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxNodeExtensions.ContainsInterleavedDirective(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken)"/> except that the span to check
|
||||
for interleaved directives can be specified separately to the node passed in.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxNodeExtensions.SplitNodesOnPreprocessorBoundaries``1(System.Collections.Generic.IEnumerable{``0},System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Breaks up the list of provided nodes, based on how they are interspersed with pp
|
||||
directives, into groups. Within these groups nodes can be moved around safely, without
|
||||
breaking any pp constructs.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxTokenExtensions.CouldBeKeyword(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Returns true if this token is something that looks like a C# keyword. This includes
|
||||
actual keywords, contextual keywords, and even 'var' and 'dynamic'
|
||||
</summary>
|
||||
<param name="token"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxTokenExtensions.IsFirstTokenOnLine(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.Text.SourceText)">
|
||||
<summary>
|
||||
Determines whether the given SyntaxToken is the first token on a line in the specified SourceText.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxTokenExtensions.GetAllTrailingTrivia(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Retrieves all trivia after this token, including it's trailing trivia and
|
||||
the leading trivia of the next token.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxTokenExtensions.FindLastTokenOfPartialGenericName(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Lexically, find the last token that looks like it's part of this generic name.
|
||||
</summary>
|
||||
<param name="genericIdentifier">The "name" of the generic identifier, last token before
|
||||
the "&"</param>
|
||||
<returns>The last token in the name</returns>
|
||||
<remarks>This is related to the code in SyntaxTreeExtensions.IsInPartiallyWrittenGeneric</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.SyntaxTriviaListExtensions.TakeRange(Microsoft.CodeAnalysis.SyntaxTriviaList,System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Takes an INCLUSIVE range of trivia from the trivia list.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.TypeSyntaxExtensions.IsTypeInferred(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SemanticModel)">
|
||||
<summary>
|
||||
Determines whether the specified TypeSyntax is actually 'var'.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.BasePropertyDeclarationSyntaxExtensions.TryGetSemicolonToken(Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax)">
|
||||
<summary>
|
||||
Available if <paramref name="node"/> is <see cref="T:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax"/> or <see cref="T:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.BasePropertyDeclarationSyntaxExtensions.TryWithSemicolonToken(Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Available if <paramref name="node"/> is <see cref="T:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax"/> or <see cref="T:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Extensions.BasePropertyDeclarationSyntaxExtensions.TryWithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax)">
|
||||
<summary>
|
||||
Available if <paramref name="node"/> is <see cref="T:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax"/> or <see cref="T:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Shared.Extensions.LanguageVersionExtensions.CSharpNext">
|
||||
<remarks>
|
||||
Corresponds to Microsoft.CodeAnalysis.CSharp.LanguageVersionFacts.CSharpNext.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.CSharpSemanticFacts.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxToken,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Returns the best symbols found that the provided token binds to. This is similar to <see
|
||||
cref="M:Microsoft.CodeAnalysis.ModelExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken)"/>, but sometimes employs
|
||||
heuristics to provide a better result for tokens that users conceptually think bind to things, but which the
|
||||
compiler does not necessarily return results for.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Utilities.FormattingRangeHelper">
|
||||
<summary>
|
||||
this help finding a range of tokens to format based on given ending token
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Utilities.SpeculationAnalyzer">
|
||||
<summary>
|
||||
Helper class to analyze the semantic effects of a speculated syntax node replacement on the parenting nodes.
|
||||
Given an expression node from a syntax tree and a new expression from a different syntax tree,
|
||||
it replaces the expression with the new expression to create a speculated syntax tree.
|
||||
It uses the original tree's semantic model to create a speculative semantic model and verifies that
|
||||
the syntax replacement doesn't break the semantics of any parenting nodes of the original expression.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Utilities.SpeculationAnalyzer.#ctor(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SemanticModel,System.Threading.CancellationToken,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Creates a semantic analyzer for speculative syntax replacement.
|
||||
</summary>
|
||||
<param name="expression">Original expression to be replaced.</param>
|
||||
<param name="newExpression">New expression to replace the original expression.</param>
|
||||
<param name="semanticModel">Semantic model of <paramref name="expression"/> node's syntax tree.</param>
|
||||
<param name="cancellationToken">Cancellation token.</param>
|
||||
<param name="skipVerificationForReplacedNode">
|
||||
True if semantic analysis should be skipped for the replaced node and performed starting from parent of the original and replaced nodes.
|
||||
This could be the case when custom verifications are required to be done by the caller or
|
||||
semantics of the replaced expression are different from the original expression.
|
||||
</param>
|
||||
<param name="failOnOverloadResolutionFailuresInOriginalCode">
|
||||
True if semantic analysis should fail when any of the invocation expression ancestors of <paramref name="expression"/> in original code has overload resolution failures.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Utilities.SpeculationAnalyzer.ReplacementChangesSemanticsOfUnchangedLambda(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax)">
|
||||
<summary>
|
||||
Determines whether performing the syntax replacement in one of the sibling nodes of the given lambda expressions will change the lambda binding semantics.
|
||||
This is done by first determining the lambda parameters whose type differs in the replaced lambda node.
|
||||
For each of these parameters, we find the descendant identifier name nodes in the lambda body and check if semantics of any of the parenting nodes of these
|
||||
identifier nodes have changed in the replaced lambda.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Utilities.SpeculationAnalyzer.ReplacementBreaksBoxingInConditionalExpression(Microsoft.CodeAnalysis.TypeInfo,Microsoft.CodeAnalysis.TypeInfo,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax)">
|
||||
<summary>
|
||||
Checks if the conversion might change the resultant boxed type.
|
||||
Similar boxing checks are performed elsewhere, but in this case we need to perform the check on the entire conditional expression.
|
||||
This will make sure the resultant cast is proper for the type of the conditional expression.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Utilities.TypeStyleResult.IsStylePreferred">
|
||||
<summary>
|
||||
Whether or not converting would transition the code to the style the user prefers. i.e. if the user likes
|
||||
<c>var</c> for everything, and you have <c>int i = 0</c> then <see cref="F:Microsoft.CodeAnalysis.CSharp.Utilities.TypeStyleResult.IsStylePreferred"/> will be
|
||||
<see langword="true"/>. However, if the user likes <c>var</c> for everything and you have <c>var i = 0</c>,
|
||||
then it's still possible to convert that, it would just be <see langword="false"/> for
|
||||
<see cref="F:Microsoft.CodeAnalysis.CSharp.Utilities.TypeStyleResult.IsStylePreferred"/> because it goes against the user's preferences.
|
||||
</summary>
|
||||
<remarks>
|
||||
<para>In general, most features should only convert the type if <see cref="F:Microsoft.CodeAnalysis.CSharp.Utilities.TypeStyleResult.IsStylePreferred"/> is
|
||||
<see langword="true"/>. The one exception is the refactoring, which is explicitly there to still let people
|
||||
convert things quickly, even if it's going against their stated style.</para>
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Utilities.CSharpTypeStyleHelper.State.IsTypeApparentInDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.CodeStyle.TypeStyle.UseVarPreference,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Returns true if type information could be gleaned by simply looking at the given statement.
|
||||
This typically means that the type name occurs in right hand side of an assignment.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Utilities.CSharpTypeStyleHelper.State.IsPredefinedTypeInDeclaration(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SemanticModel)">
|
||||
<summary>
|
||||
checks if the type represented by the given symbol is one of the
|
||||
simple types defined in the compiler.
|
||||
</summary>
|
||||
<remarks>
|
||||
From the IDE perspective, we also include object and string to be simplified
|
||||
to var. <see cref="M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPredefinedType(Microsoft.CodeAnalysis.CSharp.SyntaxKind)"/> considers string
|
||||
and object but the compiler's implementation of IsIntrinsicType does not.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Utilities.CSharpTypeStyleHelper.State.IsMadeOfSpecialTypes(Microsoft.CodeAnalysis.ITypeSymbol)">
|
||||
<summary>
|
||||
Returns true for type that are arrays/nullable/pointer types of special types
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Utilities.CSharpUseExplicitTypeHelper.AssignmentSupportsStylePreference(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Simplification.CSharpSimplifierOptions,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Analyzes the assignment expression and rejects a given declaration if it is unsuitable for explicit typing.
|
||||
</summary>
|
||||
<returns>
|
||||
false, if explicit typing cannot be used.
|
||||
true, otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CSharp.Utilities.CSharpUseImplicitTypeHelper.AssignmentSupportsStylePreference(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Simplification.CSharpSimplifierOptions,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Analyzes the assignment expression and rejects a given declaration if it is unsuitable for implicit typing.
|
||||
</summary>
|
||||
<returns>
|
||||
false, if implicit typing cannot be used.
|
||||
true, otherwise.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CSharp.Editing.CSharpImportAdder.ConflictFinder">
|
||||
<summary>
|
||||
Walks the portion of the tree we're adding imports to looking to see if those imports could likely cause
|
||||
conflicts with existing code. Note: this is a best-effort basis, and the goal is to catch reasonable
|
||||
conflicts effectively. There may be cases that do slip through that we can adjust for in the future. Those
|
||||
cases should be assessed to see how reasonable/likely they are. I.e. if it's just a hypothetical case with
|
||||
no users being hit, then that's far less important than if we have a reasonable coding pattern that would be
|
||||
impacted by adding an import to a normal namespace.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Editing.CSharpImportAdder.ConflictFinder._importedTypes">
|
||||
<summary>
|
||||
A mapping containing the simple names and arity of all imported types, mapped to the import that they're
|
||||
brought in by.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CSharp.Editing.CSharpImportAdder.ConflictFinder._importedExtensionMethods">
|
||||
<summary>
|
||||
A mapping containing the simple names of all imported extension methods, mapped to the import that
|
||||
they're brought in by. This doesn't keep track of arity because methods can be called with type
|
||||
arguments.
|
||||
</summary>
|
||||
<remarks>
|
||||
We could consider adding more information here (for example the min/max number of args that this can be
|
||||
called with). That could then be used to check if there could be a conflict. However, that's likely
|
||||
more complexity than we need currently. But it is always something we can do in the future.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpWorkspaceResources.Only_attributes_constructor_initializers_expressions_or_statements_can_be_made_explicit">
|
||||
<summary>Only attributes, constructor initializers, expressions or statements can be made explicit</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpWorkspaceResources.Implement_Interface">
|
||||
<summary>Implement Interface</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpWorkspaceResources.Remove_and_Sort_Usings">
|
||||
<summary>R&emove and Sort Usings</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpWorkspaceResources.Sort_Usings">
|
||||
<summary>&Sort Usings</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpWorkspaceResources.CSharp_Formatting_Rules">
|
||||
<summary>C# Formatting Rules</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpWorkspaceResources.CSharp_Coding_Conventions">
|
||||
<summary>C# Coding Conventions</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.var_preferences">
|
||||
<summary>var preferences</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.Expression_bodied_members">
|
||||
<summary>Expression-bodied members</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.Pattern_matching_preferences">
|
||||
<summary>Pattern matching preferences</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.Null_checking_preferences">
|
||||
<summary>Null-checking preferences</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.Code_block_preferences">
|
||||
<summary>Code-block preferences</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.using_directive_preferences">
|
||||
<summary>'using' directive preferences</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.Expected_string_or_char_literal">
|
||||
<summary>Expected string or char literal</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.EditorConfig_option_0_contains_unrecognized_value_1">
|
||||
<summary>EditorConfig option '{0}' contains unrecognized value '{1}'</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.Indentation_preferences">
|
||||
<summary>Indentation preferences</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.Space_preferences">
|
||||
<summary>Space preferences</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpCompilerExtensionsResources.Wrapping_preferences">
|
||||
<summary>Wrapping preferences</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.CSharp.CSharpWorkspaceExtensionsResources.EmptyResource">
|
||||
<summary>Remove this value when another is added.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.CodeStyle.PreferBracesPreference">
|
||||
<summary>
|
||||
Defines the known values for <see cref="F:Microsoft.CodeAnalysis.CSharp.CodeStyle.CSharpCodeStyleOptions.PreferBraces"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CodeStyle.PreferBracesPreference.None">
|
||||
<summary>
|
||||
Braces are allowed, but not preferred.
|
||||
</summary>
|
||||
<remarks>
|
||||
<para>The value <c>0</c> is important for serialization compatibility in
|
||||
<see cref="M:Microsoft.CodeAnalysis.CodeStyle.CodeStyleOption2`1.FromXElement(System.Xml.Linq.XElement)"/>. Prior to the use of this enum, the serialized value
|
||||
was the <see cref="T:System.Boolean"/> value <see langword="false"/>.</para>
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CodeStyle.PreferBracesPreference.Always">
|
||||
<summary>
|
||||
<para>Braces are preferred where allowed except in the following limited situations:</para>
|
||||
|
||||
<list type="bullet">
|
||||
<item><description>Braces are not required for the embedded statement of an <c>else</c> clause when the embedded statement is an <c>if</c> statement.</description></item>
|
||||
<item><description>In a sequence of consecutive <c>using</c> statements, only the last statement requires braces.</description></item>
|
||||
<item><description>In a sequence of consecutive <c>lock</c> statements, only the last statement requires braces.</description></item>
|
||||
<item><description>In a sequence of consecutive <c>fixed</c> statements, only the last statement requires braces.</description></item>
|
||||
</list>
|
||||
</summary>
|
||||
<remarks>
|
||||
<para>The value <c>1</c> is important for serialization compatibility in
|
||||
<see cref="M:Microsoft.CodeAnalysis.CodeStyle.CodeStyleOption2`1.FromXElement(System.Xml.Linq.XElement)"/>. Prior to the use of this enum, the serialized value
|
||||
was the <see cref="T:System.Boolean"/> value <see langword="true"/>.</para>
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.CodeStyle.PreferBracesPreference.WhenMultiline">
|
||||
<summary>
|
||||
<para>Braces are always allowed, and generally preferred except in limited situations involving single-line
|
||||
statements and expressions:</para>
|
||||
|
||||
<list type="bullet">
|
||||
<item><description>Braces may be omitted in the cases described for <see cref="F:Microsoft.CodeAnalysis.CodeStyle.PreferBracesPreference.Always"/>.</description></item>
|
||||
<item><description>Braces may be omitted when the entire statement is placed on one line.</description></item>
|
||||
<item><description>For a statement that contains one or more embedded statements, braces may be omitted when
|
||||
every embedded statement fits on one line, and the part preceding the embedded statement is placed on one
|
||||
line. If any embedded statement uses braces, braces are preferred for all embedded statements of the same
|
||||
parent statement. For the purposes of evaluating this rule, if the embedded statement following an
|
||||
<c>else</c> keyword is an if statement, the embedded statements of the nested if statement are treated as
|
||||
children of the parent statement of the <c>else</c> keyword.</description></item>
|
||||
</list>
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.CSharp.dll
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.CSharp.dll
Normal file
Binary file not shown.
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.CSharp.pdb
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.CSharp.pdb
Normal file
Binary file not shown.
46661
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.CSharp.xml
Normal file
46661
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.CSharp.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Scripting.dll
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Scripting.dll
Normal file
Binary file not shown.
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Scripting.pdb
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Scripting.pdb
Normal file
Binary file not shown.
1227
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Scripting.xml
Normal file
1227
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Scripting.xml
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,692 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
Microsoft.CodeAnalysis.VisualBasic.Workspaces
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Classification.ClassificationHelpers.GetClassification(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Return the classification type associated with this token.
|
||||
</summary>
|
||||
<param name="token">The token to be classified.</param>
|
||||
<returns>The classification type for the token</returns>
|
||||
<remarks></remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Classification.ClassificationHelpers.IsControlKeywordKind(Microsoft.CodeAnalysis.VisualBasic.SyntaxKind)">
|
||||
<summary>
|
||||
Determine if the kind represents a control keyword
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Classification.ClassificationHelpers.IsControlStatementKind(Microsoft.CodeAnalysis.VisualBasic.SyntaxKind)">
|
||||
<summary>
|
||||
Determine if the kind represents a control statement
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.CodeGeneration.VisualBasicCodeGenerationHelpers.GetReuseableSyntaxNodeForSymbol``1(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.CodeGeneration.CodeGenerationContextInfo)">
|
||||
<summary>
|
||||
Try use the existing syntax node and generate a new syntax node for the given <param name="symbol"/>.
|
||||
Note: the returned syntax node might be modified, which means its parent information might be missing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.FindSymbols.VisualBasicDeclaredSymbolInfoFactoryService.GetSuffix(Microsoft.CodeAnalysis.VisualBasic.Syntax.ParameterListSyntax)">
|
||||
<summary>
|
||||
Builds up the suffix to show for something with parameters in navigate-to.
|
||||
While it would be nice to just use the compiler SymbolDisplay API for this,
|
||||
it would be too expensive as it requires going back to Symbols (which requires
|
||||
creating compilations, etc.) in a perf sensitive area.
|
||||
|
||||
So, instead, we just build a reasonable suffix using the pure syntax that a
|
||||
user provided. That means that if they wrote "Method(System.Int32 i)" we'll
|
||||
show that as "Method(System.Int32)" Not "Method(Integer)". Given that this Is
|
||||
actually what the user wrote, And it saves us from ever having to go back to
|
||||
symbols/compilations, this Is well worth it, even if it does mean we have to
|
||||
create our own 'symbol display' logic here.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.VisualBasic.Formatting.FormattingResult">
|
||||
<summary>
|
||||
this holds onto changes made by formatting engine.
|
||||
|
||||
currently it only has an ability to apply those changes to buffer. but it could be expanded to
|
||||
support other cases as well such as tree or etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.VisualBasic.Formatting.TriviaDataFactory">
|
||||
<summary>
|
||||
trivia factory.
|
||||
|
||||
it will cache some commonly used trivia to reduce memory footprint and heap allocation
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.VisualBasic.Formatting.TriviaDataFactory.ComplexTrivia">
|
||||
<summary>
|
||||
represents a general trivia between two tokens. slightly more expensive than others since it
|
||||
needs to calculate stuff unlike other cases
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.VisualBasic.Formatting.TriviaDataFactory.LineContinuationTrivia">
|
||||
<summary>
|
||||
represents a general trivia between two tokens. slightly more expensive than others since it
|
||||
needs to calculate stuff unlike other cases
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Recommendations.VisualBasicRecommendationService.VisualBasicRecommendationServiceRunner.FilterEventsAndGeneratedSymbols(Microsoft.CodeAnalysis.VisualBasic.Syntax.MemberAccessExpressionSyntax,Microsoft.CodeAnalysis.ISymbol)">
|
||||
<summary>
|
||||
In MemberAccessExpression Contexts, filter out event symbols (except for NameOf context), except inside AddRemoveHandler Statements
|
||||
Also, filter out any implicitly declared members generated by event declaration or property declaration
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.VisualBasic.Rename.VisualBasicRenameRewriterLanguageService.RenameRewriter._isRenamingInStrings">
|
||||
<summary>
|
||||
Flag indicating if we should perform a rename inside string literals.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.VisualBasic.Rename.VisualBasicRenameRewriterLanguageService.RenameRewriter._isRenamingInComments">
|
||||
<summary>
|
||||
Flag indicating if we should perform a rename inside comment trivia.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.VisualBasic.Rename.VisualBasicRenameRewriterLanguageService.RenameRewriter._stringAndCommentTextSpans">
|
||||
<summary>
|
||||
A map from spans of tokens needing rename within strings or comments to an optional
|
||||
set of specific sub-spans within the token span that
|
||||
have <see cref="F:Microsoft.CodeAnalysis.VisualBasic.Rename.VisualBasicRenameRewriterLanguageService.RenameRewriter._originalText"/> matches and should be renamed.
|
||||
If this sorted set is Nothing, it indicates that sub-spans to rename within the token span
|
||||
are not available, and a regex match should be performed to rename
|
||||
all <see cref="F:Microsoft.CodeAnalysis.VisualBasic.Rename.VisualBasicRenameRewriterLanguageService.RenameRewriter._originalText"/> matches within the span.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Rename.VisualBasicRenameRewriterLanguageService.GetExpansionTargetForLocation(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Gets the top most enclosing statement as target to call MakeExplicit on.
|
||||
It's either the enclosing statement, or if this statement is inside of a lambda expression, the enclosing
|
||||
statement of this lambda.
|
||||
</summary>
|
||||
<param name="token">The token to get the complexification target for.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Rename.VisualBasicRenameRewriterLanguageService.GetSemanticModelForNode(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SemanticModel)">
|
||||
<summary>
|
||||
Gets the semantic model for the given node.
|
||||
If the node belongs to the syntax tree of the original semantic model, then returns originalSemanticModel.
|
||||
Otherwise, returns a speculative model.
|
||||
The assumption for the later case is that span start position of the given node in it's syntax tree is same as
|
||||
the span start of the original node in the original syntax tree.
|
||||
</summary>
|
||||
<param name="node"></param>
|
||||
<param name="originalSemanticModel"></param>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.VisualBasic.Simplification.VisualBasicInferredMemberNameReducer">
|
||||
<summary>
|
||||
Complexify makes inferred names explicit for tuple elements and anonymous type members. This
|
||||
class considers which ones of those can be simplified (after the refactoring was done).
|
||||
If the inferred name of the member matches, the explicit name (from Complexifiy) can be removed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Simplification.Simplifiers.AbstractVisualBasicSimplifier`2.GetPredefinedKeywordKind(Microsoft.CodeAnalysis.SpecialType)">
|
||||
<summary>
|
||||
Returns the predefined keyword kind for a given special type.
|
||||
</summary>
|
||||
<param name="type">The specialtype of this type.</param>
|
||||
<returns>The keyword kind for a given special type, or SyntaxKind.None if the type name is not a predefined type.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Simplification.Simplifiers.AbstractVisualBasicSimplifier`2.IsInCrefReferenceForPredefinedTypeInMemberAccessContext(Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax)">
|
||||
<Remarks>
|
||||
Note: This helper exists solely to work around Bug 1012713. Once it is fixed, this helper must be
|
||||
deleted in favor of <see cref="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ExpressionSyntaxExtensions.InsideCrefReference(Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax)"/>.
|
||||
Context: Bug 1012713 makes it so that the compiler doesn't support <c>PredefinedType.Member</c> inside crefs
|
||||
(i.e. System.Int32.MaxValue is supported but Integer.MaxValue isn't). Until this bug is fixed, we don't
|
||||
support simplifying types names Like System.Int32.MaxValue to Integer.MaxValue.
|
||||
</Remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Simplification.Simplifiers.NameSimplifier.IsPartOfNamespaceDeclarationName(Microsoft.CodeAnalysis.SyntaxNode)">
|
||||
<summary>
|
||||
Checks if the SyntaxNode is a name of a namespace declaration. To be a namespace name, the syntax
|
||||
must be parented by an namespace declaration and the node itself must be equal to the declaration's Name
|
||||
property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Simplification.VisualBasicSimplificationService.NodesAndTokensToReduceComputer.Compute(Microsoft.CodeAnalysis.SyntaxNode,System.Func{Microsoft.CodeAnalysis.SyntaxNodeOrToken,System.Boolean})">
|
||||
<summary>
|
||||
Computes a list of nodes and tokens that need to be reduced in the given syntax root.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.VisualBasic.Utilities.SpeculationAnalyzer">
|
||||
<summary>
|
||||
Helper class to analyze the semantic effects of a speculated syntax node replacement on the parenting nodes.
|
||||
Given an expression node from a syntax tree and a new expression from a different syntax tree,
|
||||
it replaces the expression with the new expression to create a speculated syntax tree.
|
||||
It uses the original tree's semantic model to create a speculative semantic model and verifies that
|
||||
the syntax replacement doesn't break the semantics of any parenting nodes of the original expression.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Utilities.SpeculationAnalyzer.#ctor(Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SemanticModel,System.Threading.CancellationToken,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Creates a semantic analyzer for speculative syntax replacement.
|
||||
</summary>
|
||||
<param name="expression">Original expression to be replaced.</param>
|
||||
<param name="newExpression">New expression to replace the original expression.</param>
|
||||
<param name="semanticModel">Semantic model of <paramref name="expression"/> node's syntax tree.</param>
|
||||
<param name="cancellationToken">Cancellation token.</param>
|
||||
<param name="skipVerificationForReplacedNode">
|
||||
True if semantic analysis should be skipped for the replaced node and performed starting from parent of the original and replaced nodes.
|
||||
This could be the case when custom verifications are required to be done by the caller or
|
||||
semantics of the replaced expression are different from the original expression.
|
||||
</param>
|
||||
<param name="failOnOverloadResolutionFailuresInOriginalCode">
|
||||
True if semantic analysis should fail when any of the invocation expression ancestors of <paramref name="expression"/> in original code has overload resolution failures.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Utilities.SpeculationAnalyzer.ReplacementChangesSemanticsOfUnchangedLambda(Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax)">
|
||||
<summary>
|
||||
Determines whether performing the syntax replacement in one of the sibling nodes of the given lambda expressions will change the lambda binding semantics.
|
||||
This is done by first determining the lambda parameters whose type differs in the replaced lambda node.
|
||||
For each of these parameters, we find the descendant identifier name nodes in the lambda body and check if semantics of any of the parenting nodes of these
|
||||
identifier nodes have changed in the replaced lambda.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.VisualBasic.Utilities.ModifierCollectionFacts">
|
||||
<summary>
|
||||
A helper class that is constructed giving a set of modifiers. It takes these modifiers, and
|
||||
breaks them down into separate categories, as well as determines what type of declaration is
|
||||
being forced if certain modifiers are present.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.VisualBasic.VisualBasicSyntaxTreeFactoryService.ParsedSyntaxTree">
|
||||
<summary>
|
||||
Parsed <see cref="T:Microsoft.CodeAnalysis.VisualBasic.VisualBasicSyntaxTree"/> that creates <see cref="T:Microsoft.CodeAnalysis.Text.SourceText"/> with given encoding And checksum algorithm.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.DirectiveSyntaxExtensions.GetMatchingStartOrEndDirective(Microsoft.CodeAnalysis.VisualBasic.Syntax.DirectiveTriviaSyntax,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Given a starting or ending directive, return the matching directive, if it exists. For directives that live
|
||||
the "middle" of a start/end pair, such as #ElseIf or #Else, this method will throw.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.DirectiveSyntaxExtensions.GetMatchingConditionalDirectives(Microsoft.CodeAnalysis.VisualBasic.Syntax.DirectiveTriviaSyntax,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Given a conditional directive (#If, #ElseIf, #Else, or #End If), returns a IEnumerable of all directives in
|
||||
the set.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ExpressionSyntaxExtensions.DecomposeName(Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax@,System.String@,System.Int32@)">
|
||||
<summary>
|
||||
Decompose a name or member access expression into its component parts.
|
||||
</summary>
|
||||
<param name="expression">The name or member access expression.</param>
|
||||
<param name="qualifier">The qualifier (or left-hand-side) of the name expression. This may be null if there is no qualifier.</param>
|
||||
<param name="name">The name of the expression.</param>
|
||||
<param name="arity">The number of generic type parameters.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SemanticModelExtensions.GenerateNameForExpression(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax,System.Boolean,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Given an expression node, tries to generate an appropriate name that can be used for
|
||||
that expression.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxNodeExtensions.SplitNodesOnPreprocessorBoundaries``1(System.Collections.Generic.IEnumerable{``0},System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Breaks up the list of provided nodes, based on how they are
|
||||
interspersed with pp directives, into groups. Within these groups
|
||||
nodes can be moved around safely, without breaking any pp
|
||||
constructs.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxNodeExtensions.ContainsInterleavedDirective(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Returns true if the passed in node contains an interleaved pp
|
||||
directive.
|
||||
|
||||
i.e. The following returns false:
|
||||
|
||||
void Goo() {
|
||||
#if true
|
||||
#endif
|
||||
}
|
||||
|
||||
#if true
|
||||
void Goo() {
|
||||
}
|
||||
#endif
|
||||
|
||||
but these return true:
|
||||
|
||||
#if true
|
||||
void Goo() {
|
||||
#endif
|
||||
}
|
||||
|
||||
void Goo() {
|
||||
#if true
|
||||
}
|
||||
#endif
|
||||
|
||||
#if true
|
||||
void Goo() {
|
||||
#else
|
||||
}
|
||||
#endif
|
||||
|
||||
i.e. the method returns true if it contains a PP directive that
|
||||
belongs to a grouping constructs (like #if/#endif or
|
||||
#region/#endregion), but the grouping construct isn't entirely c
|
||||
contained within the span of the node.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxNodeExtensions.IsExecutableBlock(Microsoft.CodeAnalysis.SyntaxNode)">
|
||||
<summary>
|
||||
Returns true if this is a block that can contain multiple executable statements. i.e.
|
||||
this node is the VB equivalent of a BlockSyntax in C#.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxNodeExtensions.GetRootConditionalAccessExpression(Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax)">
|
||||
<summary>
|
||||
<see cref="M:Microsoft.CodeAnalysis.LanguageService.ISyntaxFacts.GetRootConditionalAccessExpression(Microsoft.CodeAnalysis.SyntaxNode)"/>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxNodeExtensions.GetBlockFromBegin(Microsoft.CodeAnalysis.SyntaxNode)">
|
||||
<summary>
|
||||
If "node" is the begin statement of a declaration block, return that block, otherwise
|
||||
return node.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxTokenExtensions.IsChildToken``1(Microsoft.CodeAnalysis.SyntaxToken,System.Func{``0,Microsoft.CodeAnalysis.SyntaxToken})">
|
||||
<summary>
|
||||
Returns true if is a given token is a child token of a certain type of parent node.
|
||||
</summary>
|
||||
<typeparam name="TParent">The type of the parent node.</typeparam>
|
||||
<param name="token">The token that we are testing.</param>
|
||||
<param name="childGetter">A function that, when given the parent node, returns the child token we are interested in.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxTokenExtensions.IsChildSeparatorToken``2(Microsoft.CodeAnalysis.SyntaxToken,System.Func{``0,Microsoft.CodeAnalysis.SeparatedSyntaxList{``1}})">
|
||||
<summary>
|
||||
Returns true if is a given token is a separator token in a given parent list.
|
||||
</summary>
|
||||
<typeparam name="TParent">The type of the parent node containing the separated list.</typeparam>
|
||||
<param name="token">The token that we are testing.</param>
|
||||
<param name="childGetter">A function that, when given the parent node, returns the separated list.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxTokenExtensions.IsFirstTokenOnLine(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Determines whether the given SyntaxToken is the first token on a line
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxTreeExtensions.IsLastTokenOfStatementWithEndOfLine(Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
check whether given token is the last token of a statement that ends with end of line trivia or an elastic trivia
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxTreeExtensions.IsLastTokenOfStatement(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,Microsoft.CodeAnalysis.VisualBasic.Syntax.StatementSyntax@)">
|
||||
<summary>
|
||||
check whether given token is the last token of a statement by walking up the spine
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxTreeExtensions.FindTriviaToLeft(Microsoft.CodeAnalysis.SyntaxTree,System.Int32,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Finds the token being touched by this position. Unlike the normal FindTrivia helper, this helper will prefer
|
||||
trivia to the left rather than the right if the position is on the border.
|
||||
</summary>
|
||||
<param name="syntaxTree">The syntaxTree to search.</param>
|
||||
<param name="position">The position to find trivia.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.IsStatementTerminatingTokenVisitor">
|
||||
<summary>
|
||||
A visitor that determines if the targetToken passed in the constructor can be considered
|
||||
the end of the visited statement. Tokens in the token stream of the file after
|
||||
targetToken are ignored. This means that in some cases, say "Throw" vs. "Throw x" there
|
||||
is more than one keyword that could terminate the statement.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.SyntaxTokenExtensions.HasNonContinuableEndOfLineBeforePosition(Microsoft.CodeAnalysis.SyntaxToken,System.Int32,System.Boolean)">
|
||||
<summary>
|
||||
We need to check for EOL trivia not preceded by LineContinuation trivia.
|
||||
|
||||
This is slightly complicated since we need to get TrailingTrivia from missing tokens
|
||||
and then get LeadingTrivia for the next non-missing token.
|
||||
|
||||
Note that this is even more complicated in the case that we're in structured trivia
|
||||
because we might be part of the leading trivia to the next non-missing token.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.SyntaxTreeExtensions.IsTypeDeclarationContext(Microsoft.CodeAnalysis.SyntaxTree,System.Int32,Microsoft.CodeAnalysis.SyntaxToken,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
The specified position is where we can declare some .NET type, such as classes, structures, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.SyntaxTreeExtensions.IsTypeMemberDeclarationKeywordContext(Microsoft.CodeAnalysis.SyntaxTree,System.Int32,Microsoft.CodeAnalysis.SyntaxToken,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
The specified position is where a keyword can go like "Sub", "Function", etc. in a classes, structures, and modules
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.SyntaxTreeExtensions.IsInterfaceMemberDeclarationKeywordContext(Microsoft.CodeAnalysis.SyntaxTree,System.Int32,Microsoft.CodeAnalysis.SyntaxToken,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
The specified position is where a keyword can go like "Sub", "Function" in an interface
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.SyntaxTreeExtensions.IsTypeDeclarationKeywordContext(Microsoft.CodeAnalysis.SyntaxTree,System.Int32,Microsoft.CodeAnalysis.SyntaxToken,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
The specified position is where we can declare some .NET type, such as classes, structures, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.SyntaxTreeExtensions.IsSingleLineStatementContext(Microsoft.CodeAnalysis.SyntaxTree,System.Int32,Microsoft.CodeAnalysis.SyntaxToken,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
The specified position is where I could start a statement in a place where exactly one
|
||||
statement could exist.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.SyntaxTreeExtensions.IsMultiLineStatementStartContext(Microsoft.CodeAnalysis.SyntaxTree,System.Int32,Microsoft.CodeAnalysis.SyntaxToken,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
The specified position is where I could start a statement in a place where one or more
|
||||
statements could exist.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.SyntaxTreeExtensions.IsAfterStatementOfKind(Microsoft.CodeAnalysis.SyntaxTree,System.Int32,Microsoft.CodeAnalysis.SyntaxToken,System.Threading.CancellationToken,Microsoft.CodeAnalysis.VisualBasic.SyntaxKind[])">
|
||||
<summary>
|
||||
The specified position is immediately following a statement of one of the given kinds.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.SyntaxTreeExtensions.GetExpressionTerminatingToken(Microsoft.CodeAnalysis.SyntaxNode)">
|
||||
<summary>
|
||||
Given a syntax node, this returns the token that is the "end" token that ends this
|
||||
expression.
|
||||
</summary>
|
||||
<param name="expression">The expression to get the last token of.</param>
|
||||
<returns>The last token, or SyntaxKind.None if the last token is missing.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.VisualBasicSyntaxContext">
|
||||
<summary>
|
||||
Helper structure to store some context about a position for keyword completion
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.VisualBasicSyntaxContext.FollowsEndOfStatement">
|
||||
<summary>
|
||||
True if position is after a colon, or an
|
||||
EOL that was not preceded by an explicit line continuation
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.VisualBasicSyntaxContext.MustBeginNewStatement">
|
||||
<summary>
|
||||
True if position is definitely the beginning of a new statement (after a colon
|
||||
or two line breaks).
|
||||
|
||||
Dim q = From a In args
|
||||
$1
|
||||
$2
|
||||
|
||||
$1 may continue the previous statement, but $2 definitely starts a
|
||||
new statement since there are two line breaks before it.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.VisualBasicSyntaxTreeExtensions.IsAfterStatementOfKind(Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery.VisualBasicSyntaxContext,Microsoft.CodeAnalysis.VisualBasic.SyntaxKind[])">
|
||||
<summary>
|
||||
The specified position is immediately following a statement of one of the given kinds.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.IMethodSymbolExtensions.IsAggregateFunction(Microsoft.CodeAnalysis.IMethodSymbol)">
|
||||
<summary>
|
||||
Determines whether the given IMethodSymbol can be used as an aggregate function
|
||||
in a Group..By..Into or an Aggregate..Into clause.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxKindExtensions.Contains(Microsoft.CodeAnalysis.VisualBasic.SyntaxKind[],Microsoft.CodeAnalysis.VisualBasic.SyntaxKind)">
|
||||
<summary>
|
||||
Determine if the given <see cref="T:Microsoft.CodeAnalysis.VisualBasic.SyntaxKind"/> array contains the given kind.
|
||||
</summary>
|
||||
<param name="kinds">Array to search</param>
|
||||
<param name="kind">Sought value</param>
|
||||
<returns>True if <paramref name="kinds"/> contains the value <paramref name="kind"/>.</returns>
|
||||
<remarks>PERF: Not using Array.IndexOf here because it results in a call to IndexOf on the default EqualityComparer for SyntaxKind. The default comparer for SyntaxKind is
|
||||
the ObjectEqualityComparer which results in boxing allocations.</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.Extensions.SyntaxKindExtensions.IndexOf(Microsoft.CodeAnalysis.VisualBasic.SyntaxKind[],Microsoft.CodeAnalysis.VisualBasic.SyntaxKind,System.Int32)">
|
||||
<summary>
|
||||
Locate the given <see cref="T:Microsoft.CodeAnalysis.VisualBasic.SyntaxKind"/> in an array starting at the given index.
|
||||
</summary>
|
||||
<param name="kinds">Array to search</param>
|
||||
<param name="kind">Sought value</param>
|
||||
<param name="start">Starting index</param>
|
||||
<returns>The index of the first occurrence of <paramref name="kind"/> in <paramref name="kinds"/>.</returns>
|
||||
<remarks>PERF: Not using Array.IndexOf here because it results in a call to IndexOf on the default EqualityComparer for SyntaxKind. The default comparer for SyntaxKind is
|
||||
the ObjectEqualityComparer which results in boxing allocations.</remarks>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.VisualBasic.Editing.VisualBasicImportAdder.ConflictFinder._importedTypesAndNamespaces">
|
||||
<summary>
|
||||
A mapping containing the simple names And arity of all namespace members, mapped to the import that
|
||||
they're brought in by.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.VisualBasic.Editing.VisualBasicImportAdder.ConflictFinder._importedMembers">
|
||||
<summary>
|
||||
A mapping containing the simple names of all members, mapped to the import that they're brought in by.
|
||||
Members are imported in through modules in vb. This doesn't keep track of arity because methods can be
|
||||
called with type arguments.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.CodeAnalysis.VisualBasic.Editing.VisualBasicImportAdder.ConflictFinder._importedExtensionMethods">
|
||||
<summary>
|
||||
A mapping containing the simple names of all extension methods, mapped to the import that they're
|
||||
brought in by. This doesn't keep track of arity because methods can be called with type arguments.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.VisualBasic.VisualBasicSymbolDeclarationService.GetDeclarations(Microsoft.CodeAnalysis.ISymbol)">
|
||||
<summary>
|
||||
Get the declaring syntax node for a Symbol. Unlike the DeclaringSyntaxReferences property,
|
||||
this function always returns a block syntax, if there is one.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Only_attributes_expressions_or_statements_can_be_made_explicit">
|
||||
<summary>Only attributes, expressions or statements can be made explicit</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.event_">
|
||||
<summary><event></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.handler">
|
||||
<summary><handler></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_expression_to_be_evaluated_and_converted">
|
||||
<summary>The expression to be evaluated and converted.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_name_of_the_data_type_to_which_the_value_of_expression_will_be_converted">
|
||||
<summary>The name of the data type to which the value of expression will be converted.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.expression">
|
||||
<summary><expression></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.typeName">
|
||||
<summary><typeName></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Associates_an_event_with_an_event_handler_delegate_or_lambda_expression_at_run_time">
|
||||
<summary>Associates an event with an event handler, delegate or lambda expression at run time.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_event_to_associate_an_event_handler_delegate_or_lambda_expression_with">
|
||||
<summary>The event to associate an event handler, delegate or lambda expression with.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_event_handler_to_associate_with_the_event_This_may_take_the_form_of_AddressOf_eventHandler_delegate_lambdaExpression">
|
||||
<summary>The event handler to associate with the event. This may take the form of { AddressOf <eventHandler> | <delegate> | <lambdaExpression> }.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.If_expression_evaluates_to_a_reference_or_Nullable_value_that_is_not_Nothing_the_function_returns_that_value_Otherwise_it_calculates_and_returns_expressionIfNothing">
|
||||
<summary>If <expression> evaluates to a reference or Nullable value that is not Nothing, the function returns that value. Otherwise, it calculates and returns <expressionIfNothing>.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Returned_if_it_evaluates_to_a_reference_or_nullable_type_that_is_not_Nothing">
|
||||
<summary>Returned if it evaluates to a reference or nullable type that is not Nothing.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Evaluated_and_returned_if_expression_evaluates_to_Nothing">
|
||||
<summary>Evaluated and returned if <expression> evaluates to Nothing.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.expressionIfNothing">
|
||||
<summary><expressionIfNothing></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Returns_the_result_of_explicitly_converting_an_expression_to_a_specified_data_type">
|
||||
<summary>Returns the result of explicitly converting an expression to a specified data type.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Introduces_a_type_conversion_operation_similar_to_CType_The_difference_is_that_CType_succeeds_as_long_as_there_is_a_valid_conversion_whereas_DirectCast_requires_that_one_type_inherit_from_or_implement_the_other_type">
|
||||
<summary>Introduces a type conversion operation similar to CType. The difference is that CType succeeds as long as there is a valid conversion, whereas DirectCast requires that one type inherit from or implement the other type.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_type_name_to_return_a_System_Type_object_for">
|
||||
<summary>The type name to return a System.Type object for.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Returns_a_System_Type_object_for_the_specified_type_name">
|
||||
<summary>Returns a System.Type object for the specified type name.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_XML_namespace_prefix_to_return_a_System_Xml_Linq_XNamespace_object_for_If_this_is_omitted_the_object_for_the_default_XML_namespace_is_returned">
|
||||
<summary>The XML namespace prefix to return a System.Xml.Linq.XNamespace object for. If this is omitted, the object for the default XML namespace is returned.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.xmlNamespacePrefix">
|
||||
<summary><xmlNamespacePrefix></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Returns_the_System_Xml_Linq_XNamespace_object_corresponding_to_the_specified_XML_namespace_prefix">
|
||||
<summary>Returns the System.Xml.Linq.XNamespace object corresponding to the specified XML namespace prefix.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Replaces_a_specified_number_of_characters_in_a_String_variable_with_characters_from_another_string">
|
||||
<summary>Replaces a specified number of characters in a String variable with characters from another string.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_name_of_the_string_variable_to_modify">
|
||||
<summary>The name of the string variable to modify.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_one_based_character_position_in_the_string_where_the_replacement_of_text_begins">
|
||||
<summary>The one-based character position in the string where the replacement of text begins.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_number_of_characters_to_replace_If_omitted_the_length_of_stringExpression_is_used">
|
||||
<summary>The number of characters to replace. If omitted, the length of <stringExpression> is used.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.stringName">
|
||||
<summary><stringName></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.startIndex">
|
||||
<summary><startIndex></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.length">
|
||||
<summary><length></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.stringExpression">
|
||||
<summary><stringExpression></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Converts_an_expression_to_the_0_data_type">
|
||||
<summary>Converts an expression to the {0} data type.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Removes_the_association_between_an_event_and_an_event_handler_or_delegate_at_run_time">
|
||||
<summary>Removes the association between an event and an event handler or delegate at run time.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_event_to_disassociate_an_event_handler_or_delegate_from">
|
||||
<summary>The event to disassociate an event handler or delegate from.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_event_handler_to_disassociate_from_the_event_This_may_take_the_form_of_AddressOf_eventHandler_delegate">
|
||||
<summary>The event handler to disassociate from the event. This may take the form of { AddressOf <eventHandler> | <delegate> }.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.If_condition_returns_True_the_function_calculates_and_returns_expressionIfTrue_Otherwise_it_returns_expressionIfFalse">
|
||||
<summary>If <condition> returns True, the function calculates and returns <expressionIfTrue>. Otherwise, it returns <expressionIfFalse>.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_expression_to_evaluate">
|
||||
<summary>The expression to evaluate.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Evaluated_and_returned_if_condition_evaluates_to_True">
|
||||
<summary>Evaluated and returned if <condition> evaluates to True.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Evaluated_and_returned_if_condition_evaluates_to_False">
|
||||
<summary>Evaluated and returned if <condition> evaluates to False.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.condition">
|
||||
<summary><condition></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.expressionIfTrue">
|
||||
<summary><expressionIfTrue></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.expressionIfFalse">
|
||||
<summary><expressionIfFalse></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Introduces_a_type_conversion_operation_that_does_not_throw_an_exception_If_an_attempted_conversion_fails_TryCast_returns_Nothing_which_your_program_can_test_for">
|
||||
<summary>Introduces a type conversion operation that does not throw an exception. If an attempted conversion fails, TryCast returns Nothing, which your program can test for.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.typeOrMember">
|
||||
<summary><typeOrMember></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.The_type_of_member_to_return_the_name_of">
|
||||
<summary>The type of member to return the name of.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Produces_a_string_for_the_name_of_the_specified_type_or_member">
|
||||
<summary>Produces a string for the name of the specified type or member.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.result">
|
||||
<summary><result></summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Remove_and_Sort_Imports">
|
||||
<summary>R&emove and Sort Imports</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.Sort_Imports">
|
||||
<summary>&Sort Imports</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.CodeAnalysis.VisualBasic.VBWorkspaceResources.VB_Coding_Conventions">
|
||||
<summary>VB Coding Conventions</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CodeCleanup.Providers.FixIncorrectTokensCodeCleanupProvider.FixIncorrectTokensRewriter.RewriteEndIfStatementOrDirectiveSyntax(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken)">
|
||||
<summary>
|
||||
Rewrite "EndIf" to "End If" for an EndIfStatementSyntax/EndIfDirectiveSyntax node.
|
||||
</summary>
|
||||
<param name="curNode">Syntax node for the EndIfStatementSyntax or EndIfDirectiveSyntax to be rewritten.</param>
|
||||
<param name="curEndKeyword">"End" keyword token for <paramref name="curNode"/>.</param>
|
||||
<param name="curIfKeyword">"If" keyword token for <paramref name="curNode"/>.</param>
|
||||
<returns>Rewritten EndIfStatementSyntax/EndIfDirectiveSyntax node.</returns>
|
||||
<remarks>
|
||||
This method checks for the following:
|
||||
(a) Both the End keyword and If keyword, <paramref name="curEndKeyword"/> and <paramref name="curIfKeyword"/> respectively, are Missing tokens AND
|
||||
(b) Descendant Trivia under the given <paramref name="curEndKeyword"/> token or <paramref name="curIfKeyword"/> token has an "EndIf" keyword token.
|
||||
|
||||
If the above conditions are met, it does the following node rewrites:
|
||||
(a) Replace the missing <paramref name="curEndKeyword"/> and <paramref name="curIfKeyword"/> tokens with new "End" and "If" keywords tokens respectively.
|
||||
(b) Remove the first "EndIf" keyword token from the descendant trivia and adjust the leading and trailing trivia appropriately.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CodeCleanup.Providers.NormalizeModifiersOrOperatorsCodeCleanupProvider.Rewriter.OperatorStatementSpecialFixup(Microsoft.CodeAnalysis.VisualBasic.Syntax.OperatorStatementSyntax)">
|
||||
<summary>
|
||||
this will put operator token and modifier tokens in right order
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CodeCleanup.Providers.NormalizeModifiersOrOperatorsCodeCleanupProvider.Rewriter.ValidOperatorStatement(Microsoft.CodeAnalysis.VisualBasic.Syntax.OperatorStatementSyntax)">
|
||||
<summary>
|
||||
check whether given operator statement is valid or not
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CodeCleanup.Providers.NormalizeModifiersOrOperatorsCodeCleanupProvider.Rewriter.NormalizeOperator(Microsoft.CodeAnalysis.SyntaxToken,System.Func{Microsoft.CodeAnalysis.SyntaxToken,System.Boolean},System.Func{Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTriviaList},System.Func{Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.List{Microsoft.CodeAnalysis.VisualBasic.SyntaxKind}},System.Func{Microsoft.CodeAnalysis.SyntaxToken,System.Int32,Microsoft.CodeAnalysis.SyntaxToken})">
|
||||
<summary>
|
||||
normalize operator
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CodeCleanup.Providers.NormalizeModifiersOrOperatorsCodeCleanupProvider.Rewriter.ReorderModifiers(Microsoft.CodeAnalysis.SyntaxTokenList)">
|
||||
<summary>
|
||||
reorder modifiers in the list
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CodeCleanup.Providers.NormalizeModifiersOrOperatorsCodeCleanupProvider.Rewriter.NormalizeModifiers``1(``0,Microsoft.CodeAnalysis.SyntaxNode,System.Func{``0,Microsoft.CodeAnalysis.SyntaxTokenList},System.Func{``0,Microsoft.CodeAnalysis.SyntaxTokenList,``0})">
|
||||
<summary>
|
||||
normalize modifier list of the node and record changes if there is any change
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CodeCleanup.Providers.NormalizeModifiersOrOperatorsCodeCleanupProvider.Rewriter.NormalizeModifiers``1(``0,``0,System.Func{``0,Microsoft.CodeAnalysis.SyntaxTokenList},System.Func{``0,Microsoft.CodeAnalysis.SyntaxTokenList,``0})">
|
||||
<summary>
|
||||
normalize modifier list of the node and record changes if there is any change
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CodeCleanup.Providers.NormalizeModifiersOrOperatorsCodeCleanupProvider.Rewriter.RemoveDimKeyword``1(``0,System.Func{``0,Microsoft.CodeAnalysis.SyntaxTokenList})">
|
||||
<summary>
|
||||
remove "Dim" keyword if present
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CodeCleanup.Providers.NormalizeModifiersOrOperatorsCodeCleanupProvider.Rewriter.RemoveModifierKeyword``1(``0,System.Func{``0,Microsoft.CodeAnalysis.SyntaxTokenList},Microsoft.CodeAnalysis.VisualBasic.SyntaxKind)">
|
||||
<summary>
|
||||
remove a modifier from the given node
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.CodeAnalysis.CodeCleanup.Providers.NormalizeModifiersOrOperatorsCodeCleanupProvider.Rewriter.AreModifiersInRightOrder(Microsoft.CodeAnalysis.SyntaxTokenList)">
|
||||
<summary>
|
||||
check whether given modifiers are in right order (in sync with ModifierKindsInOrder list)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:VisualBasicCompilerExtensionsResources.EmptyResource">
|
||||
<summary>Remove this value when another is added.</summary>
|
||||
</member>
|
||||
<member name="P:VisualBasicWorkspaceExtensionsResources.EmptyResource">
|
||||
<summary>Remove this value when another is added.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.VisualBasic.dll
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.VisualBasic.dll
Normal file
Binary file not shown.
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.VisualBasic.pdb
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.VisualBasic.pdb
Normal file
Binary file not shown.
81740
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.VisualBasic.xml
Normal file
81740
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.VisualBasic.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Workspaces.dll
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Workspaces.dll
Normal file
Binary file not shown.
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Workspaces.pdb
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Workspaces.pdb
Normal file
Binary file not shown.
31217
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Workspaces.xml
Normal file
31217
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.Workspaces.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.dll
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.dll
Normal file
Binary file not shown.
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.pdb
Normal file
BIN
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.pdb
Normal file
Binary file not shown.
42744
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.xml
Normal file
42744
OnDocScript/bin/Debug/Microsoft.CodeAnalysis.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
OnDocScript/bin/Debug/OnDocScript.dll
Normal file
BIN
OnDocScript/bin/Debug/OnDocScript.dll
Normal file
Binary file not shown.
15
OnDocScript/bin/Debug/OnDocScript.dll.config
Normal file
15
OnDocScript/bin/Debug/OnDocScript.dll.config
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<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.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
||||
BIN
OnDocScript/bin/Debug/OnDocScript.pdb
Normal file
BIN
OnDocScript/bin/Debug/OnDocScript.pdb
Normal file
Binary file not shown.
BIN
OnDocScript/bin/Debug/System.Buffers.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Buffers.dll
Normal file
Binary file not shown.
38
OnDocScript/bin/Debug/System.Buffers.xml
Normal file
38
OnDocScript/bin/Debug/System.Buffers.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)">
|
||||
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class using the specifed configuration.</summary>
|
||||
<param name="maxArrayLength">The maximum length of an array instance that may be stored in the pool.</param>
|
||||
<param name="maxArraysPerBucket">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>
|
||||
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class with the specified configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Rent(System.Int32)">
|
||||
<summary>Retrieves a buffer that is at least the requested length.</summary>
|
||||
<param name="minimumLength">The minimum length of the array.</param>
|
||||
<returns>An array of type <see cref="T[]"></see> that is at least <paramref name="minimumLength">minimumLength</paramref> in length.</returns>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)">
|
||||
<summary>Returns an array to the pool that was previously obtained using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method on the same <see cref="T:System.Buffers.ArrayPool`1"></see> instance.</summary>
|
||||
<param name="array">A buffer to return to the pool that was previously obtained using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method.</param>
|
||||
<param name="clearArray">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name="clearArray">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)"></see> method will clear the <paramref name="array">array</paramref> of its contents so that a subsequent caller using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method will not see the content of the previous caller. If <paramref name="clearArray">clearArray</paramref> is set to false or if the pool will release the buffer, the array&#39;s contents are left unchanged.</param>
|
||||
</member>
|
||||
<member name="P:System.Buffers.ArrayPool`1.Shared">
|
||||
<summary>Gets a shared <see cref="T:System.Buffers.ArrayPool`1"></see> instance.</summary>
|
||||
<returns>A shared <see cref="System.Buffers.ArrayPool`1"></see> instance.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.Collections.Immutable.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Collections.Immutable.dll
Normal file
Binary file not shown.
6215
OnDocScript/bin/Debug/System.Collections.Immutable.xml
Normal file
6215
OnDocScript/bin/Debug/System.Collections.Immutable.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
OnDocScript/bin/Debug/System.Composition.AttributedModel.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Composition.AttributedModel.dll
Normal file
Binary file not shown.
183
OnDocScript/bin/Debug/System.Composition.AttributedModel.xml
Normal file
183
OnDocScript/bin/Debug/System.Composition.AttributedModel.xml
Normal file
@@ -0,0 +1,183 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Composition.AttributedModel</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Composition.Convention.AttributedModelProvider">
|
||||
<summary>Provides augmented reflection data to support convention-based models.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.AttributedModelProvider.#ctor">
|
||||
<summary>Creates a new instance of the <see cref="T:System.Composition.Convention.AttributedModelProvider" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.AttributedModelProvider.GetCustomAttributes(System.Type,System.Reflection.MemberInfo)">
|
||||
<summary>Provides the list of attributes applied to the specified member of the specified type.</summary>
|
||||
<param name="reflectedType">The type.</param>
|
||||
<param name="member">The member to inspect.</param>
|
||||
<returns>A collection of the attributes applied to the specified member.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.AttributedModelProvider.GetCustomAttributes(System.Type,System.Reflection.ParameterInfo)">
|
||||
<summary>Provides the list of attributes applied to the specified parameter of the specified type.</summary>
|
||||
<param name="reflectedType">The type.</param>
|
||||
<param name="parameter">The parameter to inspect.</param>
|
||||
<returns>A collection of the attributes applied to the specified parameter.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.ExportAttribute">
|
||||
<summary>Specifies that a type, property, field, or method provides a particular export.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.ExportAttribute.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ExportAttribute" /> class, exporting the type or member marked with this attribute under the default contract name.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.ExportAttribute.#ctor(System.String,System.Type)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ExportAttribute" /> class, exporting the specified type under the specified contract name.</summary>
|
||||
<param name="contractName">The contract name that is used to export the type or member marked with this attribute, or <see langword="null" /> or an empty string ("") to use the default contract name.</param>
|
||||
<param name="contractType">The type to export.</param>
|
||||
</member>
|
||||
<member name="M:System.Composition.ExportAttribute.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ExportAttribute" /> class, exporting the type or member marked with this attribute under the specified contract name.</summary>
|
||||
<param name="contractName">The contract name that is used to export the type or member marked with this attribute, or <see langword="null" /> or an empty string ("") to use the default contract name.</param>
|
||||
</member>
|
||||
<member name="M:System.Composition.ExportAttribute.#ctor(System.Type)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ExportAttribute" /> class, exporting the type or member marked with this attribute under a contract name derived from the specified type.</summary>
|
||||
<param name="contractType">A type from which to derive the contract name that is used to export the type or member marked with this attribute, or <see langword="null" /> to use the default contract name.</param>
|
||||
</member>
|
||||
<member name="P:System.Composition.ExportAttribute.ContractName">
|
||||
<summary>Gets the contract name that is used to export the type or member marked with this attribute.</summary>
|
||||
<returns>The contract name that is used to export the type or member marked with this attribute. The default value is an empty string ("").</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.ExportAttribute.ContractType">
|
||||
<summary>Gets the contract type that is exported by the member that is marked by this attribute.</summary>
|
||||
<returns>The type of export to be provided. The default value is <see langword="null" />, which means that the type will be obtained by looking at the type on the member that this export is attached to.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.ExportMetadataAttribute">
|
||||
<summary>Specifies metadata for a type, property, field, or method that is marked with the <see cref="T:System.Composition.ExportAttribute" /> attribute.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.ExportMetadataAttribute.#ctor(System.String,System.Object)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ExportMetadataAttribute" /> class with the specified name and metadata value.</summary>
|
||||
<param name="name">A string that contains the name of the metadata value, or <see langword="null" /> to set the <see cref="P:System.Composition.ExportMetadataAttribute.Name" /> property to an empty string ("").</param>
|
||||
<param name="value">An object that contains the metadata value. This can be <see langword="null" />.</param>
|
||||
</member>
|
||||
<member name="P:System.Composition.ExportMetadataAttribute.Name">
|
||||
<summary>Gets the name of the metadata value.</summary>
|
||||
<returns>The name of the metadata value.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.ExportMetadataAttribute.Value">
|
||||
<summary>Gets the metadata value.</summary>
|
||||
<returns>An object that contains the metadata value.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.ImportAttribute">
|
||||
<summary>Specifies that a property or parameter value should be provided by the host container.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.ImportAttribute.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ImportAttribute" /> class, importing the export with the default contract name.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.ImportAttribute.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ImportAttribute" /> class, importing the export with the specified contract name.</summary>
|
||||
<param name="contractName">The contract name of the export to import, or <see langword="null" /> or an empty string ("") to use the default contract name.</param>
|
||||
</member>
|
||||
<member name="P:System.Composition.ImportAttribute.AllowDefault">
|
||||
<summary>Gets or sets a value that indicates whether the property or parameter will be set to its type's default value when an export with the contract name is not present in the container.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the property or parameter will be set to its type's default value when there is no export with the contract name in the host container; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.ImportAttribute.ContractName">
|
||||
<summary>Gets the contract name of the export to import.</summary>
|
||||
<returns>The contract name of the export to import. The default is an empty string ("").</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.ImportingConstructorAttribute">
|
||||
<summary>Specifies which constructor should be used when creating an attributed part.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.ImportingConstructorAttribute.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ImportingConstructorAttribute" /> class.</summary>
|
||||
</member>
|
||||
<member name="T:System.Composition.ImportManyAttribute">
|
||||
<summary>Specifies that a property, field, or parameter should be populated with all matching exports by the host container.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.ImportManyAttribute.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ImportManyAttribute" /> class, importing the set of exports that have the default contract name.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.ImportManyAttribute.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ImportManyAttribute" /> class, importing the set of exports that have the specified contract name.</summary>
|
||||
<param name="contractName">The contract name of the exports to import, or <see langword="null" /> or an empty string ("") to use the default contract name.</param>
|
||||
</member>
|
||||
<member name="P:System.Composition.ImportManyAttribute.ContractName">
|
||||
<summary>Gets the contract name of the exports to import.</summary>
|
||||
<returns>The contract name of the exports to import. The default value is an empty string ("").</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.ImportMetadataConstraintAttribute">
|
||||
<summary>Specifies that an import requires certain metadata values.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.ImportMetadataConstraintAttribute.#ctor(System.String,System.Object)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ImportMetadataConstraintAttribute" /> class.</summary>
|
||||
<param name="name">The metadata key to match.</param>
|
||||
<param name="value">The metadata value to match.</param>
|
||||
</member>
|
||||
<member name="P:System.Composition.ImportMetadataConstraintAttribute.Name">
|
||||
<summary>Gets the metadata key to match.</summary>
|
||||
<returns>The metadata key.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.ImportMetadataConstraintAttribute.Value">
|
||||
<summary>Gets the metadata value to match.</summary>
|
||||
<returns>The metadata value.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.MetadataAttributeAttribute">
|
||||
<summary>Specifies that a custom attribute's properties provide metadata for exports applied to the same type, property, field, or method.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.MetadataAttributeAttribute.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.MetadataAttributeAttribute" /> class.</summary>
|
||||
</member>
|
||||
<member name="T:System.Composition.OnImportsSatisfiedAttribute">
|
||||
<summary>Specifies that a method should be called when composition is completed.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.OnImportsSatisfiedAttribute.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.OnImportsSatisfiedAttribute" /> class.</summary>
|
||||
</member>
|
||||
<member name="T:System.Composition.PartMetadataAttribute">
|
||||
<summary>Specifies metadata for a part.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.PartMetadataAttribute.#ctor(System.String,System.Object)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.PartMetadataAttribute" /> class with the specified name and metadata value.</summary>
|
||||
<param name="name">A string that contains the name of the metadata value, or <see langword="null" /> to use an empty string ("").</param>
|
||||
<param name="value">An object that contains the metadata value. This can be <see langword="null" />.</param>
|
||||
</member>
|
||||
<member name="P:System.Composition.PartMetadataAttribute.Name">
|
||||
<summary>Gets the name of the metadata value.</summary>
|
||||
<returns>The name of the metadata value.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.PartMetadataAttribute.Value">
|
||||
<summary>Gets the metadata value.</summary>
|
||||
<returns>An object that contains the metadata value.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.PartNotDiscoverableAttribute">
|
||||
<summary>Specifies that this type's exports won't be included in a catalog.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.PartNotDiscoverableAttribute.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.PartNotDiscoverableAttribute" /> class.</summary>
|
||||
</member>
|
||||
<member name="T:System.Composition.SharedAttribute">
|
||||
<summary>Marks the decorated part as being constrained to sharing within the specified boundary.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.SharedAttribute.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.SharedAttribute" /> class marked as globally shared.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.SharedAttribute.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.SharedAttribute" /> class with the specified sharing boundary.</summary>
|
||||
<param name="sharingBoundaryName">The sharing boundary.</param>
|
||||
</member>
|
||||
<member name="P:System.Composition.SharedAttribute.SharingBoundary">
|
||||
<summary>Gets the boundary outside which the part marked by this attribute is inaccessible.</summary>
|
||||
<returns>The sharing boundary.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.SharingBoundaryAttribute">
|
||||
<summary>When applied to an import of an <see cref="T:System.Composition.ExportFactory`1" /> object, marks the boundary of a sharing scope.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.SharingBoundaryAttribute.#ctor(System.String[])">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.SharingBoundaryAttribute" /> class for the specified boundary names.</summary>
|
||||
<param name="sharingBoundaryNames">The boundary names to create.</param>
|
||||
</member>
|
||||
<member name="P:System.Composition.SharingBoundaryAttribute.SharingBoundaryNames">
|
||||
<summary>Gets the boundary names.</summary>
|
||||
<returns>A collection of the boundary names.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.Composition.Convention.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Composition.Convention.dll
Normal file
Binary file not shown.
336
OnDocScript/bin/Debug/System.Composition.Convention.xml
Normal file
336
OnDocScript/bin/Debug/System.Composition.Convention.xml
Normal file
@@ -0,0 +1,336 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Composition.Convention</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Composition.Convention.ConventionBuilder">
|
||||
<summary>Provides methods for creating and configuring rules to define CLR objects as Managed Extensibility Framework (MEF) parts.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ConventionBuilder.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Convention.ConventionBuilder" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ConventionBuilder.ForType(System.Type)">
|
||||
<summary>Creates a rule that applies to the specified type.</summary>
|
||||
<param name="type">The type.</param>
|
||||
<returns>An object that can be used to further configure the rule.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ConventionBuilder.ForType``1">
|
||||
<summary>Creates a rule that applies to the specified generic type.</summary>
|
||||
<typeparam name="T">The generic type.</typeparam>
|
||||
<returns>An object that can be used to further configure the rule.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ConventionBuilder.ForTypesDerivedFrom(System.Type)">
|
||||
<summary>Creates a rule that applies to all types that implement, or are derived from, the specified type.</summary>
|
||||
<param name="type">The type.</param>
|
||||
<returns>An object that can be used to further configure the rule.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ConventionBuilder.ForTypesDerivedFrom``1">
|
||||
<summary>Creates a rule that applies to all types that implement, or are derived from, the specified generic type.</summary>
|
||||
<typeparam name="T">The generic type.</typeparam>
|
||||
<returns>An object that can be used to further configure the rule.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ConventionBuilder.ForTypesMatching(System.Predicate{System.Type})">
|
||||
<summary>Creates a rule that applies to types that match the specified predicate.</summary>
|
||||
<param name="typeFilter">The predicate to match.</param>
|
||||
<returns>An object that can be used to further configure the rule.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ConventionBuilder.ForTypesMatching``1(System.Predicate{System.Type})">
|
||||
<summary>Creates a rule that applies to types that match the specified predicate and generic type.</summary>
|
||||
<param name="typeFilter">The predicate to match.</param>
|
||||
<typeparam name="T">The type to match.</typeparam>
|
||||
<returns>An object that can be used to further configure the rule.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ConventionBuilder.GetCustomAttributes(System.Type,System.Reflection.MemberInfo)">
|
||||
<summary>Retrieves the list of custom attributes applied to the specified member of the specified type.</summary>
|
||||
<param name="reflectedType">The type.</param>
|
||||
<param name="member">The member to inspect.</param>
|
||||
<returns>A collection of custom attributes.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ConventionBuilder.GetCustomAttributes(System.Type,System.Reflection.ParameterInfo)">
|
||||
<summary>Retrieves the list of custom attributes applied to the specified parameter of the specified type.</summary>
|
||||
<param name="reflectedType">The type.</param>
|
||||
<param name="parameter">The parameter to inspect.</param>
|
||||
<returns>A collection of custom attributes.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Convention.ExportConventionBuilder">
|
||||
<summary>Configures an export that is associated with a part.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ExportConventionBuilder.AddMetadata(System.String,System.Func{System.Type,System.Object})">
|
||||
<summary>Adds metadata that has the specified name and value to the export.</summary>
|
||||
<param name="name">The name of the metadata to add.</param>
|
||||
<param name="getValueFromPartType">A function that provides the value of the metadata to add.</param>
|
||||
<returns>An export builder containing the metadata that allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ExportConventionBuilder.AddMetadata(System.String,System.Object)">
|
||||
<summary>Adds metadata that has the specified name and value to the export.</summary>
|
||||
<param name="name">The name of the metadata to add.</param>
|
||||
<param name="value">The value of the metadata to add.</param>
|
||||
<returns>An export builder containing the metadata that allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ExportConventionBuilder.AsContractName(System.Func{System.Type,System.String})">
|
||||
<summary>Specifies the contract name for the export based on the result of the specified function on the export type.</summary>
|
||||
<param name="getContractNameFromPartType">The function that provides the contract name.</param>
|
||||
<returns>An export builder containing the contract name that allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ExportConventionBuilder.AsContractName(System.String)">
|
||||
<summary>Specifies the contract name for the export.</summary>
|
||||
<param name="contractName">The contract name.</param>
|
||||
<returns>An export builder containing the contract name that allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ExportConventionBuilder.AsContractType(System.Type)">
|
||||
<summary>Specifies the contract type for the export.</summary>
|
||||
<param name="type">The type.</param>
|
||||
<returns>An export builder containing the contract type that allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ExportConventionBuilder.AsContractType``1">
|
||||
<summary>Specifies the contract type for the export as a generic type.</summary>
|
||||
<typeparam name="T">The generic type.</typeparam>
|
||||
<returns>An export builder containing the contract type that allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Convention.ImportConventionBuilder">
|
||||
<summary>Configures an import that is associated with a part.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ImportConventionBuilder.AddMetadataConstraint(System.String,System.Func{System.Type,System.Object})">
|
||||
<summary>Adds a constraint to the import requiring the specified metadata name and the value provided by the specified function on the part type.</summary>
|
||||
<param name="name">The required metadata name.</param>
|
||||
<param name="getConstraintValueFromPartType">A function that provides the required metadata value.</param>
|
||||
<returns>An import builder containing the constraint that allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ImportConventionBuilder.AddMetadataConstraint(System.String,System.Object)">
|
||||
<summary>Adds a constraint to the import requiring the specified metadata name and value.</summary>
|
||||
<param name="name">The required metadata name.</param>
|
||||
<param name="value">The required metadata value.</param>
|
||||
<returns>An import builder containing the constraint that allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ImportConventionBuilder.AllowDefault">
|
||||
<summary>Allows the import to receive the default value for its type if the contract cannot be supplied by another part.</summary>
|
||||
<returns>An import builder that allows default values and can be further configured.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ImportConventionBuilder.AsContractName(System.Func{System.Type,System.String})">
|
||||
<summary>Sets the contract name of the import to the value provided by the specified function on the part type.</summary>
|
||||
<param name="getContractNameFromPartType">A function that provides the contract name of the import.</param>
|
||||
<returns>An import builder containing the contract name that allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ImportConventionBuilder.AsContractName(System.String)">
|
||||
<summary>Sets the contract name of the import to the specified string.</summary>
|
||||
<param name="contractName">The contract name of the import.</param>
|
||||
<returns>An import builder containing the contract name that allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ImportConventionBuilder.AsMany">
|
||||
<summary>Configures the import to receive a collection of exports.</summary>
|
||||
<returns>An import builder that can receive a collection of exports and allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ImportConventionBuilder.AsMany(System.Boolean)">
|
||||
<summary>Configures the import to receive a collection of exports, possibly representing all available matching exports.</summary>
|
||||
<param name="isMany">
|
||||
<see langword="true" /> to provide all available matching exports; otherwise, <see langword="false" />.</param>
|
||||
<returns>An import builder that can receive a collection of exports and allows for further configuration.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Convention.ParameterImportConventionBuilder">
|
||||
<summary>Represents a helper type that is used when configuring a <see cref="T:System.Composition.Convention.PartConventionBuilder`1" />.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ParameterImportConventionBuilder.Import``1">
|
||||
<summary>Imports the specified type.</summary>
|
||||
<typeparam name="T">The type to import.</typeparam>
|
||||
<returns>The imported instance.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.ParameterImportConventionBuilder.Import``1(System.Action{System.Composition.Convention.ImportConventionBuilder})">
|
||||
<summary>Imports the specified generic type by using the specified configuration.</summary>
|
||||
<param name="configure">The configuration for the import.</param>
|
||||
<typeparam name="T">The type to import.</typeparam>
|
||||
<returns>The imported instance.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Convention.PartConventionBuilder">
|
||||
<summary>Configures a type as a Managed Extensibility Framework (MEF) part.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.AddPartMetadata(System.String,System.Func{System.Type,System.Object})">
|
||||
<summary>Adds metadata that has the specified name and value to the part. The value is returned by a function that maps the part type to the metadata value.</summary>
|
||||
<param name="name">The name of the metadata to add.</param>
|
||||
<param name="getValueFromPartType">A function that returns the metadata value on the part type.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.AddPartMetadata(System.String,System.Object)">
|
||||
<summary>Adds metadata that has the specified name and value to the part.</summary>
|
||||
<param name="name">The metadata name.</param>
|
||||
<param name="value">The metadata value.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.Export">
|
||||
<summary>Exports the part with its concrete type as the contract type.</summary>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.Export(System.Action{System.Composition.Convention.ExportConventionBuilder})">
|
||||
<summary>Exports the part that has the specified configuration.</summary>
|
||||
<param name="exportConfiguration">An action that configures the part.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.Export``1">
|
||||
<summary>Exports the part that has the specified contract type.</summary>
|
||||
<typeparam name="T">The contract type.</typeparam>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.Export``1(System.Action{System.Composition.Convention.ExportConventionBuilder})">
|
||||
<summary>Exports the part that has the specified contract type by using the specified configuration.</summary>
|
||||
<param name="exportConfiguration">An action that configures the part.</param>
|
||||
<typeparam name="T">The contract type.</typeparam>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ExportInterfaces">
|
||||
<summary>Selects all interfaces on the part type to be exported.</summary>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ExportInterfaces(System.Predicate{System.Type},System.Action{System.Type,System.Composition.Convention.ExportConventionBuilder})">
|
||||
<summary>Selects interfaces on the part type to be exported according to the specified filter, using the specified export configuration.</summary>
|
||||
<param name="interfaceFilter">A predicate that specifies the interfaces to be selected.</param>
|
||||
<param name="exportConfiguration">An action that configures the exports.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ExportInterfaces(System.Predicate{System.Type})">
|
||||
<summary>Selects interfaces on the part type to be exported according to the specified filter.</summary>
|
||||
<param name="interfaceFilter">A predicate that specifies the interfaces to be selected.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ExportProperties(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ExportConventionBuilder})">
|
||||
<summary>Selects the properties on the part to export according to the specified predicate, using the specified export configuration.</summary>
|
||||
<param name="propertyFilter">A predicate that specifies the properites to export.</param>
|
||||
<param name="exportConfiguration">An action that configures the exports.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ExportProperties(System.Predicate{System.Reflection.PropertyInfo})">
|
||||
<summary>Selects the properties on the part to export according to the specified predicate.</summary>
|
||||
<param name="propertyFilter">A predicate that specifies the properites to export.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ExportProperties``1(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ExportConventionBuilder})">
|
||||
<summary>Selects the properties on the part to export according to the specified predicate, using the specified contract type and export configuration.</summary>
|
||||
<param name="propertyFilter">A predicate that specifies the properites to export.</param>
|
||||
<param name="exportConfiguration">An action that configures the exports.</param>
|
||||
<typeparam name="T">The contract type.</typeparam>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ExportProperties``1(System.Predicate{System.Reflection.PropertyInfo})">
|
||||
<summary>Selects the properties on the part to export according to the specified predicate, using the specified contract type.</summary>
|
||||
<param name="propertyFilter">A predicate that specifies the properites to export.</param>
|
||||
<typeparam name="T">The contract type.</typeparam>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ImportProperties(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ImportConventionBuilder})">
|
||||
<summary>Selects the properties on the part to import according to the specified predicate, using the specified import configuration.</summary>
|
||||
<param name="propertyFilter">A predicate that specifies the properites to import.</param>
|
||||
<param name="importConfiguration">An action that configures the imports.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ImportProperties(System.Predicate{System.Reflection.PropertyInfo})">
|
||||
<summary>Selects the properties on the part to import according to the specified predicate.</summary>
|
||||
<param name="propertyFilter">A predicate that specifies the properites to import.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ImportProperties``1(System.Predicate{System.Reflection.PropertyInfo},System.Action{System.Reflection.PropertyInfo,System.Composition.Convention.ImportConventionBuilder})">
|
||||
<summary>Selects the properties on the part to import according to the specified predicate, using the specified contract type and import configuration.</summary>
|
||||
<param name="propertyFilter">A predicate that specifies the properties to import.</param>
|
||||
<param name="importConfiguration">An action that configures the imports.</param>
|
||||
<typeparam name="T">The contract type.</typeparam>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.ImportProperties``1(System.Predicate{System.Reflection.PropertyInfo})">
|
||||
<summary>Selects the properties on the part to import according to the specified predicate, using the specified contract type.</summary>
|
||||
<param name="propertyFilter">A predicate that specifies the properties to import.</param>
|
||||
<typeparam name="T">The contract type.</typeparam>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.NotifyImportsSatisfied(System.Predicate{System.Reflection.MethodInfo})">
|
||||
<summary>Select methods to be used as a notification when composition is complete.</summary>
|
||||
<param name="methodFilter">A predicate that selects the methods.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.SelectConstructor(System.Func{System.Collections.Generic.IEnumerable{System.Reflection.ConstructorInfo},System.Reflection.ConstructorInfo},System.Action{System.Reflection.ParameterInfo,System.Composition.Convention.ImportConventionBuilder})">
|
||||
<summary>Selects the constructor used to initialize the part by using the specified function and import configuration.</summary>
|
||||
<param name="constructorSelector">A function that returns a single constructor.</param>
|
||||
<param name="importConfiguration">A method that configures the constructor's imports.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.SelectConstructor(System.Func{System.Collections.Generic.IEnumerable{System.Reflection.ConstructorInfo},System.Reflection.ConstructorInfo})">
|
||||
<summary>Selects the constructor used to initialize the part by using the specified function.</summary>
|
||||
<param name="constructorSelector">A function that returns a single constructor.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.Shared">
|
||||
<summary>Marks the part as being shared throughout the entire composition.</summary>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder.Shared(System.String)">
|
||||
<summary>Marks the part as being shared within the specified boundary.</summary>
|
||||
<param name="sharingBoundary">The boundary.</param>
|
||||
<returns>A part builder that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Convention.PartConventionBuilder`1">
|
||||
<summary>Configures a type as a Managed Extensibility Framework (MEF) part, with strongly typed return values.</summary>
|
||||
<typeparam name="T">The type of the part.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ExportConventionBuilder})">
|
||||
<summary>Exports a specified property with the specified configuration.</summary>
|
||||
<param name="propertySelector">A function that selects the property to export.</param>
|
||||
<param name="exportConfiguration">An action that configures the exported property.</param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="propertySelector" /> expression must be a <see cref="T:System.Linq.Expressions.MemberExpression" /> for accessing a property.</exception>
|
||||
<returns>An object that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
|
||||
<summary>Exports a specified property.</summary>
|
||||
<param name="propertySelector">A function that selects the property to export.</param>
|
||||
<returns>An object that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ExportConventionBuilder})">
|
||||
<summary>Exports a specified property as a specified contract type by using the specified configuration.</summary>
|
||||
<param name="propertySelector">A function that selects the property to export.</param>
|
||||
<param name="exportConfiguration">An action that configures the exported property.</param>
|
||||
<typeparam name="TContract">The contract type.</typeparam>
|
||||
<returns>An object that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder`1.ExportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
|
||||
<summary>Exports a specified property as a specified contract type.</summary>
|
||||
<param name="propertySelector">A function that selects the property to export.</param>
|
||||
<typeparam name="TContract">The contract type.</typeparam>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="propertySelector" /> expression must be a <see cref="T:System.Linq.Expressions.MemberExpression" /> for accessing a property.</exception>
|
||||
<returns>An object that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ImportConventionBuilder})">
|
||||
<summary>Imports a specified property by using the specified configuration.</summary>
|
||||
<param name="propertySelector">A function that selects the property to import.</param>
|
||||
<param name="importConfiguration">An action that configures the imported property.</param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="propertySelector" /> expression must be a <see cref="T:System.Linq.Expressions.MemberExpression" /> for accessing a property.</exception>
|
||||
<returns>An object that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
|
||||
<summary>Imports a specified property.</summary>
|
||||
<param name="propertySelector">A function that selects the property to import.</param>
|
||||
<returns>An object that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}},System.Action{System.Composition.Convention.ImportConventionBuilder})">
|
||||
<summary>Imports a specified property with the specified contract type and configuration.</summary>
|
||||
<param name="propertySelector">A function that selects the property to import.</param>
|
||||
<param name="importConfiguration">An action that configures the imported property.</param>
|
||||
<typeparam name="TContract">The contract type.</typeparam>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="propertySelector" /> expression must be a <see cref="T:System.Linq.Expressions.MemberExpression" /> for accessing a property.</exception>
|
||||
<returns>An object that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder`1.ImportProperty``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
|
||||
<summary>Imports a specified property with the specified contract type.</summary>
|
||||
<param name="propertySelector">A function that selects the property to import.</param>
|
||||
<typeparam name="TContract">The contract type.</typeparam>
|
||||
<returns>An object that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder`1.NotifyImportsSatisfied(System.Linq.Expressions.Expression{System.Action{`0}})">
|
||||
<summary>Selects a method to be called when composition is complete.</summary>
|
||||
<param name="methodSelector">An action that selects the method to call.</param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="methodSelector" /> expression must be a <see langword="void" /> method with no arguments.</exception>
|
||||
<returns>An object that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Convention.PartConventionBuilder`1.SelectConstructor(System.Linq.Expressions.Expression{System.Func{System.Composition.Convention.ParameterImportConventionBuilder,`0}})">
|
||||
<summary>Selects a constructor to be used in composition.</summary>
|
||||
<param name="constructorSelector">A function that selects a constructor.</param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="constructorSelector" /> expression must use the <see langword="new" /> operator.</exception>
|
||||
<returns>An object that can be used to further configure the part.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.Composition.Hosting.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Composition.Hosting.dll
Normal file
Binary file not shown.
260
OnDocScript/bin/Debug/System.Composition.Hosting.xml
Normal file
260
OnDocScript/bin/Debug/System.Composition.Hosting.xml
Normal file
@@ -0,0 +1,260 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Composition.Hosting</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Composition.Hosting.CompositionHost">
|
||||
<summary>A lightweight composition container that is assembled from specified providers.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.CompositionHost.CreateCompositionHost(System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.ExportDescriptorProvider})">
|
||||
<summary>Creates the composition host with the specified collection of providers.</summary>
|
||||
<param name="providers">The providers, which contain export descriptions for the parts being composed.</param>
|
||||
<returns>The created composition host.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.CompositionHost.CreateCompositionHost(System.Composition.Hosting.Core.ExportDescriptorProvider[])">
|
||||
<summary>Creates the composition host with the specified array of providers.</summary>
|
||||
<param name="providers">The providers, which contain export descriptions for the parts being composed.</param>
|
||||
<returns>The created composition host.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.CompositionHost.Dispose">
|
||||
<summary>Releases the composition host and any globally shared parts.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.CompositionHost.TryGetExport(System.Composition.Hosting.Core.CompositionContract,System.Object@)">
|
||||
<summary>Retrieves the specified export from the composition context.</summary>
|
||||
<param name="contract">The export to retrieve.</param>
|
||||
<param name="export">When this method returns, contains an instance of the export if available; otherwise, <see langword="null" />.</param>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">There are too many exports.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if the export was retrieved; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.Core.CompositeActivator">
|
||||
<summary>The delegate that allows instances of parts and exports to be accessed during composition.</summary>
|
||||
<param name="context">The context in which the part or export is being accessed.</param>
|
||||
<param name="operation">The operation within which the activation is occurring.</param>
|
||||
<returns>The activated part or export.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.Core.CompositionDependency">
|
||||
<summary>Represents a dependency that a part must have in order to fulfill an <see cref="T:System.Composition.Hosting.Core.ExportDescriptorPromise" />. This class is used by the composition engine during initialization to determine whether the composition can be made, and if not, what error to provide.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionDependency.Missing(System.Composition.Hosting.Core.CompositionContract,System.Object)">
|
||||
<summary>Constructs a placeholder for a missing dependency.</summary>
|
||||
<param name="contract">">The contract required by the dependency.</param>
|
||||
<param name="site">A marker used to identify the individual dependency among those on the dependent part.</param>
|
||||
<returns>The dependency that acts as a placeholder.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionDependency.Oversupplied(System.Composition.Hosting.Core.CompositionContract,System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.ExportDescriptorPromise},System.Object)">
|
||||
<summary>Constructs a placeholder for a dependency that has too many supplied values.</summary>
|
||||
<param name="contract">The contract required by the dependency.</param>
|
||||
<param name="targets">A collection of the supplied values.</param>
|
||||
<param name="site">A marker for the dependency.</param>
|
||||
<returns>The placeholder dependency.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionDependency.Satisfied(System.Composition.Hosting.Core.CompositionContract,System.Composition.Hosting.Core.ExportDescriptorPromise,System.Boolean,System.Object)">
|
||||
<summary>Constructs a dependency on the specified target.</summary>
|
||||
<param name="contract">The contract required by the dependency.</param>
|
||||
<param name="target">The dependency target. A <see cref="T:System.Composition.Hosting.Core.ExportDescriptorPromise" /> from another part that this part is dependent on.</param>
|
||||
<param name="isPrerequisite">
|
||||
<see langword="true" /> to indicate that the dependency is a prerequisite that must be satisfied before any exports can be retrieved from the dependent part; otherwise, <see langword="false" />.</param>
|
||||
<param name="site">A marker used to identify the individual dependency among those on the dependent part.</param>
|
||||
<returns>The constructed dependency.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionDependency.ToString">
|
||||
<summary>Returns the string representation of this <see cref="T:System.Composition.Hosting.Core.CompositionDependency" /> object.</summary>
|
||||
<returns>The string representation of <see cref="T:System.Composition.Hosting.Core.CompositionDependency" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.CompositionDependency.Contract">
|
||||
<summary>Gets the contract required by the dependency.</summary>
|
||||
<returns>The contract required by the dependency.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.CompositionDependency.IsPrerequisite">
|
||||
<summary>Gets a value indicating whether the dependency is a prerequisite that must be satisfied before any exports can be retrieved from the dependent part.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the dependency is a prerequisite; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.CompositionDependency.Site">
|
||||
<summary>Gets a marker used to identify the dependency among those on the dependent part.</summary>
|
||||
<returns>The marker.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.CompositionDependency.Target">
|
||||
<summary>Gets the export descriptor promise that the dependecy is on.</summary>
|
||||
<returns>The export descriptor promise.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.Core.CompositionOperation">
|
||||
<summary>Represents a single composition operation.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionOperation.AddNonPrerequisiteAction(System.Action)">
|
||||
<summary>Specifies an action that can run after all prerequisite part dependencies have been satisfied.</summary>
|
||||
<param name="action">The action to run.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="action" /> is <see langword="null" />.</exception>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionOperation.AddPostCompositionAction(System.Action)">
|
||||
<summary>Specifies an action to run after all composition has completed, as indicated by the <see cref="T:System.Composition.OnImportsSatisfiedAttribute" />.</summary>
|
||||
<param name="action">The action to run.</param>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionOperation.Dispose">
|
||||
<summary>Releases all locks held during the composition operation.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionOperation.Run(System.Composition.Hosting.Core.LifetimeContext,System.Composition.Hosting.Core.CompositeActivator)">
|
||||
<summary>Runs the composition operation starting within the specified lifetime context, driven by the specified activator.</summary>
|
||||
<param name="outermostLifetimeContext">The context in which to begin the operation (the operation can flow to the parents of the context if required).</param>
|
||||
<param name="compositionRootActivator">The activator that drives the operation.</param>
|
||||
<returns>The composed object graph.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.Core.DependencyAccessor">
|
||||
<summary>Allows <see cref="T:System.Composition.Hosting.Core.ExportDescriptorProvider" /> objects to locate their dependencies.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.DependencyAccessor.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.Core.DependencyAccessor" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.DependencyAccessor.GetPromises(System.Composition.Hosting.Core.CompositionContract)">
|
||||
<summary>Retrieves all promises for the specified contract.</summary>
|
||||
<param name="exportKey">The export key that the promises must supply.</param>
|
||||
<returns>A collection of promises for the contract.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.DependencyAccessor.ResolveDependencies(System.Object,System.Composition.Hosting.Core.CompositionContract,System.Boolean)">
|
||||
<summary>Resolves dependencies on all implementations of a contract.</summary>
|
||||
<param name="site">A tag that describes the dependency site.</param>
|
||||
<param name="contract">The contract required by the site.</param>
|
||||
<param name="isPrerequisite">
|
||||
<see langword="true" /> to indicate that the dependency must be satisfied before exports are made available; otherwise, <see langword="false" />.</param>
|
||||
<returns>A collection of resolved dependencies.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.DependencyAccessor.ResolveRequiredDependency(System.Object,System.Composition.Hosting.Core.CompositionContract,System.Boolean)">
|
||||
<summary>Resolves a required dependency on one implementation of a contract.</summary>
|
||||
<param name="site">A tag that describes the dependency site.</param>
|
||||
<param name="contract">The contract required by the site.</param>
|
||||
<param name="isPrerequisite">
|
||||
<see langword="true" /> to indicate that the dependency must be satisfied before exports are made available; otherwise, <see langword="false" />.</param>
|
||||
<returns>The resolved dependency.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.DependencyAccessor.TryResolveOptionalDependency(System.Object,System.Composition.Hosting.Core.CompositionContract,System.Boolean,System.Composition.Hosting.Core.CompositionDependency@)">
|
||||
<summary>Resolves an optional dependency on one implementation of a contract.</summary>
|
||||
<param name="site">A tag that describes the dependency site.</param>
|
||||
<param name="contract">The contract required by the site.</param>
|
||||
<param name="isPrerequisite">
|
||||
<see langword="true" /> to indicate that the dependency must be satisfied before exports are made available; otherwise, <see langword="false" />.</param>
|
||||
<param name="dependency">After this method returns, contains the resolved dependency or <see langword="null" />.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the dependency was resolved; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.Core.ExportDescriptor">
|
||||
<summary>Describes an export of a part known to the composition engine.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.ExportDescriptor.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.Core.ExportDescriptor" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.ExportDescriptor.Create(System.Composition.Hosting.Core.CompositeActivator,System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>Creates an export descriptor that has the specified activator and metadata.</summary>
|
||||
<param name="activator">The activator used to retrieve instances of the export.</param>
|
||||
<param name="metadata">The metadata associated with the export.</param>
|
||||
<returns>The created descriptor.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.ExportDescriptor.Activator">
|
||||
<summary>Gets the activator used to retrieve instances of the export.</summary>
|
||||
<returns>The activator.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.ExportDescriptor.Metadata">
|
||||
<summary>Gets the metadata for the export.</summary>
|
||||
<returns>A collection of metadata.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.Core.ExportDescriptorPromise">
|
||||
<summary>Represents an export descriptor that an available part can provide.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.ExportDescriptorPromise.#ctor(System.Composition.Hosting.Core.CompositionContract,System.String,System.Boolean,System.Func{System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.CompositionDependency}},System.Func{System.Collections.Generic.IEnumerable{System.Composition.Hosting.Core.CompositionDependency},System.Composition.Hosting.Core.ExportDescriptor})">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.Core.ExportDescriptorPromise" /> class.</summary>
|
||||
<param name="contract">The promised contract.</param>
|
||||
<param name="origin">A description of the promise's origin. For example, a part type.</param>
|
||||
<param name="isShared">
|
||||
<see langword="true" /> if the promise is shared, otherwise <see langword="false" />.</param>
|
||||
<param name="dependencies">A function that provides the dependencies required to fulfill the promise.</param>
|
||||
<param name="getDescriptor">A function that provides the promised descriptor.</param>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.ExportDescriptorPromise.GetDescriptor">
|
||||
<summary>Retrieves the promised descriptor.</summary>
|
||||
<returns>The descriptor.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.ExportDescriptorPromise.ToString">
|
||||
<summary>Returns the string representation of this <see cref="T:System.Composition.Hosting.Core.ExportDescriptorPromise" /> object.</summary>
|
||||
<returns>The string representation of this <see cref="T:System.Composition.Hosting.Core.ExportDescriptorPromise" /> object.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.ExportDescriptorPromise.Contract">
|
||||
<summary>Gets the contract fulfilled by this promise.</summary>
|
||||
<returns>The contract.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.ExportDescriptorPromise.Dependencies">
|
||||
<summary>Gets the dependencies that are required to fulfill this promise.</summary>
|
||||
<returns>A collection of dependencies.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.ExportDescriptorPromise.IsShared">
|
||||
<summary>Gets a value that indicates whether the promise is shared.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the promise is shared within some context; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.ExportDescriptorPromise.Origin">
|
||||
<summary>Gets a description of where the promise originates (for example, a part type), used to provide readable errors.</summary>
|
||||
<returns>A description of the promise's origin.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.Core.ExportDescriptorProvider">
|
||||
<summary>Provides the description of an export for a part known to the composition engine.</summary>
|
||||
</member>
|
||||
<member name="F:System.Composition.Hosting.Core.ExportDescriptorProvider.NoDependencies">
|
||||
<summary>Indicates a lack of dependencies.</summary>
|
||||
</member>
|
||||
<member name="F:System.Composition.Hosting.Core.ExportDescriptorProvider.NoExportDescriptors">
|
||||
<summary>Indicates a lack of export descriptors.</summary>
|
||||
</member>
|
||||
<member name="F:System.Composition.Hosting.Core.ExportDescriptorProvider.NoMetadata">
|
||||
<summary>Indicates a lack of metadata.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.ExportDescriptorProvider.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.Core.ExportDescriptorProvider" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.ExportDescriptorProvider.GetExportDescriptors(System.Composition.Hosting.Core.CompositionContract,System.Composition.Hosting.Core.DependencyAccessor)">
|
||||
<summary>Retrieves promise export descriptors for the specified export key.</summary>
|
||||
<param name="contract">The export key required by another component.</param>
|
||||
<param name="descriptorAccessor">An accessor for the other descriptors in the composition.</param>
|
||||
<returns>A collection of promises for new export descriptors.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.Core.LifetimeContext">
|
||||
<summary>Represents a node in the lifetime tree.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.LifetimeContext.AddBoundInstance(System.IDisposable)">
|
||||
<summary>Binds the lifetime of a disposable part to this lifetime context.</summary>
|
||||
<param name="instance">The part.</param>
|
||||
<exception cref="T:System.ObjectDisposedException">The operation was performed on a disposed object.</exception>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.LifetimeContext.AllocateSharingId">
|
||||
<summary>Generates an identifier that can be used to locate shared part instances.</summary>
|
||||
<returns>A new unique identifier.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.LifetimeContext.Dispose">
|
||||
<summary>Releases the lifetime context and any part instances bound to it.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.LifetimeContext.FindContextWithin(System.String)">
|
||||
<summary>Finds the broadest lifetime context within all of the specified sharing boundaries.</summary>
|
||||
<param name="sharingBoundary">The sharing boundary to find a lifetime context within.</param>
|
||||
<returns>The broadest lifetime context within all of the specified sharing boundaries.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.LifetimeContext.GetOrCreate(System.Int32,System.Composition.Hosting.Core.CompositionOperation,System.Composition.Hosting.Core.CompositeActivator)">
|
||||
<summary>Retrieves a shared part instance with the specified ID, or if the part instance can not be found, creates and shares a part instance using the specified creator within the specified operation.</summary>
|
||||
<param name="sharingId">The ID of the shared part.</param>
|
||||
<param name="operation">An operation in which to create a part, if necessary.</param>
|
||||
<param name="creator">An activator that can activate a new part instance, if necessary.</param>
|
||||
<returns>The new or retrieved part.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.LifetimeContext.ToString">
|
||||
<summary>Returns the string representation of this <see cref="T:System.Composition.Hosting.Core.LifetimeContext" /> object.</summary>
|
||||
<returns>The string representation of this <see cref="T:System.Composition.Hosting.Core.LifetimeContext" /> object.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.LifetimeContext.TryGetExport(System.Composition.Hosting.Core.CompositionContract,System.Object@)">
|
||||
<summary>Retrieves a contract instance from the composition context.</summary>
|
||||
<param name="contract">The contract.</param>
|
||||
<param name="export">After this method returns, contains the contract instance if available; otherwise, <see langword="null" />.</param>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <paramref name="contract" />.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if the instance was retrieved; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.Composition.Runtime.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Composition.Runtime.dll
Normal file
Binary file not shown.
231
OnDocScript/bin/Debug/System.Composition.Runtime.xml
Normal file
231
OnDocScript/bin/Debug/System.Composition.Runtime.xml
Normal file
@@ -0,0 +1,231 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Composition.Runtime</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Composition.CompositionContext">
|
||||
<summary>Provides methods to retrieve exports from the composition.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.CompositionContext" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.GetExport(System.Composition.Hosting.Core.CompositionContract)">
|
||||
<summary>Retrieves the export that matches the specified contract.</summary>
|
||||
<param name="contract">The contract to match.</param>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <paramref name="contract" />.</exception>
|
||||
<returns>The exported value.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.GetExport(System.Type,System.String)">
|
||||
<summary>Retrieves the export that matches the specified name and type.</summary>
|
||||
<param name="exportType">The type to match.</param>
|
||||
<param name="contractName">The name to match.</param>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <paramref name="exportType" /> and <paramref name="contractName" />.</exception>
|
||||
<returns>The exported value.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.GetExport(System.Type)">
|
||||
<summary>Retrieves the export that matches the specified type.</summary>
|
||||
<param name="exportType">The type to match.</param>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <paramref name="exportType" />.</exception>
|
||||
<returns>The exported value.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.GetExport``1">
|
||||
<summary>Retrieves the export that matches the specified generic type parameter.</summary>
|
||||
<typeparam name="TExport">The type to match.</typeparam>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <typeparamref name="TExport" />.</exception>
|
||||
<returns>The exported value.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.GetExport``1(System.String)">
|
||||
<summary>Retrieves the export that matches the specified generic type parameter and contract name.</summary>
|
||||
<param name="contractName">The name to match.</param>
|
||||
<typeparam name="TExport">The type to match.</typeparam>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <typeparamref name="TExport" /> and <paramref name="contractName" />.</exception>
|
||||
<returns>The exported value.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.GetExports(System.Type,System.String)">
|
||||
<summary>Retrieves all exports that match the specified contract name and type.</summary>
|
||||
<param name="exportType">The type to match.</param>
|
||||
<param name="contractName">The name to match.</param>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No exports were found for <paramref name="exportType" />.</exception>
|
||||
<returns>A collection of exported values.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.GetExports(System.Type)">
|
||||
<summary>Retrieves a collection of all exports that match the specified type.</summary>
|
||||
<param name="exportType">The type to match.</param>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No exports were found for <paramref name="exportType" />.</exception>
|
||||
<returns>A collection of exported values.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.GetExports``1">
|
||||
<summary>Retrieves all exports that match the specified generic type parameter.</summary>
|
||||
<typeparam name="TExport">The type to match.</typeparam>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No exports were found for <typeparamref name="TExport" />.</exception>
|
||||
<returns>A collection of exported values.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.GetExports``1(System.String)">
|
||||
<summary>Retrieves all exports that match the specified generic type parameter and contract name.</summary>
|
||||
<param name="contractName">The name to match.</param>
|
||||
<typeparam name="TExport">The type to match.</typeparam>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No exports were found for <typeparamref name="TExport" /> and <paramref name="contractName" />.</exception>
|
||||
<returns>A collection of exported values.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.TryGetExport(System.Composition.Hosting.Core.CompositionContract,System.Object@)">
|
||||
<summary>Returns the export that matches the specified contract, or returns <see langword="null" /> if no match is found.</summary>
|
||||
<param name="contract">The contract to match.</param>
|
||||
<param name="export">When this method returns, contains the matched export or <see langword="null" />.</param>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <paramref name="contract" />.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if an export was found; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.TryGetExport(System.Type,System.Object@)">
|
||||
<summary>Returns the export that matches the specified type, or returns <see langword="null" /> if no match is found.</summary>
|
||||
<param name="exportType">The type to match.</param>
|
||||
<param name="export">When this method returns, contains the matched export or <see langword="null" />.</param>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <paramref name="contract" />.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if an export was found; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.TryGetExport(System.Type,System.String,System.Object@)">
|
||||
<summary>Returns the export that matches the specified contract name and type, or returns <see langword="null" /> if no match is found.</summary>
|
||||
<param name="exportType">The type to match.</param>
|
||||
<param name="contractName">The name to match.</param>
|
||||
<param name="export">When this method returns, contains the matched export or <see langword="null" />.</param>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <paramref name="contract" />.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if an export was found; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.TryGetExport``1(``0@)">
|
||||
<summary>Returns the export that matches the specified generic type parameter, or returns <see langword="null" /> if no match is found.</summary>
|
||||
<param name="export">When this method returns, contains the matched export or <see langword="null" />.</param>
|
||||
<typeparam name="TExport">The type to match.</typeparam>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <paramref name="contract" />.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if an export was found; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContext.TryGetExport``1(System.String,``0@)">
|
||||
<summary>Returns the export that matches the specified generic type parameter and contract name, or returns <see langword="null" /> if no match is found.</summary>
|
||||
<param name="contractName">The name to match.</param>
|
||||
<param name="export">When this method returns, contains the matched export or <see langword="null" />.</param>
|
||||
<typeparam name="TExport">The type to match.</typeparam>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">No export was found for <paramref name="contract" />.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if an export was found; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Export`1">
|
||||
<summary>A reference that allows the graph of parts associated with an exported instance to be released.</summary>
|
||||
<typeparam name="T">The type of the instance.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Composition.Export`1.#ctor(`0,System.Action)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Export`1" /> class.</summary>
|
||||
<param name="value">The exported instance.</param>
|
||||
<param name="disposeAction">An action that will dispose the exported instance.</param>
|
||||
</member>
|
||||
<member name="M:System.Composition.Export`1.Dispose">
|
||||
<summary>Disposes the exported instance.</summary>
|
||||
</member>
|
||||
<member name="P:System.Composition.Export`1.Value">
|
||||
<summary>Gets the exported value.</summary>
|
||||
<returns>The exported value.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.ExportFactory`1">
|
||||
<summary>A factory that creates new instances of a part that provides the specified export.</summary>
|
||||
<typeparam name="T">The type of the export.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Composition.ExportFactory`1.#ctor(System.Func{System.Tuple{`0,System.Action}})">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ExportFactory`1" /> class.</summary>
|
||||
<param name="exportCreator">A function that returns the exported value in <see cref="M:System.Tuple`2.Item1" /> and an <see cref="T:System.Action" /> that releases it in <see cref="M:System.Tuple`2.Item2" />.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="exportCreator" /> is <see langword="null" />.</exception>
|
||||
</member>
|
||||
<member name="M:System.Composition.ExportFactory`1.CreateExport">
|
||||
<summary>Creates an instance of the factory's export type.</summary>
|
||||
<returns>A valid instance of the factory's export type.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.ExportFactory`2">
|
||||
<summary>A factory that creates new instances of a part that provides the specified export, with attached metadata.</summary>
|
||||
<typeparam name="T">The type of the created part.</typeparam>
|
||||
<typeparam name="TMetadata">The metadata for the type of the created part.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Composition.ExportFactory`2.#ctor(System.Func{System.Tuple{`0,System.Action}},`1)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.ExportFactory`2" /> class.</summary>
|
||||
<param name="exportCreator">A function that returns the exported value in <see cref="M:System.Tuple`2.Item1" /> and an <see cref="T:System.Action" /> that releases it in <see cref="M:System.Tuple`2.Item2" />.</param>
|
||||
<param name="metadata">The metadata to attach to the created parts.</param>
|
||||
</member>
|
||||
<member name="P:System.Composition.ExportFactory`2.Metadata">
|
||||
<summary>Gets the metadata to be attached to the created parts.</summary>
|
||||
<returns>A metadata object that will be attached to the created parts.</returns>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.CompositionFailedException">
|
||||
<summary>The exception that is thrown when composition problems occur.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.CompositionFailedException.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.CompositionFailedException" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.CompositionFailedException.#ctor(System.String,System.Exception)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.CompositionFailedException" /> class with the specified message and inner exception.</summary>
|
||||
<param name="message">A message that contains information about the exception.</param>
|
||||
<param name="innerException">The inner exception to wrap in this exception.</param>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.CompositionFailedException.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.CompositionFailedException" /> class with the specified message.</summary>
|
||||
<param name="message">A message that contains information about the exception.</param>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.Core.CompositionContract">
|
||||
<summary>Represents an agreement between parts that allows the composition engine to match imports with exports.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.Core.CompositionContract" /> class with the specified contract name, type, and metadata constraints.</summary>
|
||||
<param name="contractType">The contract type.</param>
|
||||
<param name="contractName">The contract name.</param>
|
||||
<param name="metadataConstraints">A collection of metadata constraints for the contract.</param>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type,System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.Core.CompositionContract" /> class with the specified contract name and type.</summary>
|
||||
<param name="contractType">The contract type.</param>
|
||||
<param name="contractName">The contract name.</param>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.Core.CompositionContract" /> class with the specified contract type.</summary>
|
||||
<param name="contractType">The contract type.</param>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionContract.ChangeType(System.Type)">
|
||||
<summary>Creates a new contract that has the specified type but the same name and constraints as this object.</summary>
|
||||
<param name="newContractType">The new contract type.</param>
|
||||
<returns>The created contract.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionContract.Equals(System.Object)">
|
||||
<summary>Determines whether the specified object is equal to this instance of <see cref="T:System.Composition.Hosting.Core.CompositionContract" />.</summary>
|
||||
<param name="obj">The object to compare with this object.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the specified object is equal to the current object; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionContract.GetHashCode">
|
||||
<summary>Returns the hash code for this <see cref="T:System.Composition.Hosting.Core.CompositionContract" /> object.</summary>
|
||||
<returns>The hash code for the current object.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionContract.ToString">
|
||||
<summary>Returns the string representation of this <see cref="T:System.Composition.Hosting.Core.CompositionContract" /> object.</summary>
|
||||
<returns>The string representation of this <see cref="T:System.Composition.Hosting.Core.CompositionContract" /> object.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.Core.CompositionContract.TryUnwrapMetadataConstraint``1(System.String,``0@,System.Composition.Hosting.Core.CompositionContract@)">
|
||||
<summary>Gets a metadata constraint that has the specified type and name, if it exists.</summary>
|
||||
<param name="constraintName">The name of the metadata constraint.</param>
|
||||
<param name="constraintValue">When this method returns, contains the value of the constraint if it was found. This parameter is treated as uninitialized.</param>
|
||||
<param name="remainingContract">When this method returns, holds the contract with the constraint removed, if the constraint was found. This parameter is treated as uninitialized.</param>
|
||||
<typeparam name="T">The type of the metadata constraint value.</typeparam>
|
||||
<returns>
|
||||
<see langword="true" /> if the constrained metadata item was unwrapped and the value extracted; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.CompositionContract.ContractName">
|
||||
<summary>Gets the name of the contract.</summary>
|
||||
<returns>The contract name.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.CompositionContract.ContractType">
|
||||
<summary>Gets the contract type.</summary>
|
||||
<returns>The contract type.</returns>
|
||||
</member>
|
||||
<member name="P:System.Composition.Hosting.Core.CompositionContract.MetadataConstraints">
|
||||
<summary>Gets a collection of metadata constraints for the contract.</summary>
|
||||
<returns>A collection of metadata constraints.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.Composition.TypedParts.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Composition.TypedParts.dll
Normal file
Binary file not shown.
144
OnDocScript/bin/Debug/System.Composition.TypedParts.xml
Normal file
144
OnDocScript/bin/Debug/System.Composition.TypedParts.xml
Normal file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Composition.TypedParts</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Composition.CompositionContextExtensions">
|
||||
<summary>Adds methods to the composition context that are specific to the typed parts model.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContextExtensions.SatisfyImports(System.Composition.CompositionContext,System.Object,System.Composition.Convention.AttributedModelProvider)">
|
||||
<summary>Satisfies the imports of the specified object from the specified context, using the specified conventions.</summary>
|
||||
<param name="compositionContext">The context to draw exports from.</param>
|
||||
<param name="objectWithLooseImports">The object to satisfy imports on.</param>
|
||||
<param name="conventions">Conventions to use when satisfying imports.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="compositionContext" /> is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="objectWithLooseImports" /> is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="conventions" /> is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">
|
||||
<paramref name="objectWithLooseImports" /> has a missing dependency.</exception>
|
||||
</member>
|
||||
<member name="M:System.Composition.CompositionContextExtensions.SatisfyImports(System.Composition.CompositionContext,System.Object)">
|
||||
<summary>Satisfies the imports of the specified object from the specified context.</summary>
|
||||
<param name="compositionContext">The context to draw exports from.</param>
|
||||
<param name="objectWithLooseImports">The object to satisfy imports on.</param>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="compositionContext" /> is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="objectWithLooseImports" /> is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.Composition.Hosting.CompositionFailedException">
|
||||
<paramref name="objectWithLooseImports" /> has a missing dependency.</exception>
|
||||
</member>
|
||||
<member name="T:System.Composition.Hosting.ContainerConfiguration">
|
||||
<summary>Configures and constructs a lightweight container.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Composition.Hosting.ContainerConfiguration" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.CreateContainer">
|
||||
<summary>Creates the container.</summary>
|
||||
<returns>The created container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithAssemblies(System.Collections.Generic.IEnumerable{System.Reflection.Assembly},System.Composition.Convention.AttributedModelProvider)">
|
||||
<summary>Adds part types from the specified collection of assemblies to the container, using the specified conventions.</summary>
|
||||
<param name="assemblies">The assemblies to add part types from.</param>
|
||||
<param name="conventions">The conventions to use for part types.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithAssemblies(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
|
||||
<summary>Adds part types from the specified collection of assemblies to the container.</summary>
|
||||
<param name="assemblies">The assemblies to add part types from.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithAssembly(System.Reflection.Assembly,System.Composition.Convention.AttributedModelProvider)">
|
||||
<summary>Adds part types from the specified assembly to the container, using the specified conventions.</summary>
|
||||
<param name="assembly">The assembly to add part types from.</param>
|
||||
<param name="conventions">The conventions to use for part types.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithAssembly(System.Reflection.Assembly)">
|
||||
<summary>Adds part types from the specified assembly to the container.</summary>
|
||||
<param name="assembly">The assembly to add part types from.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithDefaultConventions(System.Composition.Convention.AttributedModelProvider)">
|
||||
<summary>Specifies the default conventions to use for added parts.</summary>
|
||||
<param name="conventions">The conventions to use for part types.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithExport(System.Type,System.Object,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>Add a single instance to the container.</summary>
|
||||
<param name="contractType">The type of the contract of the instance.</param>
|
||||
<param name="exportedInstance">The instance to add to the container.</param>
|
||||
<param name="contractName">An optional name that distinguishes this contract from others with the same type.</param>
|
||||
<param name="metadata">Optionally, a non-empty collection of named constraints that apply to the contract.</param>
|
||||
<returns>A configuration object allowing configuration to continue.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithExport(System.Type,System.Object)">
|
||||
<summary>Add a single instance to the container.</summary>
|
||||
<param name="contractType">The type of the contract of the instance.</param>
|
||||
<param name="exportedInstance">The instance to add to the container.</param>
|
||||
<returns>A configuration object allowing configuration to continue.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithExport``1(``0,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>Add a single instance to the container.</summary>
|
||||
<param name="exportedInstance">The instance to add to the container.</param>
|
||||
<param name="contractName">Optionally, a name that distinguishes this contract from others with the same type.</param>
|
||||
<param name="metadata">Optionally, a non-empty collection of named constraints that apply to the contract.</param>
|
||||
<typeparam name="TExport">The type of the contract of the instance.</typeparam>
|
||||
<returns>A configuration object allowing configuration to continue.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithExport``1(``0)">
|
||||
<summary>Add a single instance to the container.</summary>
|
||||
<param name="exportedInstance">The instance to add to the container.</param>
|
||||
<typeparam name="TExport">The type of the contract of the instance.</typeparam>
|
||||
<returns>A configuration object allowing configuration to continue.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithPart(System.Type,System.Composition.Convention.AttributedModelProvider)">
|
||||
<summary>Adds a specified part type to the container.</summary>
|
||||
<param name="partType">The part type to add.</param>
|
||||
<param name="conventions">The conventions to use for the part type.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithPart(System.Type)">
|
||||
<summary>Adds a specified part type to the container.</summary>
|
||||
<param name="partType">The part type to add.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithPart``1">
|
||||
<summary>Adds the specified type to the container.</summary>
|
||||
<typeparam name="TPart">The type to add.</typeparam>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithPart``1(System.Composition.Convention.AttributedModelProvider)">
|
||||
<summary>Adds the specified type to the container using the specified conventions.</summary>
|
||||
<param name="conventions">The conventions to use for the part type.</param>
|
||||
<typeparam name="TPart">The type to add.</typeparam>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithParts(System.Collections.Generic.IEnumerable{System.Type},System.Composition.Convention.AttributedModelProvider)">
|
||||
<summary>Adds the specified part types to the container using the specified conventions.</summary>
|
||||
<param name="partTypes">A collection of part types to add.</param>
|
||||
<param name="conventions">The conventions to use for part types.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithParts(System.Collections.Generic.IEnumerable{System.Type})">
|
||||
<summary>Adds the specified part types to the container.</summary>
|
||||
<param name="partTypes">A collection of part types to add.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithParts(System.Type[])">
|
||||
<summary>Adds the specified array of part types to the container.</summary>
|
||||
<param name="partTypes">An array of part types to add.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
<member name="M:System.Composition.Hosting.ContainerConfiguration.WithProvider(System.Composition.Hosting.Core.ExportDescriptorProvider)">
|
||||
<summary>Adds the specified provider to the container.</summary>
|
||||
<param name="exportDescriptorProvider">The provider to add.</param>
|
||||
<returns>An object that can be used to further configure the container.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.IO.Pipelines.dll
Normal file
BIN
OnDocScript/bin/Debug/System.IO.Pipelines.dll
Normal file
Binary file not shown.
391
OnDocScript/bin/Debug/System.IO.Pipelines.xml
Normal file
391
OnDocScript/bin/Debug/System.IO.Pipelines.xml
Normal file
@@ -0,0 +1,391 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.IO.Pipelines</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.IO.Pipelines.FlushResult">
|
||||
<summary>Result returned by <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> call.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.FlushResult.#ctor(System.Boolean,System.Boolean)">
|
||||
<summary>Initializes a new instance of <see cref="T:System.IO.Pipelines.FlushResult" /> struct setting the <see cref="P:System.IO.Pipelines.FlushResult.IsCanceled" /> and <see cref="P:System.IO.Pipelines.FlushResult.IsCompleted" /> flags.</summary>
|
||||
<param name="isCanceled">
|
||||
<see langword="true" /> to indicate the current <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation that produced this <see cref="T:System.IO.Pipelines.FlushResult" /> was canceled by <see cref="M:System.IO.Pipelines.PipeWriter.CancelPendingFlush" />; otherwise, <see langword="false" />.</param>
|
||||
<param name="isCompleted">
|
||||
<see langword="true" /> to indicate the reader is no longer reading data written to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</param>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.FlushResult.IsCanceled">
|
||||
<summary>Gets a value that indicates whether the current <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation was canceled by <see cref="M:System.IO.Pipelines.PipeWriter.CancelPendingFlush" />.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the current <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation was canceled by <see cref="M:System.IO.Pipelines.PipeWriter.CancelPendingFlush" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.FlushResult.IsCompleted">
|
||||
<summary>Gets a value that indicates the reader is no longer reading data written to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the reader is no longer reading data written to the <see cref="T:System.IO.Pipelines.PipeWriter" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Pipelines.IDuplexPipe">
|
||||
<summary>Defines a class that provides a duplex pipe from which data can be read from and written to.</summary>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.IDuplexPipe.Input">
|
||||
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeReader" /> half of the duplex pipe.</summary>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.IDuplexPipe.Output">
|
||||
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeWriter" /> half of the duplex pipe.</summary>
|
||||
</member>
|
||||
<member name="T:System.IO.Pipelines.Pipe">
|
||||
<summary>The default <see cref="T:System.IO.Pipelines.PipeWriter" /> and <see cref="T:System.IO.Pipelines.PipeReader" /> implementation.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.Pipe.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Pipelines.Pipe" /> class using <see cref="P:System.IO.Pipelines.PipeOptions.Default" /> as options.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.Pipe.#ctor(System.IO.Pipelines.PipeOptions)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Pipelines.Pipe" /> class with the specified options.</summary>
|
||||
<param name="options">The set of options for this pipe.</param>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.Pipe.Reset">
|
||||
<summary>Resets the pipe.</summary>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.Pipe.Reader">
|
||||
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeReader" /> for this pipe.</summary>
|
||||
<returns>A <see cref="T:System.IO.Pipelines.PipeReader" /> instance for this pipe.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.Pipe.Writer">
|
||||
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeWriter" /> for this pipe.</summary>
|
||||
<returns>A <see cref="T:System.IO.Pipelines.PipeWriter" /> instance for this pipe.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Pipelines.PipeOptions">
|
||||
<summary>Represents a set of <see cref="T:System.IO.Pipelines.Pipe" /> options.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Pipelines.PipeOptions" /> class with the specified parameters.</summary>
|
||||
<param name="pool">The pool of memory blocks to be used for buffer management.</param>
|
||||
<param name="readerScheduler">The <see cref="T:System.IO.Pipelines.PipeScheduler" /> to be used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks and async continuations.</param>
|
||||
<param name="writerScheduler">The <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and async continuations.</param>
|
||||
<param name="pauseWriterThreshold">The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> before <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking. A value of zero prevents <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> from ever blocking, effectively making the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> unlimited.</param>
|
||||
<param name="resumeWriterThreshold">The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</param>
|
||||
<param name="minimumSegmentSize">The minimum size of the segment requested from <paramref name="pool" />.</param>
|
||||
<param name="useSynchronizationContext">
|
||||
<see langword="true" /> if asynchronous continuations should be executed on the <see cref="T:System.Threading.SynchronizationContext" /> they were captured on; <see langword="false" /> otherwise. This takes precedence over the schedulers specified in <see cref="P:System.IO.Pipelines.PipeOptions.ReaderScheduler" /> and <see cref="P:System.IO.Pipelines.PipeOptions.WriterScheduler" />.</param>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeOptions.Default">
|
||||
<summary>Gets the default instance of <see cref="T:System.IO.Pipelines.PipeOptions" />.</summary>
|
||||
<returns>A <see cref="T:System.IO.Pipelines.PipeOptions" /> object initialized with default parameters.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeOptions.MinimumSegmentSize">
|
||||
<summary>Gets the minimum size of the segment requested from the <see cref="P:System.IO.Pipelines.PipeOptions.Pool" />.</summary>
|
||||
<returns>The minimum size of the segment requested from the <see cref="P:System.IO.Pipelines.PipeOptions.Pool" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeOptions.PauseWriterThreshold">
|
||||
<summary>Gets the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking. A value of zero prevents <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> from ever blocking, effectively making the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> unlimited.</summary>
|
||||
<returns>The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeOptions.Pool">
|
||||
<summary>Gets the <see cref="T:System.Buffers.MemoryPool`1" /> object used for buffer management.</summary>
|
||||
<returns>A pool of memory blocks used for buffer management.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeOptions.ReaderScheduler">
|
||||
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks and async continuations.</summary>
|
||||
<returns>A <see cref="T:System.IO.Pipelines.PipeScheduler" /> that is used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks and async continuations.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeOptions.ResumeWriterThreshold">
|
||||
<summary>Gets the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</summary>
|
||||
<returns>The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeOptions.UseSynchronizationContext">
|
||||
<summary>Gets a value that determines if asynchronous callbacks and continuations should be executed on the <see cref="T:System.Threading.SynchronizationContext" /> they were captured on. This takes precedence over the schedulers specified in <see cref="P:System.IO.Pipelines.PipeOptions.ReaderScheduler" /> and <see cref="P:System.IO.Pipelines.PipeOptions.WriterScheduler" />.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if asynchronous callbacks and continuations should be executed on the <see cref="T:System.Threading.SynchronizationContext" /> they were captured on; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeOptions.WriterScheduler">
|
||||
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and async continuations.</summary>
|
||||
<returns>A <see cref="T:System.IO.Pipelines.PipeScheduler" /> object used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and async continuations.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Pipelines.PipeReader">
|
||||
<summary>Defines a class that provides access to a read side of pipe.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Pipelines.PipeReader" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.AdvanceTo(System.SequencePosition,System.SequencePosition)">
|
||||
<summary>Moves forward the pipeline's read cursor to after the consumed data, marking the data as processed, read and examined.</summary>
|
||||
<param name="consumed">Marks the extent of the data that has been successfully processed.</param>
|
||||
<param name="examined">Marks the extent of the data that has been read and examined.</param>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.AdvanceTo(System.SequencePosition)">
|
||||
<summary>Moves forward the pipeline's read cursor to after the consumed data, marking the data as processed.</summary>
|
||||
<param name="consumed">Marks the extent of the data that has been successfully processed.</param>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.AsStream(System.Boolean)">
|
||||
<summary>Returns a <see cref="T:System.IO.Stream" /> representation of the <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
|
||||
<param name="leaveOpen">An optional flag that indicates whether disposing the returned <see cref="T:System.IO.Stream" /> leaves <see cref="T:System.IO.Pipelines.PipeReader" /> open (<see langword="true" />) or completes <see cref="T:System.IO.Pipelines.PipeReader" /> (<see langword="false" />).</param>
|
||||
<returns>A stream that represents the <see cref="T:System.IO.Pipelines.PipeReader" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.CancelPendingRead">
|
||||
<summary>Cancels the pending <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> operation without causing it to throw and without completing the <see cref="T:System.IO.Pipelines.PipeReader" />. If there is no pending operation, this cancels the next operation.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.Complete(System.Exception)">
|
||||
<summary>Signals to the producer that the consumer is done reading.</summary>
|
||||
<param name="exception">Optional <see cref="T:System.Exception" /> indicating a failure that's causing the pipeline to complete.</param>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.CompleteAsync(System.Exception)">
|
||||
<summary>Marks the current pipe reader instance as being complete, meaning no more data will be read from it.</summary>
|
||||
<param name="exception">An optional exception that indicates the failure that caused the reader to complete.</param>
|
||||
<returns>A value task that represents the asynchronous complete operation.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.CopyToAsync(System.IO.Pipelines.PipeWriter,System.Threading.CancellationToken)">
|
||||
<summary>Asynchronously reads the bytes from the <see cref="T:System.IO.Pipelines.PipeReader" /> and writes them to the specified <see cref="T:System.IO.Pipelines.PipeWriter" />, using a specified cancellation token.</summary>
|
||||
<param name="destination">The pipe writer to which the contents of the current stream will be copied.</param>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
|
||||
<returns>A task that represents the asynchronous copy operation.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.CopyToAsync(System.IO.Stream,System.Threading.CancellationToken)">
|
||||
<summary>Asynchronously reads the bytes from the <see cref="T:System.IO.Pipelines.PipeReader" /> and writes them to the specified stream, using a specified cancellation token.</summary>
|
||||
<param name="destination">The stream to which the contents of the current stream will be copied.</param>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
|
||||
<returns>A task that represents the asynchronous copy operation.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.Create(System.Buffers.ReadOnlySequence{System.Byte})">
|
||||
<summary>Creates a <see cref="T:System.IO.Pipelines.PipeReader" /> wrapping the specified <see cref="T:System.Buffers.ReadOnlySequence`1" />.</summary>
|
||||
<param name="sequence">The sequence to wrap.</param>
|
||||
<returns>A <see cref="T:System.IO.Pipelines.PipeReader" /> that wraps the <see cref="T:System.Buffers.ReadOnlySequence`1" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.Create(System.IO.Stream,System.IO.Pipelines.StreamPipeReaderOptions)">
|
||||
<summary>Creates a <see cref="T:System.IO.Pipelines.PipeReader" /> wrapping the specified <see cref="T:System.IO.Stream" />.</summary>
|
||||
<param name="stream">The stream that the pipe reader will wrap.</param>
|
||||
<param name="readerOptions">The options to configure the pipe reader.</param>
|
||||
<returns>A <see cref="T:System.IO.Pipelines.PipeReader" /> that wraps the <see cref="T:System.IO.Stream" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.OnWriterCompleted(System.Action{System.Exception,System.Object},System.Object)">
|
||||
<summary>Registers a callback that executes when the <see cref="T:System.IO.Pipelines.PipeWriter" /> side of the pipe is completed.</summary>
|
||||
<param name="callback">The callback to register.</param>
|
||||
<param name="state">The state object to pass to <paramref name="callback" /> when it's invoked.</param>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)">
|
||||
<summary>Asynchronously reads a sequence of bytes from the current <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see langword="default" />.</param>
|
||||
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> representing the asynchronous read operation.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.ReadAtLeastAsync(System.Int32,System.Threading.CancellationToken)">
|
||||
<summary>Asynchronously reads a sequence of bytes from the current <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
|
||||
<param name="minimumSize">The minimum length that needs to be buffered in order for the call to return.</param>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see langword="default" />.</param>
|
||||
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> representing the asynchronous read operation.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.ReadAtLeastAsyncCore(System.Int32,System.Threading.CancellationToken)">
|
||||
<summary>Asynchronously reads a sequence of bytes from the current <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
|
||||
<param name="minimumSize">The minimum length that needs to be buffered in order for the call to return.</param>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see langword="default" />.</param>
|
||||
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> representing the asynchronous read operation.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeReader.TryRead(System.IO.Pipelines.ReadResult@)">
|
||||
<summary>Attempts to synchronously read data the <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
|
||||
<param name="result">When this method returns <see langword="true" />, this value is set to a <see cref="T:System.IO.Pipelines.ReadResult" /> instance that represents the result of the read call; otherwise, this value is set to <see langword="default" />.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if data was available, or if the call was canceled or the writer was completed; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Pipelines.PipeScheduler">
|
||||
<summary>Abstraction for running <see cref="T:System.IO.Pipelines.PipeReader" /> and <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and continuations.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeScheduler.#ctor">
|
||||
<summary>Initializes new a <see cref="T:System.IO.Pipelines.PipeScheduler" /> instance.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeScheduler.Schedule(System.Action{System.Object},System.Object)">
|
||||
<summary>Requests <paramref name="action" /> to be run on scheduler with <paramref name="state" /> being passed in.</summary>
|
||||
<param name="action">The single-parameter action delegate to schedule.</param>
|
||||
<param name="state">The parameter to pass to the <paramref name="action" /> delegate.</param>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeScheduler.Inline">
|
||||
<summary>The <see cref="T:System.IO.Pipelines.PipeScheduler" /> implementation that runs callbacks inline.</summary>
|
||||
<returns>A <see cref="T:System.IO.Pipelines.PipeScheduler" /> instance that runs callbacks inline.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeScheduler.ThreadPool">
|
||||
<summary>The <see cref="T:System.IO.Pipelines.PipeScheduler" /> implementation that queues callbacks to the thread pool.</summary>
|
||||
<returns>A <see cref="T:System.IO.Pipelines.PipeScheduler" /> instance that queues callbacks to the thread pool.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Pipelines.PipeWriter">
|
||||
<summary>Defines a class that provides a pipeline to which data can be written.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.#ctor">
|
||||
<summary>Initializes a new instance of the class.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.Advance(System.Int32)">
|
||||
<summary>Notifies the <see cref="T:System.IO.Pipelines.PipeWriter" /> that <paramref name="bytes" /> bytes were written to the output <see cref="T:System.Span`1" /> or <see cref="T:System.Memory`1" />. You must call <see cref="M:System.IO.Pipelines.PipeWriter.GetSpan(System.Int32)" /> or <see cref="M:System.IO.Pipelines.PipeWriter.GetMemory(System.Int32)" /> again and use the returned buffer to continue writing more data after calling <see cref="M:System.IO.Pipelines.PipeWriter.Advance(System.Int32)" />; you cannot write to a previously acquired buffer.</summary>
|
||||
<param name="bytes">The number of bytes written to the <see cref="T:System.Span`1" /> or <see cref="T:System.Memory`1" />.</param>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.AsStream(System.Boolean)">
|
||||
<summary>Returns a <see cref="T:System.IO.Stream" /> representation of the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
|
||||
<param name="leaveOpen">An optional flag that indicates whether disposing the returned <see cref="T:System.IO.Stream" /> leaves <see cref="T:System.IO.Pipelines.PipeReader" /> open (<see langword="true" />) or completes <see cref="T:System.IO.Pipelines.PipeReader" /> (<see langword="false" />).</param>
|
||||
<returns>A stream that represents the <see cref="T:System.IO.Pipelines.PipeWriter" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.CancelPendingFlush">
|
||||
<summary>Cancels the pending <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> or <see cref="M:System.IO.Pipelines.PipeWriter.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)" /> operation without causing the operation to throw and without completing the <see cref="T:System.IO.Pipelines.PipeWriter" />. If there is no pending operation, this cancels the next operation.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.Complete(System.Exception)">
|
||||
<summary>Marks the <see cref="T:System.IO.Pipelines.PipeWriter" /> as being complete, meaning no more items will be written to it.</summary>
|
||||
<param name="exception">Optional <see cref="T:System.Exception" /> indicating a failure that's causing the pipeline to complete.</param>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.CompleteAsync(System.Exception)">
|
||||
<summary>Marks the current pipe writer instance as being complete, meaning no more data will be written to it.</summary>
|
||||
<param name="exception">An optional exception that indicates the failure that caused the pipeline to complete.</param>
|
||||
<returns>A value task that represents the asynchronous complete operation.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.CopyFromAsync(System.IO.Stream,System.Threading.CancellationToken)">
|
||||
<summary>Asynchronously reads the bytes from the specified stream and writes them to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
|
||||
<param name="source">The stream from which the contents will be copied.</param>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
|
||||
<returns>A task that represents the asynchronous copy operation.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.Create(System.IO.Stream,System.IO.Pipelines.StreamPipeWriterOptions)">
|
||||
<summary>Creates a <see cref="T:System.IO.Pipelines.PipeWriter" /> wrapping the specified <see cref="T:System.IO.Stream" />.</summary>
|
||||
<param name="stream">The stream that the pipe writer will wrap.</param>
|
||||
<param name="writerOptions">The options to configure the pipe writer.</param>
|
||||
<returns>A <see cref="T:System.IO.Pipelines.PipeWriter" /> that wraps the <see cref="T:System.IO.Stream" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)">
|
||||
<summary>Makes bytes written available to <see cref="T:System.IO.Pipelines.PipeReader" /> and runs <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> continuation.</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
|
||||
<returns>A task that represents and wraps the asynchronous flush operation.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.GetMemory(System.Int32)">
|
||||
<summary>Returns a <see cref="T:System.Memory`1" /> to write to that is at least the requested size, as specified by the <paramref name="sizeHint" /> parameter.</summary>
|
||||
<param name="sizeHint">The minimum length of the returned <see cref="T:System.Memory`1" />. If 0, a non-empty memory buffer of arbitrary size is returned.</param>
|
||||
<exception cref="T:System.OutOfMemoryException">The requested buffer size is not available.</exception>
|
||||
<returns>A memory buffer of at least <paramref name="sizeHint" /> bytes. If <paramref name="sizeHint" /> is 0, returns a non-empty buffer of arbitrary size.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.GetSpan(System.Int32)">
|
||||
<summary>Returns a <see cref="T:System.Span`1" /> to write to that is at least the requested size, as specified by the <paramref name="sizeHint" /> parameter.</summary>
|
||||
<param name="sizeHint">The minimum length of the returned <see cref="T:System.Span`1" />. If 0, a non-empty buffer of arbitrary size is returned.</param>
|
||||
<exception cref="T:System.OutOfMemoryException">The requested buffer size is not available.</exception>
|
||||
<returns>A buffer of at least <paramref name="sizeHint" /> bytes. If <paramref name="sizeHint" /> is 0, returns a non-empty buffer of arbitrary size.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.OnReaderCompleted(System.Action{System.Exception,System.Object},System.Object)">
|
||||
<summary>Registers a callback that executes when the <see cref="T:System.IO.Pipelines.PipeReader" /> side of the pipe is completed.</summary>
|
||||
<param name="callback">The callback to register.</param>
|
||||
<param name="state">The state object to pass to <paramref name="callback" /> when it's invoked.</param>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.PipeWriter.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)">
|
||||
<summary>Writes the specified byte memory range to the pipe and makes data accessible to the <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
|
||||
<param name="source">The read-only byte memory region to write.</param>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
|
||||
<returns>A task that represents the asynchronous write operation, and wraps the flush asynchronous operation.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeWriter.CanGetUnflushedBytes">
|
||||
<summary>Gets a value that indicates whether the current <see cref="T:System.IO.Pipelines.PipeWriter" /> supports reporting the count of unflushed bytes.</summary>
|
||||
<returns>
|
||||
<see langword="true" />If a class derived from <see cref="T:System.IO.Pipelines.PipeWriter" /> does not support getting the unflushed bytes, calls to <see cref="P:System.IO.Pipelines.PipeWriter.UnflushedBytes" /> throw <see cref="T:System.NotImplementedException" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.PipeWriter.UnflushedBytes">
|
||||
<summary>When overridden in a derived class, gets the count of unflushed bytes within the current writer.</summary>
|
||||
<exception cref="T:System.NotImplementedException">The <see cref="T:System.IO.Pipelines.PipeWriter" /> does not support getting the unflushed byte count.</exception>
|
||||
</member>
|
||||
<member name="T:System.IO.Pipelines.ReadResult">
|
||||
<summary>Represents the result of a <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> call.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.ReadResult.#ctor(System.Buffers.ReadOnlySequence{System.Byte},System.Boolean,System.Boolean)">
|
||||
<summary>Creates a new instance of <see cref="T:System.IO.Pipelines.ReadResult" /> setting <see cref="P:System.IO.Pipelines.ReadResult.IsCanceled" /> and <see cref="P:System.IO.Pipelines.ReadResult.IsCompleted" /> flags.</summary>
|
||||
<param name="buffer">The read-only sequence containing the bytes of data that were read in the <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> call.</param>
|
||||
<param name="isCanceled">A flag that indicates if the <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> operation that produced this <see cref="T:System.IO.Pipelines.ReadResult" /> was canceled by <see cref="M:System.IO.Pipelines.PipeReader.CancelPendingRead" />.</param>
|
||||
<param name="isCompleted">A flag that indicates whether the end of the data stream has been reached.</param>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.ReadResult.Buffer">
|
||||
<summary>Gets the <see cref="T:System.Buffers.ReadOnlySequence`1" /> that was read.</summary>
|
||||
<returns>A read-only sequence containing the bytes of data that were read in the <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> call.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.ReadResult.IsCanceled">
|
||||
<summary>Gets a value that indicates whether the current <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> operation was canceled by <see cref="M:System.IO.Pipelines.PipeReader.CancelPendingRead" />.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> operation that produced this <see cref="T:System.IO.Pipelines.ReadResult" /> was canceled by <see cref="M:System.IO.Pipelines.PipeReader.CancelPendingRead" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.ReadResult.IsCompleted">
|
||||
<summary>Gets a value that indicates whether the end of the data stream has been reached.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the end of the data stream has been reached; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Pipelines.StreamPipeExtensions">
|
||||
<summary>Provides extension methods for <see cref="T:System.IO.Stream" /> that support read and write operations directly into pipes.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.StreamPipeExtensions.CopyToAsync(System.IO.Stream,System.IO.Pipelines.PipeWriter,System.Threading.CancellationToken)">
|
||||
<summary>Asynchronously reads the bytes from the <see cref="T:System.IO.Stream" /> and writes them to the specified <see cref="T:System.IO.Pipelines.PipeWriter" />, using a cancellation token.</summary>
|
||||
<param name="source">The stream from which the contents of the current stream will be copied.</param>
|
||||
<param name="destination">The writer to which the contents of the source stream will be copied.</param>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
|
||||
<returns>A task that represents the asynchronous copy operation.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Pipelines.StreamPipeReaderOptions">
|
||||
<summary>Represents a set of options for controlling the creation of the <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.StreamPipeReaderOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Int32,System.Boolean,System.Boolean)">
|
||||
<summary>Initializes a <see cref="T:System.IO.Pipelines.StreamPipeReaderOptions" /> instance, optionally specifying a memory pool, a minimum buffer size, a minimum read size, and whether the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes.</summary>
|
||||
<param name="pool">The memory pool to use when allocating memory. The default value is <see langword="null" />.</param>
|
||||
<param name="bufferSize">The minimum buffer size to use when renting memory from the <paramref name="pool" />. The default value is 4096.</param>
|
||||
<param name="minimumReadSize">The threshold of remaining bytes in the buffer before a new buffer is allocated. The default value is 1024.</param>
|
||||
<param name="leaveOpen">
|
||||
<see langword="true" /> to leave the underlying stream open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes; <see langword="false" /> to close it. The default is <see langword="false" />.</param>
|
||||
<param name="useZeroByteReads">
|
||||
<see langword="true" /> if reads with an empty buffer should be issued to the underlying stream before allocating memory; otherwise, <see langword="false" />.</param>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.StreamPipeReaderOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>Initializes a <see cref="T:System.IO.Pipelines.StreamPipeReaderOptions" /> instance, optionally specifying a memory pool, a minimum buffer size, a minimum read size, and whether the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes.</summary>
|
||||
<param name="pool">The memory pool to use when allocating memory. The default value is <see langword="null" />.</param>
|
||||
<param name="bufferSize">The minimum buffer size to use when renting memory from the <paramref name="pool" />. The default value is 4096.</param>
|
||||
<param name="minimumReadSize">The threshold of remaining bytes in the buffer before a new buffer is allocated. The default value is 1024.</param>
|
||||
<param name="leaveOpen">
|
||||
<see langword="true" /> to leave the underlying stream open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes; <see langword="false" /> to close it. The default is <see langword="false" />.</param>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.StreamPipeReaderOptions.BufferSize">
|
||||
<summary>Gets the minimum buffer size to use when renting memory from the <see cref="P:System.IO.Pipelines.StreamPipeReaderOptions.Pool" />.</summary>
|
||||
<returns>The buffer size.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.StreamPipeReaderOptions.LeaveOpen">
|
||||
<summary>Gets the value that indicates if the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.StreamPipeReaderOptions.MinimumReadSize">
|
||||
<summary>Gets the threshold of remaining bytes in the buffer before a new buffer is allocated.</summary>
|
||||
<returns>The minimum read size.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.StreamPipeReaderOptions.Pool">
|
||||
<summary>Gets the <see cref="T:System.Buffers.MemoryPool`1" /> to use when allocating memory.</summary>
|
||||
<returns>A memory pool instance.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.StreamPipeReaderOptions.UseZeroByteReads">
|
||||
<summary>Gets the value that indicates if reads with an empty buffer should be issued to the underlying stream, in order to wait for data to arrive before allocating memory.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if reads with an empty buffer should be issued to the underlying stream before allocating memory; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Pipelines.StreamPipeWriterOptions">
|
||||
<summary>Represents a set of options for controlling the creation of the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Pipelines.StreamPipeWriterOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Boolean)">
|
||||
<summary>Initializes a <see cref="T:System.IO.Pipelines.StreamPipeWriterOptions" /> instance, optionally specifying a memory pool, a minimum buffer size, and whether the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeWriter" /> completes.</summary>
|
||||
<param name="pool">The memory pool to use when allocating memory. The default value is <see langword="null" />.</param>
|
||||
<param name="minimumBufferSize">The minimum buffer size to use when renting memory from the <paramref name="pool" />. The default value is 4096.</param>
|
||||
<param name="leaveOpen">
|
||||
<see langword="true" /> to leave the underlying stream open after the <see cref="T:System.IO.Pipelines.PipeWriter" /> completes; <see langword="false" /> to close it. The default is <see langword="false" />.</param>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.StreamPipeWriterOptions.LeaveOpen">
|
||||
<summary>Gets the value that indicates if the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeWriter" /> completes.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeWriter" /> completes; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.StreamPipeWriterOptions.MinimumBufferSize">
|
||||
<summary>Gets the minimum buffer size to use when renting memory from the <see cref="P:System.IO.Pipelines.StreamPipeWriterOptions.Pool" />.</summary>
|
||||
<returns>An integer representing the minimum buffer size.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Pipelines.StreamPipeWriterOptions.Pool">
|
||||
<summary>Gets the <see cref="T:System.Buffers.MemoryPool`1" /> to use when allocating memory.</summary>
|
||||
<returns>A memory pool instance.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.Memory.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Memory.dll
Normal file
Binary file not shown.
355
OnDocScript/bin/Debug/System.Memory.xml
Normal file
355
OnDocScript/bin/Debug/System.Memory.xml
Normal file
@@ -0,0 +1,355 @@
|
||||
<?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>
|
||||
<member name="M:System.Span`1.#ctor(`0[],System.Int32)">
|
||||
<param name="array"></param>
|
||||
<param name="start"></param>
|
||||
</member>
|
||||
<member name="M:System.Span`1.#ctor(`0[],System.Int32,System.Int32)">
|
||||
<param name="array"></param>
|
||||
<param name="start"></param>
|
||||
<param name="length"></param>
|
||||
</member>
|
||||
<member name="M:System.Span`1.Clear">
|
||||
|
||||
</member>
|
||||
<member name="M:System.Span`1.CopyTo(System.Span{`0})">
|
||||
<param name="destination"></param>
|
||||
</member>
|
||||
<member name="M:System.Span`1.DangerousCreate(System.Object,`0@,System.Int32)">
|
||||
<param name="obj"></param>
|
||||
<param name="objectData"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.DangerousGetPinnableReference">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Span`1.Empty">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.Equals(System.Object)">
|
||||
<param name="obj"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.Fill(`0)">
|
||||
<param name="value"></param>
|
||||
</member>
|
||||
<member name="M:System.Span`1.GetHashCode">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Span`1.IsEmpty">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Span`1.Item(System.Int32)">
|
||||
<param name="index"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Span`1.Length">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0})">
|
||||
<param name="left"></param>
|
||||
<param name="right"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.op_Implicit(System.ArraySegment{T})~System.Span{T}">
|
||||
<param name="arraySegment"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.op_Implicit(System.Span{T})~System.ReadOnlySpan{T}">
|
||||
<param name="span"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.op_Implicit(T[])~System.Span{T}">
|
||||
<param name="array"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0})">
|
||||
<param name="left"></param>
|
||||
<param name="right"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.Slice(System.Int32)">
|
||||
<param name="start"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.Slice(System.Int32,System.Int32)">
|
||||
<param name="start"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.ToArray">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.TryCopyTo(System.Span{`0})">
|
||||
<param name="destination"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:System.SpanExtensions">
|
||||
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.AsBytes``1(System.ReadOnlySpan{``0})">
|
||||
<param name="source"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.AsBytes``1(System.Span{``0})">
|
||||
<param name="source"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.AsSpan(System.String)">
|
||||
<param name="text"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.AsSpan``1(System.ArraySegment{``0})">
|
||||
<param name="arraySegment"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.AsSpan``1(``0[])">
|
||||
<param name="array"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.CopyTo``1(``0[],System.Span{``0})">
|
||||
<param name="array"></param>
|
||||
<param name="destination"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},``0)">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf``1(System.Span{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf``1(System.Span{``0},``0)">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte,System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value0"></param>
|
||||
<param name="value1"></param>
|
||||
<param name="value2"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte,System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value0"></param>
|
||||
<param name="value1"></param>
|
||||
<param name="value2"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value0"></param>
|
||||
<param name="value1"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="values"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="values"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value0"></param>
|
||||
<param name="value1"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.NonPortableCast``2(System.ReadOnlySpan{``0})">
|
||||
<param name="source"></param>
|
||||
<typeparam name="TFrom"></typeparam>
|
||||
<typeparam name="TTo"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.NonPortableCast``2(System.Span{``0})">
|
||||
<param name="source"></param>
|
||||
<typeparam name="TFrom"></typeparam>
|
||||
<typeparam name="TTo"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.SequenceEqual(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="first"></param>
|
||||
<param name="second"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.SequenceEqual(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="first"></param>
|
||||
<param name="second"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.SequenceEqual``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="first"></param>
|
||||
<param name="second"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.SequenceEqual``1(System.Span{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="first"></param>
|
||||
<param name="second"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.StartsWith(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.StartsWith(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.StartsWith``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.StartsWith``1(System.Span{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:System.ReadOnlySpan`1">
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.#ctor(`0[])">
|
||||
<param name="array"></param>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32)">
|
||||
<param name="pointer"></param>
|
||||
<param name="length"></param>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32)">
|
||||
<param name="array"></param>
|
||||
<param name="start"></param>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32)">
|
||||
<param name="array"></param>
|
||||
<param name="start"></param>
|
||||
<param name="length"></param>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.CopyTo(System.Span{`0})">
|
||||
<param name="destination"></param>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.DangerousCreate(System.Object,`0@,System.Int32)">
|
||||
<param name="obj"></param>
|
||||
<param name="objectData"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.DangerousGetPinnableReference">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.ReadOnlySpan`1.Empty">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.Equals(System.Object)">
|
||||
<param name="obj"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.GetHashCode">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.ReadOnlySpan`1.IsEmpty">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.ReadOnlySpan`1.Item(System.Int32)">
|
||||
<param name="index"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.ReadOnlySpan`1.Length">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})">
|
||||
<param name="left"></param>
|
||||
<param name="right"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{T})~System.ReadOnlySpan{T}">
|
||||
<param name="arraySegment"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.op_Implicit(T[])~System.ReadOnlySpan{T}">
|
||||
<param name="array"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})">
|
||||
<param name="left"></param>
|
||||
<param name="right"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.Slice(System.Int32)">
|
||||
<param name="start"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32)">
|
||||
<param name="start"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.ToArray">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0})">
|
||||
<param name="destination"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.Numerics.Vectors.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Numerics.Vectors.dll
Normal file
Binary file not shown.
2621
OnDocScript/bin/Debug/System.Numerics.Vectors.xml
Normal file
2621
OnDocScript/bin/Debug/System.Numerics.Vectors.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
OnDocScript/bin/Debug/System.Reflection.Metadata.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Reflection.Metadata.dll
Normal file
Binary file not shown.
8772
OnDocScript/bin/Debug/System.Reflection.Metadata.xml
Normal file
8772
OnDocScript/bin/Debug/System.Reflection.Metadata.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
OnDocScript/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll
Normal file
Binary file not shown.
291
OnDocScript/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml
Normal file
291
OnDocScript/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml
Normal file
@@ -0,0 +1,291 @@
|
||||
<?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>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr)">
|
||||
<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>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.UIntPtr)">
|
||||
<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>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(System.Void*,System.Int32)">
|
||||
<summary>Adds an element offset to the given void pointer.</summary>
|
||||
<param name="source">The void pointer to add the offset to.</param>
|
||||
<param name="elementOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of void pointer.</typeparam>
|
||||
<returns>A new void pointer that reflects the addition of offset to the specified pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr)">
|
||||
<summary>Adds a byte offset to the given reference.</summary>
|
||||
<param name="source">The reference to add the offset to.</param>
|
||||
<param name="byteOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the addition of byte offset to pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.UIntPtr)">
|
||||
<summary>Adds a byte offset to the given reference.</summary>
|
||||
<param name="source">The reference to add the offset to.</param>
|
||||
<param name="byteOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the addition of byte offset to pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@)">
|
||||
<summary>Determines whether the specified references point to the same location.</summary>
|
||||
<param name="left">The first reference to compare.</param>
|
||||
<param name="right">The second reference to compare.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> point to the same location; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object)">
|
||||
<summary>Casts the given object to the specified type.</summary>
|
||||
<param name="o">The object to cast.</param>
|
||||
<typeparam name="T">The type which the object will be cast to.</typeparam>
|
||||
<returns>The original object, casted to the given type.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.As``2(``0@)">
|
||||
<summary>Reinterprets the given reference as a reference to a value of type <typeparamref name="TTo" />.</summary>
|
||||
<param name="source">The reference to reinterpret.</param>
|
||||
<typeparam name="TFrom">The type of reference to reinterpret.</typeparam>
|
||||
<typeparam name="TTo">The desired type of the reference.</typeparam>
|
||||
<returns>A reference to a value of type <typeparamref name="TTo" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@)">
|
||||
<summary>Returns a pointer to the given by-ref parameter.</summary>
|
||||
<param name="value">The object whose pointer is obtained.</param>
|
||||
<typeparam name="T">The type of object.</typeparam>
|
||||
<returns>A pointer to the given value.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AsRef``1(``0@)">
|
||||
<summary>Reinterprets the given read-only reference as a reference.</summary>
|
||||
<param name="source">The read-only reference to reinterpret.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A reference to a value of type <typeparamref name="T" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*)">
|
||||
<summary>Reinterprets the given location as a reference to a value of type <typeparamref name="T" />.</summary>
|
||||
<param name="source">The location of the value to reference.</param>
|
||||
<typeparam name="T">The type of the interpreted location.</typeparam>
|
||||
<returns>A reference to a value of type <typeparamref name="T" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@)">
|
||||
<summary>Determines the byte offset from origin to target from the given references.</summary>
|
||||
<param name="origin">The reference to origin.</param>
|
||||
<param name="target">The reference to target.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>Byte offset from origin to target i.e. <paramref name="target" /> - <paramref name="origin" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*)">
|
||||
<summary>Copies a value of type <typeparamref name="T" /> to the given location.</summary>
|
||||
<param name="destination">The location to copy to.</param>
|
||||
<param name="source">A pointer to the value to copy.</param>
|
||||
<typeparam name="T">The type of value to copy.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@)">
|
||||
<summary>Copies a value of type <typeparamref name="T" /> to the given location.</summary>
|
||||
<param name="destination">The location to copy to.</param>
|
||||
<param name="source">A reference to the value to copy.</param>
|
||||
<typeparam name="T">The type of value to copy.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.IsAddressGreaterThan``1(``0@,``0@)">
|
||||
<summary>Returns a value that indicates whether a specified reference is greater than another specified reference.</summary>
|
||||
<param name="left">The first value to compare.</param>
|
||||
<param name="right">The second value to compare.</param>
|
||||
<typeparam name="T">The type of the reference.</typeparam>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.IsAddressLessThan``1(``0@,``0@)">
|
||||
<summary>Returns a value that indicates whether a specified reference is less than another specified reference.</summary>
|
||||
<param name="left">The first value to compare.</param>
|
||||
<param name="right">The second value to compare.</param>
|
||||
<typeparam name="T">The type of the reference.</typeparam>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="left" /> is less than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.IsNullRef``1(``0@)">
|
||||
<summary>Determines if a given reference to a value of type <typeparamref name="T" /> is a null reference.</summary>
|
||||
<param name="source">The reference to check.</param>
|
||||
<typeparam name="T">The type of the reference.</typeparam>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="source" /> is a null reference; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.NullRef``1">
|
||||
<summary>Returns a reference to a value of type <typeparamref name="T" /> that is a null reference.</summary>
|
||||
<typeparam name="T">The type of the reference.</typeparam>
|
||||
<returns>A reference to a value of type <typeparamref name="T" /> that is a null reference.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*)">
|
||||
<summary>Reads a value of type <typeparamref name="T" /> from the given location.</summary>
|
||||
<param name="source">The location to read from.</param>
|
||||
<typeparam name="T">The type to read.</typeparam>
|
||||
<returns>An object of type <typeparamref name="T" /> read from the given location.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@)">
|
||||
<summary>Reads a value of type <typeparamref name="T" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="source">The location to read from.</param>
|
||||
<typeparam name="T">The type to read.</typeparam>
|
||||
<returns>An object of type <typeparamref name="T" /> read from the given location.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*)">
|
||||
<summary>Reads a value of type <typeparamref name="T" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="source">The location to read from.</param>
|
||||
<typeparam name="T">The type to read.</typeparam>
|
||||
<returns>An object of type <typeparamref name="T" /> read from the given location.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.SizeOf``1">
|
||||
<summary>Returns the size of an object of the given type parameter.</summary>
|
||||
<typeparam name="T">The type of object whose size is retrieved.</typeparam>
|
||||
<returns>The size of an object of type <typeparamref name="T" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.SkipInit``1(``0@)">
|
||||
<summary>Bypasses definite assignment rules for a given value.</summary>
|
||||
<param name="value">The uninitialized object.</param>
|
||||
<typeparam name="T">The type of the uninitialized object.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32)">
|
||||
<summary>Subtracts an element offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="elementOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subtraction of offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr)">
|
||||
<summary>Subtracts an element offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="elementOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subtraction of offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.UIntPtr)">
|
||||
<summary>Subtracts an element offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="elementOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subraction of offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(System.Void*,System.Int32)">
|
||||
<summary>Subtracts an element offset from the given void pointer.</summary>
|
||||
<param name="source">The void pointer to subtract the offset from.</param>
|
||||
<param name="elementOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of the void pointer.</typeparam>
|
||||
<returns>A new void pointer that reflects the subtraction of offset from the specified pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr)">
|
||||
<summary>Subtracts a byte offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="byteOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subtraction of byte offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.UIntPtr)">
|
||||
<summary>Subtracts a byte offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="byteOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subraction of byte offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Unbox``1(System.Object)">
|
||||
<summary>Returns a <see langword="mutable ref" /> to a boxed value.</summary>
|
||||
<param name="box">The value to unbox.</param>
|
||||
<typeparam name="T">The type to be unboxed.</typeparam>
|
||||
<exception cref="T:System.NullReferenceException">
|
||||
<paramref name="box" /> is <see langword="null" />, and <typeparamref name="T" /> is a non-nullable value type.</exception>
|
||||
<exception cref="T:System.InvalidCastException">
|
||||
<paramref name="box" /> is not a boxed value type.
|
||||
|
||||
-or-
|
||||
|
||||
<paramref name="box" /> is not a boxed <typeparamref name="T" />.</exception>
|
||||
<exception cref="T:System.TypeLoadException">
|
||||
<typeparamref name="T" /> cannot be found.</exception>
|
||||
<returns>A <see langword="mutable ref" /> to the boxed value <paramref name="box" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0)">
|
||||
<summary>Writes a value of type <typeparamref name="T" /> to the given location.</summary>
|
||||
<param name="destination">The location to write to.</param>
|
||||
<param name="value">The value to write.</param>
|
||||
<typeparam name="T">The type of value to write.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0)">
|
||||
<summary>Writes a value of type <typeparamref name="T" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The location to write to.</param>
|
||||
<param name="value">The value to write.</param>
|
||||
<typeparam name="T">The type of value to write.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0)">
|
||||
<summary>Writes a value of type <typeparamref name="T" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The location to write to.</param>
|
||||
<param name="value">The value to write.</param>
|
||||
<typeparam name="T">The type of value to write.</typeparam>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.Text.Encoding.CodePages.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Text.Encoding.CodePages.dll
Normal file
Binary file not shown.
29
OnDocScript/bin/Debug/System.Text.Encoding.CodePages.xml
Normal file
29
OnDocScript/bin/Debug/System.Text.Encoding.CodePages.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Text.Encoding.CodePages</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Text.CodePagesEncodingProvider">
|
||||
<summary>Provides access to an encoding provider for code pages that otherwise are available only in the desktop .NET Framework.</summary>
|
||||
</member>
|
||||
<member name="M:System.Text.CodePagesEncodingProvider.GetEncoding(System.Int32)">
|
||||
<summary>Returns the encoding associated with the specified code page identifier.</summary>
|
||||
<param name="codepage">The code page identifier of the preferred encoding which the encoding provider may support.</param>
|
||||
<returns>The encoding associated with the specified code page identifier, or <see langword="null" /> if the provider does not support the requested codepage encoding.</returns>
|
||||
</member>
|
||||
<member name="M:System.Text.CodePagesEncodingProvider.GetEncoding(System.String)">
|
||||
<summary>Returns the encoding associated with the specified code page name.</summary>
|
||||
<param name="name">The code page name of the preferred encoding which the encoding provider may support.</param>
|
||||
<returns>The encoding associated with the specified code page, or <see langword="null" /> if the provider does not support the requested encoding.</returns>
|
||||
</member>
|
||||
<member name="M:System.Text.CodePagesEncodingProvider.GetEncodings">
|
||||
<summary>Returns an array that contains all the encodings that are supported by the <see cref="T:System.Text.CodePagesEncodingProvider" />.</summary>
|
||||
<returns>An array that contains all the supported encodings.</returns>
|
||||
</member>
|
||||
<member name="P:System.Text.CodePagesEncodingProvider.Instance">
|
||||
<summary>Gets an encoding provider for code pages supported in the desktop .NET Framework but not in the current .NET Framework platform.</summary>
|
||||
<returns>An encoding provider that allows access to encodings not supported on the current .NET Framework platform.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.Threading.Channels.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Threading.Channels.dll
Normal file
Binary file not shown.
243
OnDocScript/bin/Debug/System.Threading.Channels.xml
Normal file
243
OnDocScript/bin/Debug/System.Threading.Channels.xml
Normal file
@@ -0,0 +1,243 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Threading.Channels</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Threading.Channels.BoundedChannelFullMode">
|
||||
<summary>Specifies the behavior to use when writing to a bounded channel that is already full.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Channels.BoundedChannelFullMode.DropNewest">
|
||||
<summary>Removes and ignores the newest item in the channel in order to make room for the item being written.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Channels.BoundedChannelFullMode.DropOldest">
|
||||
<summary>Removes and ignores the oldest item in the channel in order to make room for the item being written.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Channels.BoundedChannelFullMode.DropWrite">
|
||||
<summary>Drops the item being written.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Channels.BoundedChannelFullMode.Wait">
|
||||
<summary>Waits for space to be available in order to complete the write operation.</summary>
|
||||
</member>
|
||||
<member name="T:System.Threading.Channels.BoundedChannelOptions">
|
||||
<summary>Provides options that control the behavior of bounded <see cref="T:System.Threading.Channels.Channel`1" /> instances.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.BoundedChannelOptions.#ctor(System.Int32)">
|
||||
<summary>Initializes the options.</summary>
|
||||
<param name="capacity">The maximum number of items the bounded channel may store.</param>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.BoundedChannelOptions.Capacity">
|
||||
<summary>Gets or sets the maximum number of items the bounded channel may store.</summary>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.BoundedChannelOptions.FullMode">
|
||||
<summary>Gets or sets the behavior incurred by write operations when the channel is full.</summary>
|
||||
</member>
|
||||
<member name="T:System.Threading.Channels.Channel">
|
||||
<summary>Provides static methods for creating channels.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.Channel.CreateBounded``1(System.Int32)">
|
||||
<summary>Creates a channel with the specified maximum capacity.</summary>
|
||||
<param name="capacity">The maximum number of items the channel may store.</param>
|
||||
<typeparam name="T">Specifies the type of data in the channel.</typeparam>
|
||||
<returns>The created channel.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.Channel.CreateBounded``1(System.Threading.Channels.BoundedChannelOptions)">
|
||||
<summary>Creates a channel with the specified maximum capacity.</summary>
|
||||
<param name="options">Options that guide the behavior of the channel.</param>
|
||||
<typeparam name="T">Specifies the type of data in the channel.</typeparam>
|
||||
<returns>The created channel.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.Channel.CreateBounded``1(System.Threading.Channels.BoundedChannelOptions,System.Action{``0})">
|
||||
<summary>Creates a channel subject to the provided options.</summary>
|
||||
<param name="options">Options that guide the behavior of the channel.</param>
|
||||
<param name="itemDropped">Delegate that will be called when item is being dropped from channel. See <see cref="T:System.Threading.Channels.BoundedChannelFullMode" />.</param>
|
||||
<typeparam name="T">Specifies the type of data in the channel.</typeparam>
|
||||
<returns>The created channel.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.Channel.CreateUnbounded``1">
|
||||
<summary>Creates an unbounded channel usable by any number of readers and writers concurrently.</summary>
|
||||
<typeparam name="T">The type of data in the channel.</typeparam>
|
||||
<returns>The created channel.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.Channel.CreateUnbounded``1(System.Threading.Channels.UnboundedChannelOptions)">
|
||||
<summary>Creates an unbounded channel subject to the provided options.</summary>
|
||||
<param name="options">Options that guide the behavior of the channel.</param>
|
||||
<typeparam name="T">Specifies the type of data in the channel.</typeparam>
|
||||
<returns>The created channel.</returns>
|
||||
</member>
|
||||
<member name="T:System.Threading.Channels.Channel`1">
|
||||
<summary>Provides a base class for channels that support reading and writing elements of type <typeparamref name="T" />.</summary>
|
||||
<typeparam name="T">Specifies the type of data readable and writable in the channel.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.Channel`1.#ctor">
|
||||
<summary>Initializes an instance of the <see cref="T:System.Threading.Channels.Channel`1" /> class.</summary>
|
||||
</member>
|
||||
<member name="T:System.Threading.Channels.Channel`2">
|
||||
<summary>Provides a base class for channels that support reading elements of type <typeparamref name="TRead" /> and writing elements of type <typeparamref name="TWrite" />.</summary>
|
||||
<typeparam name="TWrite">Specifies the type of data that may be written to the channel.</typeparam>
|
||||
<typeparam name="TRead">Specifies the type of data that may be read from the channel.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.Channel`2.#ctor">
|
||||
<summary>Initializes an instance of the <see cref="T:System.Threading.Channels.Channel`2" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.Channel`2.op_Implicit(System.Threading.Channels.Channel{`0,`1})~System.Threading.Channels.ChannelReader{`1}">
|
||||
<summary>Implicit cast from a <see cref="T:System.Threading.Channels.Channel`2" /> to its readable half.</summary>
|
||||
<param name="channel">The <see cref="T:System.Threading.Channels.Channel`2" /> being cast.</param>
|
||||
<returns>The readable half.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.Channel`2.op_Implicit(System.Threading.Channels.Channel{`0,`1})~System.Threading.Channels.ChannelWriter{`0}">
|
||||
<summary>Implicit cast from a <see cref="T:System.Threading.Channels.Channel`2" /> to its writable half.</summary>
|
||||
<param name="channel">The <see cref="T:System.Threading.Channels.Channel`2" /> being cast.</param>
|
||||
<returns>The writable half.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.Channel`2.Reader">
|
||||
<summary>Gets the readable half of this channel.</summary>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.Channel`2.Writer">
|
||||
<summary>Gets the writable half of this channel.</summary>
|
||||
</member>
|
||||
<member name="T:System.Threading.Channels.ChannelClosedException">
|
||||
<summary>Exception thrown when a channel is used after it's been closed.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelClosedException.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.ChannelClosedException" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelClosedException.#ctor(System.Exception)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.ChannelClosedException" /> class.</summary>
|
||||
<param name="innerException">The exception that is the cause of this exception.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelClosedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.ChannelClosedException" /> class with serialized data.</summary>
|
||||
<param name="info">The object that holds the serialized object data.</param>
|
||||
<param name="context">The contextual information about the source or destination.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelClosedException.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.ChannelClosedException" /> class.</summary>
|
||||
<param name="message">The message that describes the error.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelClosedException.#ctor(System.String,System.Exception)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.ChannelClosedException" /> class.</summary>
|
||||
<param name="message">The message that describes the error.</param>
|
||||
<param name="innerException">The exception that is the cause of this exception.</param>
|
||||
</member>
|
||||
<member name="T:System.Threading.Channels.ChannelOptions">
|
||||
<summary>Provides options that control the behavior of channel instances.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelOptions.#ctor">
|
||||
<summary>Initializes an instance of the <see cref="T:System.Threading.Channels.ChannelOptions" /> class.</summary>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.ChannelOptions.AllowSynchronousContinuations">
|
||||
<summary>
|
||||
<see langword="true" /> if operations performed on a channel may synchronously invoke continuations subscribed to
|
||||
notifications of pending async operations; <see langword="false" /> if all continuations should be invoked asynchronously.</summary>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.ChannelOptions.SingleReader">
|
||||
<summary>
|
||||
<see langword="true" /> readers from the channel guarantee that there will only ever be at most one read operation at a time;
|
||||
<see langword="false" /> if no such constraint is guaranteed.</summary>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.ChannelOptions.SingleWriter">
|
||||
<summary>
|
||||
<see langword="true" /> if writers to the channel guarantee that there will only ever be at most one write operation
|
||||
at a time; <see langword="false" /> if no such constraint is guaranteed.</summary>
|
||||
</member>
|
||||
<member name="T:System.Threading.Channels.ChannelReader`1">
|
||||
<summary>Provides a base class for reading from a channel.</summary>
|
||||
<typeparam name="T">Specifies the type of data that may be read from the channel.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelReader`1.#ctor">
|
||||
<summary>Initializes an instance of the <see cref="T:System.Threading.Channels.ChannelReader`1" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelReader`1.ReadAllAsync(System.Threading.CancellationToken)">
|
||||
<summary>Creates an <see cref="T:System.Collections.Generic.IAsyncEnumerable`1" /> that enables reading all of the data from the channel.</summary>
|
||||
<param name="cancellationToken">The cancellation token to use to cancel the enumeration. If data is immediately ready for reading, then that data may be yielded even after cancellation has been requested.</param>
|
||||
<returns>The created async enumerable.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelReader`1.ReadAsync(System.Threading.CancellationToken)">
|
||||
<summary>Asynchronously reads an item from the channel.</summary>
|
||||
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> used to cancel the read operation.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> that represents the asynchronous read operation.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelReader`1.TryPeek(`0@)">
|
||||
<summary>Attempts to peek at an item from the channel.</summary>
|
||||
<param name="item">The peeked item, or a default value if no item could be peeked.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if an item was read; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelReader`1.TryRead(`0@)">
|
||||
<summary>Attempts to read an item from the channel.</summary>
|
||||
<param name="item">The read item, or a default value if no item could be read.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if an item was read; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelReader`1.WaitToReadAsync(System.Threading.CancellationToken)">
|
||||
<summary>Returns a <see cref="T:System.Threading.Tasks.ValueTask`1" /> that will complete when data is available to read.</summary>
|
||||
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> used to cancel the wait operation.</param>
|
||||
<returns>
|
||||
<para>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> that will complete with a <see langword="true" /> result when data is available to read
|
||||
or with a <see langword="false" /> result when no further data will ever be available to be read due to the channel completing successfully.</para>
|
||||
<para>If the channel completes with an exception, the task will also complete with an exception.</para>
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.ChannelReader`1.CanCount">
|
||||
<summary>Gets a value that indicates whether <see cref="P:System.Threading.Channels.ChannelReader`1.Count" /> is available for use on this <see cref="T:System.Threading.Channels.ChannelReader`1" /> instance.</summary>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.ChannelReader`1.CanPeek">
|
||||
<summary>Gets a value that indicates whether <see cref="M:System.Threading.Channels.ChannelReader`1.TryPeek(`0@)" /> is available for use on this <see cref="T:System.Threading.Channels.ChannelReader`1" /> instance.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if peeking is supported by this channel instance; <see langword="false" /> otherwise.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.ChannelReader`1.Completion">
|
||||
<summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that completes when no more data will ever
|
||||
be available to be read from this channel.</summary>
|
||||
</member>
|
||||
<member name="P:System.Threading.Channels.ChannelReader`1.Count">
|
||||
<summary>Gets the current number of items available from this channel reader.</summary>
|
||||
<exception cref="T:System.NotSupportedException">Counting is not supported on this instance.</exception>
|
||||
</member>
|
||||
<member name="T:System.Threading.Channels.ChannelWriter`1">
|
||||
<summary>Provides a base class for writing to a channel.</summary>
|
||||
<typeparam name="T">Specifies the type of data that may be written to the channel.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelWriter`1.#ctor">
|
||||
<summary>Initializes an instance of the <see cref="T:System.Threading.Channels.ChannelWriter`1" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelWriter`1.Complete(System.Exception)">
|
||||
<summary>Mark the channel as being complete, meaning no more items will be written to it.</summary>
|
||||
<param name="error">Optional Exception indicating a failure that's causing the channel to complete.</param>
|
||||
<exception cref="T:System.InvalidOperationException">The channel has already been marked as complete.</exception>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelWriter`1.TryComplete(System.Exception)">
|
||||
<summary>Attempts to mark the channel as being completed, meaning no more data will be written to it.</summary>
|
||||
<param name="error">An <see cref="T:System.Exception" /> indicating the failure causing no more data to be written, or null for success.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if this operation successfully completes the channel; otherwise, <see langword="false" /> if the channel could not be marked for completion,
|
||||
for example due to having already been marked as such, or due to not supporting completion.
|
||||
.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelWriter`1.TryWrite(`0)">
|
||||
<summary>Attempts to write the specified item to the channel.</summary>
|
||||
<param name="item">The item to write.</param>
|
||||
<returns>
|
||||
<see langword="true" /> if the item was written; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelWriter`1.WaitToWriteAsync(System.Threading.CancellationToken)">
|
||||
<summary>Returns a <see cref="T:System.Threading.Tasks.ValueTask`1" /> that will complete when space is available to write an item.</summary>
|
||||
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> used to cancel the wait operation.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> that will complete with a <see langword="true" /> result when space is available to write an item
|
||||
or with a <see langword="false" /> result when no further writing will be permitted.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.ChannelWriter`1.WriteAsync(`0,System.Threading.CancellationToken)">
|
||||
<summary>Asynchronously writes an item to the channel.</summary>
|
||||
<param name="item">The value to write to the channel.</param>
|
||||
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> used to cancel the write operation.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.ValueTask" /> that represents the asynchronous write operation.</returns>
|
||||
</member>
|
||||
<member name="T:System.Threading.Channels.UnboundedChannelOptions">
|
||||
<summary>Provides options that control the behavior of unbounded <see cref="T:System.Threading.Channels.Channel`1" /> instances.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Channels.UnboundedChannelOptions.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Threading.Channels.UnboundedChannelOptions" /> class.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
OnDocScript/bin/Debug/System.Threading.Tasks.Extensions.dll
Normal file
BIN
OnDocScript/bin/Debug/System.Threading.Tasks.Extensions.dll
Normal file
Binary file not shown.
166
OnDocScript/bin/Debug/System.Threading.Tasks.Extensions.xml
Normal file
166
OnDocScript/bin/Debug/System.Threading.Tasks.Extensions.xml
Normal file
@@ -0,0 +1,166 @@
|
||||
<?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)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.UnsafeOnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="T:System.Threading.Tasks.ValueTask`1">
|
||||
<summary>Provides a value type that wraps a <see cref="Task{TResult}"></see> and a <typeparamref name="TResult">TResult</typeparamref>, only one of which is used.</summary>
|
||||
<typeparam name="TResult">The result.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.#ctor(System.Threading.Tasks.Task{`0})">
|
||||
<summary>Initializes a new instance of the <see cref="ValueTask{TResult}"></see> class using the supplied task that represents the operation.</summary>
|
||||
<param name="task">The task.</param>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="task">task</paramref> argument is null.</exception>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.#ctor(`0)">
|
||||
<summary>Initializes a new instance of the <see cref="ValueTask{TResult}"></see> class using the supplied result of a successful operation.</summary>
|
||||
<param name="result">The result.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.AsTask">
|
||||
<summary>Retrieves a <see cref="Task{TResult}"></see> object that represents this <see cref="ValueTask{TResult}"></see>.</summary>
|
||||
<returns>The <see cref="Task{TResult}"></see> object that is wrapped in this <see cref="ValueTask{TResult}"></see> if one exists, or a new <see cref="Task{TResult}"></see> object that represents the result.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.ConfigureAwait(System.Boolean)">
|
||||
<summary>Configures an awaiter for this value.</summary>
|
||||
<param name="continueOnCapturedContext">true to attempt to marshal the continuation back to the captured context; otherwise, false.</param>
|
||||
<returns>The configured awaiter.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.CreateAsyncMethodBuilder">
|
||||
<summary>Creates a method builder for use with an async method.</summary>
|
||||
<returns>The created builder.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.Equals(System.Object)">
|
||||
<summary>Determines whether the specified object is equal to the current object.</summary>
|
||||
<param name="obj">The object to compare with the current object.</param>
|
||||
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.Equals(System.Threading.Tasks.ValueTask{`0})">
|
||||
<summary>Determines whether the specified <see cref="ValueTask{TResult}"></see> object is equal to the current <see cref="ValueTask{TResult}"></see> object.</summary>
|
||||
<param name="other">The object to compare with the current object.</param>
|
||||
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.GetAwaiter">
|
||||
<summary>Creates an awaiter for this value.</summary>
|
||||
<returns>The awaiter.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.GetHashCode">
|
||||
<summary>Returns the hash code for this instance.</summary>
|
||||
<returns>The hash code for the current object.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsCanceled">
|
||||
<summary>Gets a value that indicates whether this object represents a canceled operation.</summary>
|
||||
<returns>true if this object represents a canceled operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsCompleted">
|
||||
<summary>Gets a value that indicates whether this object represents a completed operation.</summary>
|
||||
<returns>true if this object represents a completed operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsCompletedSuccessfully">
|
||||
<summary>Gets a value that indicates whether this object represents a successfully completed operation.</summary>
|
||||
<returns>true if this object represents a successfully completed operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsFaulted">
|
||||
<summary>Gets a value that indicates whether this object represents a failed operation.</summary>
|
||||
<returns>true if this object represents a failed operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.op_Equality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0})">
|
||||
<summary>Compares two values for equality.</summary>
|
||||
<param name="left">The first value to compare.</param>
|
||||
<param name="right">The second value to compare.</param>
|
||||
<returns>true if the two <see cref="ValueTask{TResult}"></see> values are equal; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.op_Inequality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0})">
|
||||
<summary>Determines whether two <see cref="ValueTask{TResult}"></see> values are unequal.</summary>
|
||||
<param name="left">The first value to compare.</param>
|
||||
<param name="right">The seconed value to compare.</param>
|
||||
<returns>true if the two <see cref="ValueTask{TResult}"></see> values are not equal; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.Result">
|
||||
<summary>Gets the result.</summary>
|
||||
<returns>The result.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.ToString">
|
||||
<summary>Returns a string that represents the current object.</summary>
|
||||
<returns>A string that represents the current object.</returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute">
|
||||
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.#ctor(System.Type)">
|
||||
<param name="builderType"></param>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.BuilderType">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@)">
|
||||
<param name="awaiter"></param>
|
||||
<param name="stateMachine"></param>
|
||||
<typeparam name="TAwaiter"></typeparam>
|
||||
<typeparam name="TStateMachine"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@)">
|
||||
<param name="awaiter"></param>
|
||||
<param name="stateMachine"></param>
|
||||
<typeparam name="TAwaiter"></typeparam>
|
||||
<typeparam name="TStateMachine"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Create">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetException(System.Exception)">
|
||||
<param name="exception"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetResult(`0)">
|
||||
<param name="result"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)">
|
||||
<param name="stateMachine"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Start``1(``0@)">
|
||||
<param name="stateMachine"></param>
|
||||
<typeparam name="TStateMachine"></typeparam>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Task">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.IsCompleted">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.OnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.UnsafeOnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.GetAwaiter">
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
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.
BIN
OnDocScript/bin/Debug/cs/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
OnDocScript/bin/Debug/cs/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
OnDocScript/bin/Debug/de/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
OnDocScript/bin/Debug/de/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
OnDocScript/bin/Debug/es/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
OnDocScript/bin/Debug/es/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
OnDocScript/bin/Debug/fr/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
OnDocScript/bin/Debug/fr/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user