From 4b50f6808223e299e7aefee1cbbf336dd18649c0 Mon Sep 17 00:00:00 2001 From: tmat Date: Wed, 12 Jun 2024 09:32:12 -0700 Subject: [PATCH] Add generated semantic search API list Cleanup --- ...GenerateFilteredReferenceAssembliesTask.cs | 86 +- .../ApiSet/Microsoft.CodeAnalysis.CSharp.txt | 10 +- .../ApiSet/Microsoft.CodeAnalysis.txt | 24 +- .../ApiSet/System.Runtime.txt | 20 +- .../Apis/Microsoft.CodeAnalysis.CSharp.txt | 6219 +++++++++++++ .../Apis/Microsoft.CodeAnalysis.txt | 4080 +++++++++ .../Apis/System.Collections.Immutable.txt | 783 ++ .../Apis/System.Collections.txt | 431 + .../ReferenceAssemblies/Apis/System.Linq.txt | 231 + .../Apis/System.Runtime.txt | 7530 ++++++++++++++++ .../Microsoft.CodeAnalysis.CSharp.txt | 6243 +++++++++++++ .../Baselines/Microsoft.CodeAnalysis.txt | 4333 +++++++++ .../System.Collections.Immutable.txt | 783 ++ .../Baselines/System.Collections.txt | 431 + .../Baselines/System.Linq.txt | 231 + .../Baselines/System.Runtime.txt | 7717 +++++++++++++++++ .../SemanticSearch.ReferenceAssemblies.csproj | 8 +- ...ateFilteredReferenceAssembliesTaskTests.cs | 7 +- 18 files changed, 39133 insertions(+), 34 deletions(-) create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Apis/Microsoft.CodeAnalysis.CSharp.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Apis/Microsoft.CodeAnalysis.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Collections.Immutable.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Collections.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Linq.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Runtime.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/Microsoft.CodeAnalysis.CSharp.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/Microsoft.CodeAnalysis.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Collections.Immutable.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Collections.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Linq.txt create mode 100644 src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Runtime.txt diff --git a/src/Tools/SemanticSearch/BuildTask/GenerateFilteredReferenceAssembliesTask.cs b/src/Tools/SemanticSearch/BuildTask/GenerateFilteredReferenceAssembliesTask.cs index 1bfd842325f35..1162407640c9f 100644 --- a/src/Tools/SemanticSearch/BuildTask/GenerateFilteredReferenceAssembliesTask.cs +++ b/src/Tools/SemanticSearch/BuildTask/GenerateFilteredReferenceAssembliesTask.cs @@ -13,6 +13,7 @@ using System.Reflection.Metadata.Ecma335; using System.Reflection.PortableExecutable; using System.Security.Cryptography; +using System.Text; using System.Text.RegularExpressions; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; @@ -49,8 +50,7 @@ public sealed class GenerateFilteredReferenceAssembliesTask : Task \s* (?[+|-]?) ((?[A-Za-z]+):)? - (?[^#]*) - ([#].*)? + (?.*) $ """, RegexOptions.Singleline | RegexOptions.IgnorePatternWhitespace); @@ -63,6 +63,9 @@ public sealed class GenerateFilteredReferenceAssembliesTask : Task [Required] public string OutputDir { get; private set; } = null!; + [Required] + public string ApisDir { get; private set; } = null!; + public override bool Execute() { try @@ -106,6 +109,8 @@ internal void ExecuteImpl(IEnumerable<(string apiSpecPath, IReadOnlyList } var peImageBuffer = File.ReadAllBytes(originalReferencePath); + + var baseline = new List(); Rewrite(peImageBuffer, patterns.ToImmutableArray()); try @@ -116,8 +121,60 @@ internal void ExecuteImpl(IEnumerable<(string apiSpecPath, IReadOnlyList { // Another instance of the task might already be writing the content. Log.LogMessage($"Output file '{filteredReferencePath}' already exists."); + return; + } + + WriteApis(Path.Combine(ApisDir, assemblyName + ".txt"), peImageBuffer); + } + } + + internal void WriteApis(string baselineFilePath, byte[] peImage) + { + using var readableStream = new MemoryStream(peImage, writable: false); + var metadataRef = MetadataReference.CreateFromStream(readableStream); + var compilation = CSharpCompilation.Create("Metadata", references: [metadataRef]); + + // Collect all externally accessible metadata member definitions: + var types = new List(); + var methods = new List(); + var fields = new List(); + GetAllMembers(compilation, types, methods, fields, + filter: s => s is { MetadataToken: not 0, DeclaredAccessibility: Accessibility.Public or Accessibility.Protected or Accessibility.ProtectedOrInternal }); + + var apis = new List(); + apis.AddRange(((IEnumerable)types).Concat(methods).Concat(fields).Select(GetDocumentationCommentSymbolName)); + + // Doc ids start with "X:" prefix, where X is member kind ('T', 'M' or 'F'): + apis.Sort(static (x, y) => x.AsSpan()[2..].CompareTo(y.AsSpan()[2..], StringComparison.Ordinal)); + + var newContent = string.Join("\r\n", apis); + + string currentContent; + try + { + currentContent = File.ReadAllText(baselineFilePath, Encoding.UTF8); + } + catch (Exception) + { + currentContent = ""; + } + + if (currentContent != newContent) + { + try + { + File.WriteAllText(baselineFilePath, newContent); + Log.LogMessage($"Baseline updated: '{baselineFilePath}'"); + } + catch (Exception e) + { + Log.LogError($"Error updating baseline '{baselineFilePath}': {e.Message}"); } } + else + { + Log.LogMessage($"Baseline not updated '{baselineFilePath}'"); + } } internal static void ParseApiPatterns(IReadOnlyList lines, List<(string message, int line)> errors, List patterns) @@ -125,6 +182,10 @@ internal static void ParseApiPatterns(IReadOnlyList lines, List<(string for (var i = 0; i < lines.Count; i++) { var line = lines[i]; + if (line.TrimStart().StartsWith("#")) + { + continue; + } var match = s_lineSyntax.Match(line); if (!match.Success) @@ -197,7 +258,8 @@ internal static void GetAllMembers( Compilation compilation, List types, List methods, - List fields) + List fields, + Func filter) { Recurse(compilation.GlobalNamespace.GetMembers()); @@ -208,7 +270,7 @@ void Recurse(IEnumerable members) switch (member) { case INamedTypeSymbol type: - if (type.MetadataToken != 0) + if (filter(member)) { types.Add(type); Recurse(type.GetMembers()); @@ -216,14 +278,14 @@ void Recurse(IEnumerable members) break; case IMethodSymbol method: - if (method.MetadataToken != 0) + if (filter(member)) { methods.Add(method); } break; case IFieldSymbol field: - if (field.MetadataToken != 0) + if (filter(member)) { fields.Add(field); } @@ -237,12 +299,16 @@ void Recurse(IEnumerable members) } } - private static bool IsIncluded(ISymbol symbol, ImmutableArray patterns) + private static string GetDocumentationCommentSymbolName(ISymbol symbol) { var id = symbol.GetDocumentationCommentId(); Debug.Assert(id is [_, ':', ..]); - id = id[2..]; + return id[2..]; + } + private static bool IsIncluded(ISymbol symbol, ImmutableArray patterns) + { + var docName = GetDocumentationCommentSymbolName(symbol); var kind = GetKindFlags(symbol); // Type symbols areconsidered excluded by default. @@ -251,7 +317,7 @@ private static bool IsIncluded(ISymbol symbol, ImmutableArray patter foreach (var pattern in patterns) { - if ((pattern.SymbolKinds & kind) == kind && pattern.MetadataNamePattern.IsMatch(id)) + if ((pattern.SymbolKinds & kind) == kind && pattern.MetadataNamePattern.IsMatch(docName)) { isIncluded = pattern.IsIncluded; } @@ -285,7 +351,7 @@ internal static unsafe void Rewrite(byte[] peImage, ImmutableArray p var types = new List(); var methods = new List(); var fields = new List(); - GetAllMembers(compilation, types, methods, fields); + GetAllMembers(compilation, types, methods, fields, filter: s => s.MetadataToken != 0); // Update visibility flags: using var writableStream = new MemoryStream(peImage, writable: true); diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/Microsoft.CodeAnalysis.CSharp.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/Microsoft.CodeAnalysis.CSharp.txt index 5f282702bb03e..9c88fb1f47e2a 100644 --- a/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/Microsoft.CodeAnalysis.CSharp.txt +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/Microsoft.CodeAnalysis.CSharp.txt @@ -1 +1,9 @@ - \ No newline at end of file ++T:* +-T:Microsoft.CodeAnalysis.CSharp.CSharpCommandLine* +-M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.#ctor* +-M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithCryptoKeyContainer* +-M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithCryptoKeyFile* +-M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithCryptoPublicKey* +-M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithCryptoKeyContainer* +-M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithCryptoKeyFile* +-M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithCryptoPublicKey* \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/Microsoft.CodeAnalysis.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/Microsoft.CodeAnalysis.txt index 6d657b0290b8a..ca701133245dc 100644 --- a/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/Microsoft.CodeAnalysis.txt +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/Microsoft.CodeAnalysis.txt @@ -1,5 +1,23 @@ +T:* --M:Microsoft.CodeAnalysis.MetadataReference.CreateFromFile* +-M:Microsoft.CodeAnalysis.MetadataReference.Create* +-M:Microsoft.CodeAnalysis.AssemblyMetadata.Create* +-M:Microsoft.CodeAnalysis.ModuleMetadata.Create* -T:Microsoft.CodeAnalysis.FileSystemExtensions --T:Microsoft.CodeAnalysis.CommandLineParser --T:Microsoft.CodeAnalysis.DesktopStrongNameProvider \ No newline at end of file +-T:Microsoft.CodeAnalysis.CommandLine* +-T:Microsoft.CodeAnalysis.DesktopStrongNameProvider +-M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithCryptoKeyContainer* +-M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithCryptoKeyFile* +-M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithCryptoPublicKey* +-M:Microsoft.CodeAnalysis.CompilationOptions.WithCryptoKeyContainer* +-M:Microsoft.CodeAnalysis.CompilationOptions.WithCryptoKeyFile* +-M:Microsoft.CodeAnalysis.CompilationOptions.WithCryptoPublicKey* +-M:Microsoft.CodeAnalysis.Compilation.Emit* +-T:Microsoft.CodeAnalysis.Emit.* +-M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.#ctor* +-M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.#ctor* +-T:Microsoft.CodeAnalysis.RuleSet +-M:Microsoft.CodeAnalysis.SourceReferenceResolver.* +-M:Microsoft.CodeAnalysis.SourceFileResolver.* +-M:Microsoft.CodeAnalysis.XmlReferenceResolver.* +-M:Microsoft.CodeAnalysis.MetadataReferenceResolver.* +-M:Microsoft.CodeAnalysis.StrongNameProvider.* \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/System.Runtime.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/System.Runtime.txt index ce07ea552448d..b552a585f2517 100644 --- a/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/System.Runtime.txt +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/ApiSet/System.Runtime.txt @@ -3,13 +3,17 @@ -T:System.AppDomain* -T:System.AssemblyLoad* -T:System.AppContext +-T:System.CodeDom* +-T:System.Diagnostics.Debug.* -TM:System.Environment.* +M:System.Environment.get_CurrentManagedThreadId +M:System.Environment.get_NewLine -T:System.EnvironmentVariableTarget -T:System.GC* +-T:System.IntPtr -T:System.LoaderOptimization* -T:System.MarshalByRefObject +-T:System.ModuleHandle -T:System.MTAThreadAttribute -T:System.STAThreadAttribute -T:System.ThreadStaticAttribute @@ -19,27 +23,15 @@ +M:System.Type.Name +M:System.Type.FullName +M:System.Type.AssemblyQualifiedName --T:System.IO.* -+T:System.IO.BinaryReader -+T:System.IO.BinaryWriter -+T:System.IO.BufferedStream -+T:System.IO.EndOfStreamException -+T:System.IO.InvalidDataException -+T:System.IO.MemoryStream -+T:System.IO.Stream -+T:System.IO.StreamReader -+T:System.IO.StreamWriter -+T:System.IO.StringReader -+T:System.IO.StringWriter -+T:System.IO.TextReader -+T:System.IO.TextWriter +-T:System.IO.* -T:System.Net.* -T:System.Reflection.* -T:System.Resources.* -T:System.Runtime.* +T:System.Runtime.CompilerServices.* +-T:System.Runtime.CompilerServices.MethodImplOptions -T:System.Security.* diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/Microsoft.CodeAnalysis.CSharp.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/Microsoft.CodeAnalysis.CSharp.txt new file mode 100644 index 0000000000000..c2a0534ccf458 --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/Microsoft.CodeAnalysis.CSharp.txt @@ -0,0 +1,6219 @@ +T:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.Equals(Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo) +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.get_GetAwaiterMethod +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.get_GetResultMethod +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.get_IsCompletedProperty +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.get_IsDynamic +T:Microsoft.CodeAnalysis.CSharp.CSharpCompilation +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.AddReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.AddReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.AddSyntaxTrees(Microsoft.CodeAnalysis.SyntaxTree[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.AddSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.AppendDefaultVersionResource(System.IO.Stream) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ClassifyCommonConversion(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ClassifyConversion(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.Clone +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonAddSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonClone +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonContainsSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateAnonymousTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{System.Boolean},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateArrayTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,System.Int32,Microsoft.CodeAnalysis.NullableAnnotation) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateErrorNamespaceSymbol(Microsoft.CodeAnalysis.INamespaceSymbol,System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateErrorTypeSymbol(Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String,System.Int32) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateFunctionPointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.RefKind,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.RefKind},System.Reflection.Metadata.SignatureCallingConvention,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.INamedTypeSymbol}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateNativeIntegerTypeSymbol(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreatePointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateTupleTypeSymbol(Microsoft.CodeAnalysis.INamedTypeSymbol,System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateTupleTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonGetAssemblyOrModuleSymbol(Microsoft.CodeAnalysis.MetadataReference) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonGetCompilationNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonGetEntryPoint(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonGetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SemanticModelOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonGetTypeByMetadataName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonRemoveAllSyntaxTrees +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonRemoveSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonReplaceSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonWithAssemblyName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonWithOptions(Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonWithReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonWithScriptCompilationInfo(Microsoft.CodeAnalysis.ScriptCompilationInfo) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ContainsSymbolsWithName(System.Func{System.String,System.Boolean},Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ContainsSymbolsWithName(System.String,Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ContainsSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.Create(System.String,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference},Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CreateScriptCompilation(System.String,Microsoft.CodeAnalysis.SyntaxTree,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference},Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions,Microsoft.CodeAnalysis.CSharp.CSharpCompilation,System.Type,System.Type) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetDeclarationDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetDirectiveReference(Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetMetadataReference(Microsoft.CodeAnalysis.IAssemblySymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetMethodBodyDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetParseDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SemanticModelOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetSymbolsWithName(System.Func{System.String,System.Boolean},Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetSymbolsWithName(System.String,Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetUsedAssemblyReferences(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveAllReferences +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveAllSyntaxTrees +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveSyntaxTrees(Microsoft.CodeAnalysis.SyntaxTree[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ReplaceReference(Microsoft.CodeAnalysis.MetadataReference,Microsoft.CodeAnalysis.MetadataReference) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ReplaceSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ToMetadataReference(System.Collections.Immutable.ImmutableArray{System.String},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithAssemblyName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithOptions(Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithScriptCompilationInfo(Microsoft.CodeAnalysis.CSharp.CSharpScriptCompilationInfo) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonAssembly +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonDynamicType +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonGlobalNamespace +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonObjectType +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonOptions +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonScriptClass +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonScriptGlobalsType +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonSourceModule +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonSyntaxTrees +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_DirectiveReferences +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_IsCaseSensitive +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_Language +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_LanguageVersion +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_Options +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_ReferencedAssemblyNames +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_ScriptCompilationInfo +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_SyntaxTrees +T:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithAssemblyIdentityComparer(Microsoft.CodeAnalysis.AssemblyIdentityComparer) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithCheckOverflow(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithConcurrentBuild(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithDelaySign(System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithDeterministic(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithFeatures(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithGeneralDiagnosticOption(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithMainTypeName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithMetadataImportOptions(Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithMetadataReferenceResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithModuleName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithOptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithOutputKind(Microsoft.CodeAnalysis.OutputKind) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithPlatform(Microsoft.CodeAnalysis.Platform) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithPublicSign(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithReportSuppressedDiagnostics(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithScriptClassName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithSourceReferenceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithSpecificDiagnosticOptions(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithSpecificDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithStrongNameProvider(Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithSyntaxTreeOptionsProvider(Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithXmlReferenceResolver(Microsoft.CodeAnalysis.XmlReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.ComputeHashCode +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.Equals(Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithAllowUnsafe(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithAssemblyIdentityComparer(Microsoft.CodeAnalysis.AssemblyIdentityComparer) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithConcurrentBuild(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithDelaySign(System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithDeterministic(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithGeneralDiagnosticOption(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithMainTypeName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithMetadataImportOptions(Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithMetadataReferenceResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithModuleName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithNullableContextOptions(Microsoft.CodeAnalysis.NullableContextOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithOptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithOutputKind(Microsoft.CodeAnalysis.OutputKind) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithOverflowChecks(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithPlatform(Microsoft.CodeAnalysis.Platform) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithPublicSign(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithReportSuppressedDiagnostics(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithScriptClassName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithSourceReferenceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithSpecificDiagnosticOptions(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithSpecificDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithStrongNameProvider(Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithSyntaxTreeOptionsProvider(Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithUsings(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithUsings(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithUsings(System.String[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithWarningLevel(System.Int32) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithXmlReferenceResolver(Microsoft.CodeAnalysis.XmlReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.get_AllowUnsafe +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.get_Language +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.get_NullableContextOptions +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.get_Usings +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.set_NullableContextOptions(Microsoft.CodeAnalysis.NullableContextOptions) +T:Microsoft.CodeAnalysis.CSharp.CSharpDiagnosticFormatter +M:Microsoft.CodeAnalysis.CSharp.CSharpDiagnosticFormatter.get_Instance +T:Microsoft.CodeAnalysis.CSharp.CSharpExtensions +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeControlFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeControlFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.ClassifyConversion(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.ClassifyConversion(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.ITypeSymbol,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.ClassifyConversion(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.ITypeSymbol,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetAliasInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetAwaitExpressionInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetCollectionInitializerSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetCompilationUnitRoot(Microsoft.CodeAnalysis.SyntaxTree,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetConstantValue(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetConversion(Microsoft.CodeAnalysis.Operations.IConversionOperation) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetConversion(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeconstructionInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeconstructionInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetElementConversion(Microsoft.CodeAnalysis.Operations.ISpreadOperation) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetFirstDirective(Microsoft.CodeAnalysis.SyntaxNode,System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetForEachStatementInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetForEachStatementInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetInConversion(Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetIndexerGroup(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetInterceptableLocation(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetInterceptorMethod(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetInterceptsLocationAttributeSyntax(Microsoft.CodeAnalysis.CSharp.InterceptableLocation) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetLastDirective(Microsoft.CodeAnalysis.SyntaxNode,System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetMemberGroup(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetMemberGroup(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetMemberGroup(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetOutConversion(Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetQueryClauseInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeAliasInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeConversion(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeTypeInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetTypeInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetTypeInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetTypeInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetTypeInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.Insert(Microsoft.CodeAnalysis.SyntaxTokenList,System.Int32,Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.IsContextualKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.IsKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.IsReservedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.IsVerbatimIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.IsVerbatimStringLiteral(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.Kind(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.Kind(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.Kind(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.Kind(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.ReplaceTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.ReplaceTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SemanticModel@,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModelForMethodBody(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModelForMethodBody(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.VarianceKindFromToken(Microsoft.CodeAnalysis.SyntaxToken) +T:Microsoft.CodeAnalysis.CSharp.CSharpFileSystemExtensions +M:Microsoft.CodeAnalysis.CSharp.CSharpFileSystemExtensions.Emit(Microsoft.CodeAnalysis.CSharp.CSharpCompilation,System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ResourceDescription},System.Threading.CancellationToken) +T:Microsoft.CodeAnalysis.CSharp.CSharpGeneratorDriver +M:Microsoft.CodeAnalysis.CSharp.CSharpGeneratorDriver.Create(Microsoft.CodeAnalysis.IIncrementalGenerator[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpGeneratorDriver.Create(Microsoft.CodeAnalysis.ISourceGenerator[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpGeneratorDriver.Create(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ISourceGenerator},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.AdditionalText},Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpGeneratorDriver.Create(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ISourceGenerator},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.AdditionalText},Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider,Microsoft.CodeAnalysis.GeneratorDriverOptions) +T:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.#ctor(Microsoft.CodeAnalysis.CSharp.LanguageVersion,Microsoft.CodeAnalysis.DocumentationMode,Microsoft.CodeAnalysis.SourceCodeKind,System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.CommonWithDocumentationMode(Microsoft.CodeAnalysis.DocumentationMode) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.CommonWithFeatures(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}}) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.CommonWithKind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.Equals(Microsoft.CodeAnalysis.CSharp.CSharpParseOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithDocumentationMode(Microsoft.CodeAnalysis.DocumentationMode) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithFeatures(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}}) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithKind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithLanguageVersion(Microsoft.CodeAnalysis.CSharp.LanguageVersion) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithPreprocessorSymbols(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithPreprocessorSymbols(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithPreprocessorSymbols(System.String[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_Default +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_Features +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_Language +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_LanguageVersion +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_PreprocessorSymbolNames +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_SpecifiedLanguageVersion +T:Microsoft.CodeAnalysis.CSharp.CSharpScriptCompilationInfo +M:Microsoft.CodeAnalysis.CSharp.CSharpScriptCompilationInfo.WithPreviousScriptCompilation(Microsoft.CodeAnalysis.CSharp.CSharpCompilation) +M:Microsoft.CodeAnalysis.CSharp.CSharpScriptCompilationInfo.get_PreviousScriptCompilation +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.DeserializeFrom(System.IO.Stream,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.EquivalentToCore(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.FindToken(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.FindTrivia(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.FindTrivia(System.Int32,System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetDiagnostics +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetFirstDirective(System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetFirstToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetLastDirective(System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetLastToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetLeadingTrivia +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetLocation +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetTrailingTrivia +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.InsertNodesInListCore(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.InsertTokensInListCore(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.InsertTriviaInListCore(Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.IsEquivalentToCore(Microsoft.CodeAnalysis.SyntaxNode,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.Kind +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.NormalizeWhitespaceCore(System.String,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.RemoveNodesCore(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},Microsoft.CodeAnalysis.SyntaxRemoveOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.ReplaceCore``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``0,Microsoft.CodeAnalysis.SyntaxNode},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Func{Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.ReplaceNodeInListCore(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.ReplaceTokenInListCore(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.ReplaceTriviaInListCore(Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.get_Language +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.get_SyntaxTreeCore +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.#ctor(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.Visit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAccessorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAliasQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAllowsConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAnonymousMethodExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAnonymousObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAnonymousObjectMemberDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArgument(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArrayRankSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArrayType(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArrowExpressionClause(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAssignmentExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAttributeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAttributeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAttributeList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAttributeTargetSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAwaitExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBaseExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBinaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBinaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBracketedArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBreakStatement(Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCasePatternSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCaseSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCastExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCatchClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCatchDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCatchFilterClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCheckedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCheckedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitClassDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCollectionExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCompilationUnit(Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConditionalAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConditionalExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConstantPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConstructorConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConstructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConstructorInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitContinueStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConversionOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConversionOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCrefBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCrefParameter(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCrefParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDeclarationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDeclarationPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDefaultConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDefaultExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDefaultSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDefineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDelegateDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDestructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDiscardDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDiscardPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitElementAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitElementBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitElifDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitElseClause(Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitElseDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEmptyStatement(Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEndIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEndRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEnumDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEnumMemberDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEqualsValueClause(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitErrorDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEventDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEventFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitExpressionColon(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitExpressionElement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitExpressionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitExternAliasDirective(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFinallyClause(Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFixedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitForEachStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitForEachVariableStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitForStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFromClause(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerParameter(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerUnmanagedCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerUnmanagedCallingConventionList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitGenericName(Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitGlobalStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitGotoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitGroupClause(Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIdentifierName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIfStatement(Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitImplicitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitImplicitElementAccess(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitImplicitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitImplicitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIncompleteMember(Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIndexerDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIndexerMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInitializerExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterfaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterpolatedStringExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterpolatedStringText(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterpolation(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterpolationAlignmentClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterpolationFormatClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInvocationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIsPatternExpression(Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitJoinClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitJoinIntoClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLabeledStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLetClause(Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLineDirectivePosition(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLineSpanDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitList(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitList(Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitListElement(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitListElement``1(``0) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitListPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitListSeparator(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitList``1(Microsoft.CodeAnalysis.SeparatedSyntaxList{``0}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitList``1(Microsoft.CodeAnalysis.SyntaxList{``0}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLiteralExpression(Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLoadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLocalDeclarationStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLocalFunctionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLockStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitMakeRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitMemberAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitMemberBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitMethodDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNameMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNullableDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNullableType(Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOmittedArraySizeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOmittedTypeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOrderByClause(Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOrdering(Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParameter(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParenthesizedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParenthesizedPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParenthesizedVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPositionalPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPragmaChecksumDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPredefinedType(Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPrimaryConstructorBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPropertyDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPropertyPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitQualifiedCref(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitQueryBody(Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitQueryContinuation(Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitQueryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRangeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRecordDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRecursivePattern(Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRefStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRefType(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRefTypeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRefValueExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitReferenceDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRelationalPattern(Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitReturnStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitScopedType(Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSelectClause(Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitShebangDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSimpleBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSingleVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSizeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSkippedTokensTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSlicePattern(Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSpreadElement(Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitStructDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSubpattern(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSwitchSection(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSwitchStatement(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitThisExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitThrowExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitThrowStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTrivia(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTryStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTupleElement(Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTupleExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTupleType(Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeParameter(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeParameterConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypePattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitUnaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitUndefDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitUnsafeStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitUsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitUsingStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitVarPattern(Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitVariableDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitVariableDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitWhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitWhereClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitWhileStatement(Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitWithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlCDataSection(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlComment(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlElementEndTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlElementStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlEmptyElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlPrefix(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlProcessingInstruction(Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlText(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitYieldStatement(Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.get_VisitIntoStructuredTrivia +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.#ctor +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.CloneNodeAsRoot``1(``0) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.Create(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.Create(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.Create(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetChangedSpans(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetChanges(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetCompilationUnitRoot(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetLineMappings(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetLineSpan(Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetLineVisibility(System.Int32,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetLocation(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetMappedLineSpan(Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetRoot(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetRootAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetRootAsyncCore(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetRootCore(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.HasHiddenRegions +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxTree,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Nullable{System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(System.String,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Nullable{System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(System.String,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(System.String,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.TryGetRoot(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode@) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.TryGetRootCore(Microsoft.CodeAnalysis.SyntaxNode@) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.WithChangedText(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.get_Options +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.get_OptionsCore +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.#ctor +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.DefaultVisit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.Visit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAccessorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAliasQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAllowsConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAnonymousMethodExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAnonymousObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAnonymousObjectMemberDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArgument(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArrayRankSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArrayType(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArrowExpressionClause(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAssignmentExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAttributeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAttributeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAttributeList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAttributeTargetSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAwaitExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBaseExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBinaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBinaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBracketedArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBreakStatement(Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCasePatternSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCaseSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCastExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCatchClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCatchDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCatchFilterClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCheckedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCheckedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitClassDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCollectionExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCompilationUnit(Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConditionalAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConditionalExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConstantPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConstructorConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConstructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConstructorInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitContinueStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConversionOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConversionOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCrefBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCrefParameter(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCrefParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDeclarationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDeclarationPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDefaultConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDefaultExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDefaultSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDefineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDelegateDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDestructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDiscardDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDiscardPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitElementAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitElementBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitElifDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitElseClause(Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitElseDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEmptyStatement(Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEndIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEndRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEnumDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEnumMemberDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEqualsValueClause(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitErrorDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEventDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEventFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitExpressionColon(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitExpressionElement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitExpressionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitExternAliasDirective(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFinallyClause(Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFixedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitForEachStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitForEachVariableStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitForStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFromClause(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerParameter(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerUnmanagedCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerUnmanagedCallingConventionList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitGenericName(Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitGlobalStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitGotoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitGroupClause(Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIdentifierName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIfStatement(Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitImplicitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitImplicitElementAccess(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitImplicitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitImplicitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIncompleteMember(Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIndexerDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIndexerMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInitializerExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterfaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterpolatedStringExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterpolatedStringText(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterpolation(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterpolationAlignmentClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterpolationFormatClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInvocationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIsPatternExpression(Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitJoinClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitJoinIntoClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLabeledStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLetClause(Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLineDirectivePosition(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLineSpanDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitListPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLiteralExpression(Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLoadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLocalDeclarationStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLocalFunctionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLockStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitMakeRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitMemberAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitMemberBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitMethodDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNameMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNullableDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNullableType(Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOmittedArraySizeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOmittedTypeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOrderByClause(Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOrdering(Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParameter(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParenthesizedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParenthesizedPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParenthesizedVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPositionalPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPragmaChecksumDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPredefinedType(Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPrimaryConstructorBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPropertyDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPropertyPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitQualifiedCref(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitQueryBody(Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitQueryContinuation(Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitQueryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRangeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRecordDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRecursivePattern(Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRefStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRefType(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRefTypeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRefValueExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitReferenceDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRelationalPattern(Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitReturnStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitScopedType(Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSelectClause(Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitShebangDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSimpleBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSingleVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSizeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSkippedTokensTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSlicePattern(Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSpreadElement(Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitStructDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSubpattern(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSwitchSection(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSwitchStatement(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitThisExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitThrowExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitThrowStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTryStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTupleElement(Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTupleExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTupleType(Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeParameter(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeParameterConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypePattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitUnaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitUndefDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitUnsafeStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitUsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitUsingStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitVarPattern(Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitVariableDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitVariableDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitWhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitWhereClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitWhileStatement(Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitWithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlCDataSection(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlComment(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlElementEndTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlElementStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlEmptyElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlPrefix(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlProcessingInstruction(Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlText(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitYieldStatement(Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax) +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1 +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.#ctor +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.DefaultVisit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.Visit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAccessorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAliasQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAllowsConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAnonymousMethodExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAnonymousObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAnonymousObjectMemberDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArgument(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArrayRankSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArrayType(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArrowExpressionClause(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAssignmentExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAttributeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAttributeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAttributeList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAttributeTargetSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAwaitExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBaseExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBinaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBinaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBracketedArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBreakStatement(Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCasePatternSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCaseSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCastExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCatchClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCatchDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCatchFilterClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCheckedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCheckedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitClassDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCollectionExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCompilationUnit(Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConditionalAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConditionalExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConstantPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConstructorConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConstructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConstructorInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitContinueStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConversionOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConversionOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCrefBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCrefParameter(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCrefParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDeclarationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDeclarationPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDefaultConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDefaultExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDefaultSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDefineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDelegateDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDestructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDiscardDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDiscardPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitElementAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitElementBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitElifDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitElseClause(Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitElseDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEmptyStatement(Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEndIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEndRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEnumDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEnumMemberDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEqualsValueClause(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitErrorDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEventDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEventFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitExpressionColon(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitExpressionElement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitExpressionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitExternAliasDirective(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFinallyClause(Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFixedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitForEachStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitForEachVariableStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitForStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFromClause(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerParameter(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerUnmanagedCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerUnmanagedCallingConventionList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitGenericName(Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitGlobalStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitGotoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitGroupClause(Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIdentifierName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIfStatement(Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitImplicitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitImplicitElementAccess(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitImplicitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitImplicitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIncompleteMember(Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIndexerDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIndexerMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInitializerExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterfaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterpolatedStringExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterpolatedStringText(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterpolation(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterpolationAlignmentClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterpolationFormatClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInvocationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIsPatternExpression(Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitJoinClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitJoinIntoClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLabeledStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLetClause(Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLineDirectivePosition(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLineSpanDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitListPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLiteralExpression(Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLoadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLocalDeclarationStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLocalFunctionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLockStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitMakeRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitMemberAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitMemberBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitMethodDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNameMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNullableDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNullableType(Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOmittedArraySizeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOmittedTypeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOrderByClause(Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOrdering(Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParameter(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParenthesizedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParenthesizedPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParenthesizedVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPositionalPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPragmaChecksumDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPredefinedType(Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPrimaryConstructorBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPropertyDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPropertyPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitQualifiedCref(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitQueryBody(Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitQueryContinuation(Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitQueryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRangeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRecordDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRecursivePattern(Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRefStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRefType(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRefTypeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRefValueExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitReferenceDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRelationalPattern(Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitReturnStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitScopedType(Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSelectClause(Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitShebangDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSimpleBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSingleVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSizeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSkippedTokensTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSlicePattern(Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSpreadElement(Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitStructDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSubpattern(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSwitchSection(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSwitchStatement(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitThisExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitThrowExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitThrowStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTryStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTupleElement(Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTupleExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTupleType(Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeParameter(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeParameterConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypePattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitUnaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitUndefDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitUnsafeStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitUsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitUsingStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitVarPattern(Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitVariableDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitVariableDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitWhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitWhereClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitWhileStatement(Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitWithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlCDataSection(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlComment(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlElementEndTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlElementStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlEmptyElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlPrefix(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlProcessingInstruction(Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlText(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitYieldStatement(Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax) +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.#ctor(Microsoft.CodeAnalysis.SyntaxWalkerDepth) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.DefaultVisit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.Visit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.VisitLeadingTrivia(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.VisitToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.VisitTrailingTrivia(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.VisitTrivia(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.get_Depth +T:Microsoft.CodeAnalysis.CSharp.Conversion +M:Microsoft.CodeAnalysis.CSharp.Conversion.Equals(Microsoft.CodeAnalysis.CSharp.Conversion) +M:Microsoft.CodeAnalysis.CSharp.Conversion.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.Conversion.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.Conversion.ToCommonConversion +M:Microsoft.CodeAnalysis.CSharp.Conversion.ToString +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_ConstrainedToType +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_Exists +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsAnonymousFunction +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsBoxing +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsCollectionExpression +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsConditionalExpression +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsConstantExpression +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsDefaultLiteral +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsDynamic +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsEnumeration +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsExplicit +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsIdentity +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsImplicit +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsInlineArray +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsIntPtr +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsInterpolatedString +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsInterpolatedStringHandler +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsMethodGroup +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsNullLiteral +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsNullable +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsNumeric +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsObjectCreation +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsPointer +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsReference +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsStackAlloc +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsSwitchExpression +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsThrow +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsTupleConversion +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsTupleLiteralConversion +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsUnboxing +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsUserDefined +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_MethodSymbol +M:Microsoft.CodeAnalysis.CSharp.Conversion.op_Equality(Microsoft.CodeAnalysis.CSharp.Conversion,Microsoft.CodeAnalysis.CSharp.Conversion) +M:Microsoft.CodeAnalysis.CSharp.Conversion.op_Inequality(Microsoft.CodeAnalysis.CSharp.Conversion,Microsoft.CodeAnalysis.CSharp.Conversion) +T:Microsoft.CodeAnalysis.CSharp.DeconstructionInfo +M:Microsoft.CodeAnalysis.CSharp.DeconstructionInfo.get_Conversion +M:Microsoft.CodeAnalysis.CSharp.DeconstructionInfo.get_Method +M:Microsoft.CodeAnalysis.CSharp.DeconstructionInfo.get_Nested +T:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.Equals(Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo) +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_CurrentConversion +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_CurrentProperty +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_DisposeMethod +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_ElementConversion +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_ElementType +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_GetEnumeratorMethod +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_IsAsynchronous +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_MoveNextMethod +T:Microsoft.CodeAnalysis.CSharp.InterceptableLocation +M:Microsoft.CodeAnalysis.CSharp.InterceptableLocation.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.InterceptableLocation.GetDisplayLocation +M:Microsoft.CodeAnalysis.CSharp.InterceptableLocation.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.InterceptableLocation.get_Data +M:Microsoft.CodeAnalysis.CSharp.InterceptableLocation.get_Version +T:Microsoft.CodeAnalysis.CSharp.LanguageVersion +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp1 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp10 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp11 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp12 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp2 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp3 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp4 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp5 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp6 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp7 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp7_1 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp7_2 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp7_3 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp8 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp9 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.Default +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.Latest +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.LatestMajor +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.Preview +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.value__ +T:Microsoft.CodeAnalysis.CSharp.LanguageVersionFacts +M:Microsoft.CodeAnalysis.CSharp.LanguageVersionFacts.MapSpecifiedToEffectiveVersion(Microsoft.CodeAnalysis.CSharp.LanguageVersion) +M:Microsoft.CodeAnalysis.CSharp.LanguageVersionFacts.ToDisplayString(Microsoft.CodeAnalysis.CSharp.LanguageVersion) +M:Microsoft.CodeAnalysis.CSharp.LanguageVersionFacts.TryParse(System.String,Microsoft.CodeAnalysis.CSharp.LanguageVersion@) +T:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo +M:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo.Equals(Microsoft.CodeAnalysis.CSharp.QueryClauseInfo) +M:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo.get_CastInfo +M:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo.get_OperationInfo +T:Microsoft.CodeAnalysis.CSharp.SymbolDisplay +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.FormatLiteral(System.Char,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.FormatLiteral(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.FormatPrimitive(System.Object,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayParts(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayParts(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableAnnotation,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayParts(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayString(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayString(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableAnnotation,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayString(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayParts(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayParts(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableAnnotation,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayParts(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayString(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayString(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableAnnotation,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayString(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +T:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.AddAccessors(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.WithAccessors(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.get_Accessors +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.get_OpenBraceToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.WithAlias(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.WithColonColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.get_Alias +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.get_ColonColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.get_Name +T:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.AddConstraints(Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.WithAllowsKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.WithConstraints(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.get_AllowsKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.get_Constraints +T:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.WithAsyncKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.get_AsyncKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.get_Modifiers +T:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithAsyncKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithDelegateKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_AsyncKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_DelegateKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_ParameterList +T:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.AddInitializers(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.WithInitializers(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.get_Initializers +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.get_OpenBraceToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.WithNameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.get_NameEquals +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.get_OpenParenToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.WithNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.WithRefKindKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.WithRefOrOutKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.get_NameColon +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.get_RefKindKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.get_RefOrOutKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.AddTypeRankSpecifiers(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.AddSizes(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.WithSizes(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.get_Rank +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.get_Sizes +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.AddRankSpecifiers(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.WithElementType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.WithRankSpecifiers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.get_ElementType +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.get_RankSpecifiers +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.WithArrowToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.get_ArrowToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.get_Expression +T:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.WithLeft(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.WithRight(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.get_Left +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.get_Right +T:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.get_OpenParenToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.WithNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.WithNameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.get_NameColon +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.get_NameEquals +T:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.AddAttributes(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.WithAttributes(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.WithTarget(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.get_Attributes +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.get_Target +T:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.get_Name +T:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.get_Identifier +T:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.get_Expression +T:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.get_IsActive +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseArgumentListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseArgumentListSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseArgumentListSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseArgumentListSyntax.get_Arguments +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseCrefParameterListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseCrefParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseCrefParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseCrefParameterListSyntax.get_Parameters +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax.get_Expression +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax.WithToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax.get_Token +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.AddDeclarationVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.AddTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.WithTypes(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.get_Types +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.AddExterns(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.AddUsings(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithExterns(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithNamespaceKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithUsings(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.get_Externs +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.get_NamespaceKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.get_Usings +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.get_NewKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterListSyntax.get_Parameters +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.AddAccessorListAccessors(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.WithAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.get_AccessorList +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.WithLeft(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.WithRight(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.get_Left +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.get_Right +T:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.WithLeft(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.WithRight(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.get_Left +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.get_Right +T:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.AddStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.WithStatements(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.get_Statements +T:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.get_OpenBracketToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.get_Parameters +T:Microsoft.CodeAnalysis.CSharp.Syntax.BranchingDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BranchingDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BranchingDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BranchingDirectiveTriviaSyntax.get_BranchTaken +T:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.WithBreakKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.get_BreakKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.WithWhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.get_Pattern +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.get_WhenClause +T:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.WithValue(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.get_Value +T:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.WithCatchKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.WithFilter(Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.get_CatchKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.get_Filter +T:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.WithFilterExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.WithWhenKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.get_FilterExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.get_WhenKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.get_OpenParenToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.get_Keyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_TypeParameterList +T:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.WithClassOrStructKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.WithQuestionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.get_ClassOrStructKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.get_QuestionToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.AddElements(Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.WithElements(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.get_Elements +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.get_OpenBracketToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithForEachKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithInKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_ForEachKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_InKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_Statement +T:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.AddExterns(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.AddUsings(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.GetLoadDirectives +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.GetReferenceDirectives +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.WithEndOfFileToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.WithExterns(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.WithUsings(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.get_EndOfFileToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.get_Externs +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.get_Usings +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.WithWhenNotNull(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.get_WhenNotNull +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalDirectiveTriviaSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalDirectiveTriviaSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalDirectiveTriviaSyntax.get_ConditionValue +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.WithQuestionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.WithWhenFalse(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.WithWhenTrue(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.get_QuestionToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.get_WhenFalse +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.get_WhenTrue +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax.get_Expression +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.get_OpenParenToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.WithThisOrBaseKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.get_ThisOrBaseKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.WithContinueKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.get_ContinueKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithCheckedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithImplicitOrExplicitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithOperatorKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_CheckedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_ImplicitOrExplicitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_OperatorKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.AddParametersParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.WithCheckedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.WithImplicitOrExplicitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.WithOperatorKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.WithParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.get_CheckedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.get_ImplicitOrExplicitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.get_OperatorKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.get_Parameters +T:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.get_Parameters +T:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.WithReadOnlyKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.WithRefKindKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.WithRefOrOutKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.get_ReadOnlyKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.get_RefKindKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.get_RefOrOutKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.WithDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.get_Designation +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.WithDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.get_Designation +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax.WithDefaultKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax.get_DefaultKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.get_Keyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.WithDefineKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.WithName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.get_DefineKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.get_Name +T:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithDelegateKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithReturnType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_Arity +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_DelegateKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_ReturnType +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_TypeParameterList +T:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithTildeToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_TildeToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.GetNextDirective(System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.GetPreviousDirective(System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.GetRelatedDirectives +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.get_DirectiveNameToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.get_IsActive +T:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax.WithUnderscoreToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax.get_UnderscoreToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax.WithUnderscoreToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax.get_UnderscoreToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithDoKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithWhileKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_DoKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_WhileKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.AddContent(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.WithContent(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.WithEndOfComment(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.get_Content +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.get_EndOfComment +T:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.get_Expression +T:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.get_ArgumentList +T:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithBranchTaken(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithConditionValue(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithElifKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_BranchTaken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_ConditionValue +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_ElifKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_IsActive +T:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.WithElseKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.get_ElseKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.get_Statement +T:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.WithBranchTaken(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.WithElseKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.get_BranchTaken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.get_ElseKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.get_IsActive +T:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.WithEndIfKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.get_EndIfKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.get_IsActive +T:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.WithEndRegionKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.get_EndRegionKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.get_IsActive +T:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithEnumKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_EnumKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.WithEqualsValue(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.get_EqualsValue +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.get_Modifiers +T:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.WithValue(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.get_Value +T:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.WithErrorKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.get_ErrorKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.get_IsActive +T:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.AddAccessorListAccessors(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithEventKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_AccessorList +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_EventKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.AddDeclarationVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.WithEventKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.get_EventKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.WithDotToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.get_DotToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.get_Name +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.get_Expression +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax.get_Expression +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionOrPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.get_AllowsAnyExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.WithAliasKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.WithExternKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.get_AliasKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.get_ExternKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.AddDeclarationVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.AddExterns(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.AddUsings(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithExterns(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithNamespaceKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithUsings(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_Externs +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_NamespaceKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_Usings +T:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.WithFinallyKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.get_FinallyKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.AddDeclarationVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithFixedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_FixedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_Statement +T:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithForEachKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithInKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_ForEachKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_InKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithForEachKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithInKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithVariable(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_ForEachKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_InKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_Variable +T:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.AddIncrementors(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.AddInitializers(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithFirstSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithForKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithIncrementors(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithInitializers(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithSecondSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_FirstSemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_ForKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_Incrementors +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_Initializers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_SecondSemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_Statement +T:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.WithFromKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.WithInKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.get_FromKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.get_InKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.AddUnmanagedCallingConventionListCallingConventions(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.WithManagedOrUnmanagedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.WithUnmanagedCallingConventionList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.get_ManagedOrUnmanagedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.get_UnmanagedCallingConventionList +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.WithGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.WithLessThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.get_GreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.get_LessThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.get_Parameters +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.WithAsteriskToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.WithCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.WithDelegateKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.get_AsteriskToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.get_CallingConvention +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.get_DelegateKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.get_ParameterList +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.AddCallingConventions(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.WithCallingConventions(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.get_CallingConventions +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.get_OpenBracketToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax.WithName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax.get_Name +T:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.AddTypeArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.WithTypeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.get_IsUnboundGenericName +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.get_TypeArgumentList +T:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.get_Statement +T:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.WithCaseOrDefaultKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.WithGotoKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.get_CaseOrDefaultKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.get_GotoKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.WithByExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.WithByKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.WithGroupExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.WithGroupKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.get_ByExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.get_ByKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.get_GroupExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.get_GroupKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax.get_Identifier +T:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithBranchTaken(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithConditionValue(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithIfKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_BranchTaken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_ConditionValue +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_IfKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_IsActive +T:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithElse(Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithIfKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_Else +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_IfKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_Statement +T:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.AddCommas(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.AddInitializerExpressions(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.WithCommas(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.get_Commas +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.get_OpenBracketToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.get_ArgumentList +T:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.get_NewKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.AddInitializerExpressions(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.WithStackAllocKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.get_StackAllocKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.AddAccessorListAccessors(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithSemicolon(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithThisKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_AccessorList +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_Semicolon +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_ThisKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.AddParametersParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.WithParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.WithThisKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.get_ThisKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.AddExpressions(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.WithExpressions(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.get_Expressions +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.get_OpenBraceToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.InstanceExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_TypeParameterList +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.AddContents(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.WithContents(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.WithStringEndToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.WithStringStartToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.get_Contents +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.get_StringEndToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.get_StringStartToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax.WithTextToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax.get_TextToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.WithCommaToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.WithValue(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.get_CommaToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.get_Value +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.WithFormatStringToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.get_FormatStringToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.WithAlignmentClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.WithFormatClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.get_AlignmentClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.get_FormatClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.get_OpenBraceToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.get_Expression +T:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.WithIsKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.get_IsKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.get_Pattern +T:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithEqualsKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithInExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithInKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithInto(Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithJoinKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithLeftExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithOnKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithRightExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_EqualsKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_InExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_InKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_Into +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_JoinKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_LeftExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_OnKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_RightExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.WithIntoKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.get_IntoKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.get_Statement +T:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithArrowToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithAsyncKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.get_ArrowToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.get_AttributeLists +T:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.WithLetKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.get_LetKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.WithCharacter(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.WithCommaToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.WithLine(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.get_Character +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.get_CommaToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.get_Line +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.get_OpenParenToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithLine(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithLineKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_Line +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_LineKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.WithLineKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.get_LineKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithCharacterOffset(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithEnd(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithLineKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithMinusToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithStart(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_CharacterOffset +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_End +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_LineKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_MinusToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_Start +T:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.AddPatterns(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.WithDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.WithPatterns(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.get_Designation +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.get_Patterns +T:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax.WithToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax.get_Token +T:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.WithLoadKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.get_LoadKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.AddDeclarationVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithUsingKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_IsConst +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_UsingKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithReturnType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_ReturnType +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_TypeParameterList +T:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithLockKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_LockKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_Statement +T:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.get_OpenParenToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.get_OperatorToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.get_OperatorToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.MemberCrefSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.get_Modifiers +T:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithReturnType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_Arity +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_ReturnType +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_TypeParameterList +T:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.get_Name +T:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.get_Name +T:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.AddParametersParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.WithParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.get_Parameters +T:Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax.get_Arity +T:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.AddExterns(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.AddUsings(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithExterns(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithNamespaceKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithUsings(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_Externs +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_NamespaceKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_Usings +T:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithNullableKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithSettingToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithTargetToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_NullableKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_SettingToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_TargetToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.WithElementType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.WithQuestionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.get_ElementType +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.get_QuestionToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax.WithOmittedArraySizeExpressionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax.get_OmittedArraySizeExpressionToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax.WithOmittedTypeArgumentToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax.get_OmittedTypeArgumentToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithCheckedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithOperatorKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithReturnType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_CheckedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_OperatorKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_ReturnType +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.AddParametersParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.WithCheckedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.WithOperatorKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.WithParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.get_CheckedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.get_OperatorKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.get_Parameters +T:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.AddOrderings(Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.WithOrderByKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.WithOrderings(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.get_OrderByKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.get_Orderings +T:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.WithAscendingOrDescendingKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.get_AscendingOrDescendingKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.get_Expression +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.get_Parameters +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.WithDefault(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.get_Default +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.get_OpenParenToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithArrowToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithAsyncKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithReturnType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_ArrowToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_AsyncKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_ReturnType +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.get_Pattern +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.AddVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.WithVariables(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.get_Variables +T:Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.WithAsteriskToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.WithElementType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.get_AsteriskToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.get_ElementType +T:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.AddSubpatterns(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.WithSubpatterns(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.get_Subpatterns +T:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.WithOperand(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.get_Operand +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.get_OperatorToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithBytes(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithChecksumKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithGuid(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithPragmaKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_Bytes +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_ChecksumKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_Guid +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_PragmaKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.AddErrorCodes(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithDisableOrRestoreKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithErrorCodes(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithPragmaKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithWarningKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_DisableOrRestoreKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_ErrorCodes +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_PragmaKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_WarningKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax.get_Keyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.WithOperand(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.get_Operand +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.get_OperatorToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.AddAccessorListAccessors(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithSemicolon(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_AccessorList +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_Semicolon +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.AddSubpatterns(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.WithSubpatterns(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.get_Subpatterns +T:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.MemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.WithContainer(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.WithDotToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.WithMember(Microsoft.CodeAnalysis.CSharp.Syntax.MemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.get_Container +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.get_DotToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.get_Member +T:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.WithDotToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.WithLeft(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.WithRight(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.get_DotToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.get_Left +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.get_Right +T:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.AddClauses(Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.WithClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.WithContinuation(Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.WithSelectOrGroup(Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.get_Clauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.get_Continuation +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.get_SelectOrGroup +T:Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.AddBodyClauses(Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.WithIntoKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.get_IntoKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.AddBodyClauses(Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.WithFromClause(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.get_FromClause +T:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.WithLeftOperand(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.WithRightOperand(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.get_LeftOperand +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.get_RightOperand +T:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithClassOrStructKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_ClassOrStructKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_TypeParameterList +T:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.AddPositionalPatternClauseSubpatterns(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.AddPropertyPatternClauseSubpatterns(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.WithDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.WithPositionalPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.WithPropertyPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.get_Designation +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.get_PositionalPatternClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.get_PropertyPatternClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.WithRefKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.get_RefKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.WithRefKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.WithStructKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.get_RefKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.get_StructKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.get_OpenParenToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.WithReadOnlyKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.WithRefKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.get_ReadOnlyKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.get_RefKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithComma(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_Comma +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.WithReferenceKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.get_ReferenceKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.WithRegionKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.get_RegionKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.get_OperatorToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.WithReturnKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.get_ReturnKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.get_SemicolonToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.WithScopedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.get_ScopedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.WithSelectKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.get_SelectKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.WithExclamationToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.get_ExclamationToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.get_IsActive +T:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddParameterAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddParameterModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithArrowToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithAsyncKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithParameter(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_ArrowToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_AsyncKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_Parameter +T:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax.get_Identifier +T:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax.get_Identifier +T:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.AddTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.WithTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.get_Tokens +T:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.WithDotDotToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.get_DotDotToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.get_Pattern +T:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.get_OperatorToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.WithStackAllocKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.get_StackAllocKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax.get_AttributeLists +T:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_TypeParameterList +T:Microsoft.CodeAnalysis.CSharp.Syntax.StructuredTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructuredTriviaSyntax.get_ParentTrivia +T:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.WithExpressionColon(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.WithNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.get_ExpressionColon +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.get_NameColon +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.get_Pattern +T:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.WithEqualsGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.WithWhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.get_EqualsGreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.get_Pattern +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.get_WhenClause +T:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.AddArms(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.WithArms(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.WithGoverningExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.WithSwitchKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.get_Arms +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.get_GoverningExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.get_SwitchKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax.get_Keyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.AddLabels(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.AddStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.WithLabels(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.WithStatements(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.get_Labels +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.get_Statements +T:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.AddSections(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithSections(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithSwitchKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_Sections +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_SwitchKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax.WithToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax.get_Token +T:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.WithThrowKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.get_ThrowKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.WithThrowKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.get_ThrowKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.AddCatches(Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.WithCatches(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.WithFinally(Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.WithTryKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.get_Catches +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.get_Finally +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.get_TryKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.get_OpenParenToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.AddElements(Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.WithElements(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.get_Elements +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.get_OpenParenToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.WithGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.WithLessThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.get_GreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.get_LessThanToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_Arity +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_TypeParameterList +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.AddConstraints(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.WithConstraints(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.WithWhereKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.get_Constraints +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.get_WhereKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.WithGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.WithLessThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.get_GreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.get_LessThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.get_Parameters +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.WithVarianceKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.get_VarianceKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax.get_Type +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax.get_IsNint +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax.get_IsNotNull +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax.get_IsNuint +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax.get_IsUnmanaged +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax.get_IsVar +T:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.get_Pattern +T:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.WithName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.WithUndefKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.get_UndefKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.WithUnsafeKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.get_UnsafeKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithAlias(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithGlobalKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithNamespaceOrType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithStaticKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithUnsafeKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithUsingKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_Alias +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_GlobalKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_NamespaceOrType +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_StaticKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_UnsafeKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_UsingKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithUsingKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_UsingKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.WithDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.WithVarKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.get_Designation +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.get_VarKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.AddVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.WithVariables(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.get_Variables +T:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.get_Initializer +T:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.WithWarningKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.get_WarningKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.WithWhenKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.get_WhenKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.WithWhereKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.get_WhereKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithWhileKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_WhileKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.AddInitializerExpressions(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.WithWithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.get_WithKeyword +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.WithEndQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.WithStartQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.get_EndQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.get_StartQuoteToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.AddTextTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.WithEndCDataToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.WithStartCDataToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.WithTextTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.get_EndCDataToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.get_StartCDataToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.get_TextTokens +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.AddTextTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.WithLessThanExclamationMinusMinusToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.WithMinusMinusGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.WithTextTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.get_LessThanExclamationMinusMinusToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.get_MinusMinusGreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.get_TextTokens +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.WithCref(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.WithEndQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.WithStartQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.get_Cref +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.get_EndQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.get_StartQuoteToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.WithGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.WithLessThanSlashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.get_GreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.get_LessThanSlashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.get_Name +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.AddAttributes(Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.WithAttributes(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.WithGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.WithLessThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.get_Attributes +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.get_GreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.get_LessThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.get_Name +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.AddContent(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.AddStartTagAttributes(Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.WithContent(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.WithEndTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.WithStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.get_Content +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.get_EndTag +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.get_StartTag +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.AddAttributes(Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.WithAttributes(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.WithLessThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.WithSlashGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.get_Attributes +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.get_LessThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.get_SlashGreaterThanToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind +F:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind.Parameter +F:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind.ParameterReference +F:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind.TypeParameter +F:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind.TypeParameterReference +F:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind.value__ +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.WithEndQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.WithIdentifier(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.WithStartQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.get_EndQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.get_StartQuoteToken +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.WithLocalName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.WithPrefix(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.get_LocalName +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.get_Prefix +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.WithPrefix(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.get_Prefix +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.AddTextTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.WithEndProcessingInstructionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.WithStartProcessingInstructionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.WithTextTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.get_EndProcessingInstructionToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.get_StartProcessingInstructionToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.get_TextTokens +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.AddTextTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.WithEndQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.WithStartQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.WithTextTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.get_EndQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.get_StartQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.get_TextTokens +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.AddTextTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.WithTextTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.get_TextTokens +T:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.WithReturnOrBreakKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.WithYieldKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.get_ReturnOrBreakKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.get_YieldKeyword +T:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.NormalizeWhitespace(Microsoft.CodeAnalysis.SyntaxToken,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.NormalizeWhitespace(Microsoft.CodeAnalysis.SyntaxToken,System.String,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.NormalizeWhitespace(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.NormalizeWhitespace(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.ToSyntaxTriviaList(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.Update(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.Update(Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.Update(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.WithIdentifier(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +T:Microsoft.CodeAnalysis.CSharp.SyntaxFactory +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorList(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AliasQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AliasQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AliasQualifiedName(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AllowsConstraintClause(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AllowsConstraintClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousObjectCreationExpression(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousObjectCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousObjectMemberDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousObjectMemberDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode,System.Func{Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxTree,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent``1(Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent``1(Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},System.Func{Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent``1(Microsoft.CodeAnalysis.SyntaxList{``0},Microsoft.CodeAnalysis.SyntaxList{``0},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent``1(Microsoft.CodeAnalysis.SyntaxList{``0},Microsoft.CodeAnalysis.SyntaxList{``0},System.Func{Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Argument(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Argument(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArgumentList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArgumentList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayRankSpecifier(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayRankSpecifier(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrowExpressionClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrowExpressionClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AssignmentExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AssignmentExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Attribute(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Attribute(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeArgumentList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeArgumentList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeTargetSpecifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeTargetSpecifier(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AwaitExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AwaitExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BadDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BadDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BadToken(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BaseExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BaseExpression(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BaseList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BaseList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BinaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BinaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BinaryPattern(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BinaryPattern(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BracketedArgumentList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BracketedArgumentList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BracketedParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BracketedParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BreakStatement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BreakStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BreakStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BreakStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CasePatternSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CasePatternSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CasePatternSwitchLabel(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CaseSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CaseSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CaseSwitchLabel(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CastExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CastExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchClause +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchDeclaration(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchFilterClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchFilterClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CollectionExpression(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CollectionExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Comment(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CompilationUnit +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CompilationUnit(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CompilationUnit(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConditionalAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConditionalAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConditionalExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConditionalExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstantPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorConstraint +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorConstraint(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorInitializer(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorInitializer(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ContinueStatement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ContinueStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ContinueStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ContinueStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CreateTokenParser(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefBracketedParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefBracketedParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefParameter(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefParameter(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefParameter(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DeclarationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DeclarationPattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultConstraint +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultConstraint(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultSwitchLabel +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultSwitchLabel(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultSwitchLabel(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefineDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefineDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefineDirectiveTrivia(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DelegateDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DelegateDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DelegateDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DelegateDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DisabledText(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DiscardDesignation +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DiscardDesignation(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DiscardPattern +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DiscardPattern(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DoStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DoStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DoStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DocumentationComment(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DocumentationCommentExterior(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElasticEndOfLine(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElasticWhitespace(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElementAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElementAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElementBindingExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElementBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElifDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElifDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElseClause(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElseClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElseDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElseDirectiveTrivia(System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EmptyStatement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EmptyStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EmptyStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EmptyStatement(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndIfDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndIfDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndOfLine(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndOfLine(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndRegionDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndRegionDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumMemberDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumMemberDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumMemberDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumMemberDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EqualsValueClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EqualsValueClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ErrorDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ErrorDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventFieldDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventFieldDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionColon(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionElement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExternAliasDirective(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExternAliasDirective(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExternAliasDirective(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FieldDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FieldDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FinallyClause(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FinallyClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FixedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FixedStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FixedStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FixedStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachVariableStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachVariableStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachVariableStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachVariableStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachVariableStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForStatement(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FromClause(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FromClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FromClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FromClause(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerCallingConvention(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerCallingConvention(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerParameter(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerParameter(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerType +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerType(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerUnmanagedCallingConvention(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerUnmanagedCallingConventionList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerUnmanagedCallingConventionList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GenericName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GenericName(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GenericName(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GetNonGenericExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GetStandaloneExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GlobalStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GlobalStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GotoStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GotoStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GotoStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GotoStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GotoStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GroupClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GroupClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Identifier(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Identifier(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Identifier(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IdentifierName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IdentifierName(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitElementAccess +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitElementAccess(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitObjectCreationExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitObjectCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IncompleteMember(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IncompleteMember(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InitializerExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InitializerExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterfaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterfaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterfaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterfaceDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterfaceDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringExpression(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringText +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringText(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Interpolation(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Interpolation(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Interpolation(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolationAlignmentClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolationFormatClause(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolationFormatClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InvocationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InvocationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IsCompleteSubmission(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IsPatternExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IsPatternExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinClause(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinClause(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinIntoClause(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinIntoClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinIntoClause(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LabeledStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LabeledStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LabeledStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LabeledStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LabeledStatement(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LetClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LetClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LetClause(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineDirectivePosition(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineDirectivePosition(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineSpanDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineSpanDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineSpanDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ListPattern(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ListPattern(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ListPattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.List``1 +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.List``1(System.Collections.Generic.IEnumerable{``0}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Char,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Decimal,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Double,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Int32,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Int64,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Single,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.UInt32,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.UInt64,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Decimal) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Double) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Int32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Int64) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Single) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Decimal) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Double) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Int32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Int64) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Single) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.UInt32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.UInt64) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.UInt32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.UInt64) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LiteralExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LiteralExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LoadDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LoadDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LockStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LockStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LockStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LockStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MakeRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MakeRefExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MemberAccessExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MemberAccessExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MemberBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MemberBindingExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MethodDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MethodDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MethodDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MethodDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MethodDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MissingToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MissingToken(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameColon(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameColon(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameColon(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameEquals(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NamespaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NamespaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NamespaceDeclaration(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NodeOrTokenList +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NodeOrTokenList(Microsoft.CodeAnalysis.SyntaxNodeOrToken[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NodeOrTokenList(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NullableDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NullableDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NullableDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NullableType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NullableType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ObjectCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OmittedArraySizeExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OmittedArraySizeExpression(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OmittedTypeArgument +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OmittedTypeArgument(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OrderByClause(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OrderByClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Ordering(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Ordering(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Parameter(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Parameter(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedPattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedVariableDesignation(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedVariableDesignation(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseArgumentList(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseAttributeArgumentList(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseBracketedArgumentList(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseBracketedParameterList(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseCompilationUnit(System.String,System.Int32,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseExpression(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseLeadingTrivia(System.String,System.Int32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseMemberDeclaration(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseName(System.String,System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseParameterList(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseStatement(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Nullable{System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(System.String,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Nullable{System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(System.String,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(System.String,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Text.Encoding,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseToken(System.String,System.Int32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseTokens(System.String,System.Int32,System.Int32,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseTrailingTrivia(System.String,System.Int32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseTypeName(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseTypeName(System.String,System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PointerType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PointerType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PositionalPatternClause(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PositionalPatternClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PragmaChecksumDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PragmaChecksumDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PredefinedType(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PreprocessingMessage(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PrimaryConstructorBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PrimaryConstructorBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyPatternClause(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyPatternClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QualifiedCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.MemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QualifiedCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.MemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryBody(Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryBody(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryContinuation(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryContinuation(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryContinuation(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RangeExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RangeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RangeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.SyntaxToken,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecursivePattern +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecursivePattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefStructConstraint +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefStructConstraint(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefType(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefType(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefTypeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefTypeExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefValueExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefValueExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReferenceDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReferenceDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RegionDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RegionDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RelationalPattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReturnStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReturnStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReturnStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReturnStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ScopedType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ScopedType(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SelectClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SelectClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SeparatedList``1 +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SeparatedList``1(Microsoft.CodeAnalysis.SyntaxNodeOrTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SeparatedList``1(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SeparatedList``1(System.Collections.Generic.IEnumerable{``0}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SeparatedList``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ShebangDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ShebangDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SingleVariableDesignation(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SingletonList``1(``0) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SingletonSeparatedList``1(``0) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SizeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SizeOfExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SkippedTokensTrivia +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SkippedTokensTrivia(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SlicePattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SlicePattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SpreadElement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SpreadElement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StackAllocArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StackAllocArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Subpattern(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Subpattern(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Subpattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchSection +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchSection(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SyntaxTree(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Text.Encoding) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SyntaxTrivia(Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThisExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThisExpression(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Token(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Token(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Token(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TokenList +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TokenList(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TokenList(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TokenList(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Trivia(Microsoft.CodeAnalysis.CSharp.Syntax.StructuredTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TriviaList +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TriviaList(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TriviaList(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TriviaList(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TryStatement(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TryStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TryStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TryStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TryStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleElement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleElement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleExpression(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleType(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleType(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeArgumentList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeArgumentList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeOfExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameter(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameter(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameter(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterConstraintClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterConstraintClause(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypePattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnaryPattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UndefDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UndefDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UndefDirectiveTrivia(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnsafeStatement(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnsafeStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnsafeStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnsafeStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VarPattern(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VarPattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VariableDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VariableDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VariableDeclarator(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VariableDeclarator(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VariableDeclarator(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VerbatimIdentifier(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WarningDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WarningDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhenClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhereClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhereClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhileStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhileStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhileStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhileStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Whitespace(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Whitespace(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCDataSection(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCDataSection(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlComment(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlComment(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElement(System.String,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElementEndTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElementEndTag(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElementStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElementStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElementStartTag(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlEmptyElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlEmptyElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlEmptyElement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlEmptyElement(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlEntity(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlExampleElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlExampleElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlExceptionElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlExceptionElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlMultiLineElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlMultiLineElement(System.String,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlName(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.String,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNameAttribute(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNewLine(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNullKeywordElement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlParaElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlParaElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlParamElement(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlParamElement(System.String,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlParamRefElement(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPermissionElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPermissionElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPlaceholderElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPlaceholderElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPrefix(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPrefix(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPrefix(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPreliminaryElement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlProcessingInstruction(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlProcessingInstruction(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlProcessingInstruction(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlRemarksElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlRemarksElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlReturnsElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlReturnsElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlSeeAlsoElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlSeeAlsoElement(System.Uri,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlSeeElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlSummaryElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlSummaryElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlText +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlText(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlText(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlText(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(System.String,Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(System.String,Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(System.String,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextLiteral(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextLiteral(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextLiteral(System.String,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextNewLine(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextNewLine(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextNewLine(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlThreadSafetyElement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlThreadSafetyElement(System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlValueElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlValueElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.YieldStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.YieldStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.YieldStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.YieldStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_CarriageReturn +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_CarriageReturnLineFeed +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticCarriageReturn +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticCarriageReturnLineFeed +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticLineFeed +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticMarker +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticSpace +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticTab +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_LineFeed +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_Space +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_Tab +T:Microsoft.CodeAnalysis.CSharp.SyntaxFacts +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetAccessorDeclarationKind(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetAssignmentExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetBaseTypeDeclarationKind(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetBinaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetCheckStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetContextualKeywordKind(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetContextualKeywordKinds +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetInstanceExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetKeywordKind(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetKeywordKinds +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetLiteralExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetOperatorKind(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPreprocessorKeywordKind(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPreprocessorKeywordKinds +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPrimaryFunction(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPunctuationKinds +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetReservedKeywordKinds +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetSwitchLabelKind(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetText(Microsoft.CodeAnalysis.Accessibility) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetText(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetTypeDeclarationKind(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAccessibilityModifier(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAccessorDeclarationKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAliasQualifier(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAnyOverloadableOperator(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAnyToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAnyUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAssignmentExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAssignmentExpressionOperatorToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAttributeName(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAttributeTargetSpecifier(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsBinaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsBinaryExpressionOperatorToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsCheckedOperator(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsContextualKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsDocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsFixedStatementExpression(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsGlobalMemberDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsIdentifierPartCharacter(System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsIdentifierStartCharacter(System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsInNamespaceOrTypeContext(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsInTypeOnlyContext(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsIndexed(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsInstanceExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsInvoked(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsKeywordKind(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsLambdaBody(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsLanguagePunctuation(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsLiteralExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsName(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsNamedArgumentName(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsNamespaceAliasQualifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsNamespaceMemberDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsNewLine(System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsOverloadableBinaryOperator(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsOverloadableUnaryOperator(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPostfixUnaryExpressionToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPredefinedType(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPrefixUnaryExpressionOperatorToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPreprocessorDirective(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPreprocessorKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPreprocessorPunctuation(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPrimaryFunction(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPunctuation(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPunctuationOrKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsQueryContextualKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsReservedKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsReservedTupleElementName(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsTrivia(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsTypeDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsTypeParameterVarianceKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsTypeSyntax(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsUnaryOperatorDeclarationToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsValidIdentifier(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsWhitespace(System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.TryGetInferredMemberName(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.get_EqualityComparer +T:Microsoft.CodeAnalysis.CSharp.SyntaxKind +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AbstractKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AccessorList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AddAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AddAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AddExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AddKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AddressOfExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AliasKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AliasQualifiedName +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AllowsConstraintClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AllowsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AmpersandAmpersandToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AmpersandEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AmpersandToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AndAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AndKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AndPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AnnotationsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AnonymousMethodExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AnonymousObjectCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AnonymousObjectMemberDeclarator +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArgListExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArgListKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Argument +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArgumentList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArrayCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArrayInitializerExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArrayRankSpecifier +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArrayType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArrowExpressionClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AsExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AscendingKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AscendingOrdering +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AssemblyKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AsteriskEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AsteriskToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AsyncKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Attribute +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AttributeArgument +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AttributeArgumentList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AttributeList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AttributeTargetSpecifier +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AwaitExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AwaitKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BackslashToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BadDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BadToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BarBarToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BarEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BarToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BaseConstructorInitializer +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BaseExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BaseKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BaseList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BitwiseAndExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BitwiseNotExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BitwiseOrExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Block +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BoolKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BracketedArgumentList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BracketedParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BreakKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BreakStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ByKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ByteKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CaretEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CaretToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CaseKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CasePatternSwitchLabel +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CaseSwitchLabel +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CastExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CatchClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CatchDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CatchFilterClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CatchKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CharKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CharacterLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CharacterLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CheckedExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CheckedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CheckedStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ChecksumKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ClassConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ClassDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ClassKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CloseBraceToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CloseBracketToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CloseParenToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CoalesceAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CoalesceExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CollectionExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CollectionInitializerExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ColonColonToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ColonToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CommaToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CompilationUnit +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ComplexElementInitializerExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConditionalAccessExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConditionalExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConflictMarkerTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConstKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConstantPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConstructorConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConstructorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ContinueKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ContinueStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConversionOperatorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConversionOperatorMemberCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CrefBracketedParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CrefParameter +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CrefParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DecimalKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DeclarationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DeclarationPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefaultConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefaultExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefaultKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefaultLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefaultSwitchLabel +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefineDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefineKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DelegateDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DelegateKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DescendingKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DescendingOrdering +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DestructorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DisableKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DisabledTextTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DiscardDesignation +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DiscardPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DivideAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DivideExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DoKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DoStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DocumentationCommentExteriorTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DollarToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DotDotToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DotToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DoubleKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DoubleQuoteToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElementAccessExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElementBindingExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElifDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElifKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElseClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElseDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElseKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EmptyStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EnableKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndIfDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndIfKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndOfDirectiveToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndOfDocumentationCommentToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndOfFileToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndOfLineTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndRegionDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndRegionKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EnumDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EnumKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EnumMemberDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsGreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsValueClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ErrorDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ErrorKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EventDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EventFieldDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EventKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExclamationEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExclamationToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExclusiveOrAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExclusiveOrExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExplicitInterfaceSpecifier +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExplicitKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExpressionColon +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExpressionElement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExpressionStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExternAliasDirective +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExternKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FalseKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FalseLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FieldDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FieldKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FileKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FileScopedNamespaceDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FinallyClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FinallyKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FixedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FixedStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FloatKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ForEachKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ForEachStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ForEachVariableStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ForKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ForStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FromClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FromKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerCallingConvention +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerParameter +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerUnmanagedCallingConvention +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerUnmanagedCallingConventionList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GenericName +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GetAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GetKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GlobalKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GlobalStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GotoCaseStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GotoDefaultStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GotoKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GotoStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanGreaterThanEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanGreaterThanGreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanGreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanOrEqualExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GroupClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GroupKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.HashToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.HiddenKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IdentifierName +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IdentifierToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IfDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IfKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IfStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ImplicitArrayCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ImplicitElementAccess +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ImplicitKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ImplicitObjectCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ImplicitStackAllocArrayCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IncompleteMember +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IndexExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IndexerDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IndexerMemberCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InitAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InitKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IntKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterfaceDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterfaceKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InternalKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedMultiLineRawStringStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedRawStringEndToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedSingleLineRawStringStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringEndToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringText +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringTextToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedVerbatimStringStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Interpolation +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolationAlignmentClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolationFormatClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IntoKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InvocationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IsExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IsPatternExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.JoinClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.JoinIntoClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.JoinKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LabeledStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LeftShiftAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LeftShiftExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanLessThanEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanLessThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanOrEqualExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanSlashToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LetClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LetKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LineDirectivePosition +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LineDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LineKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LineSpanDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.List +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ListPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LoadDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LoadKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LocalDeclarationStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LocalFunctionStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LockKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LockStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LogicalAndExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LogicalNotExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LogicalOrExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LongKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MakeRefExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MakeRefKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ManagedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MemberBindingExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MethodDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MethodKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MinusEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MinusGreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MinusMinusToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MinusToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ModuleKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ModuloAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ModuloExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MultiLineCommentTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MultiLineDocumentationCommentTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MultiLineRawStringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MultiplyAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MultiplyExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NameColon +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NameEquals +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NameMemberCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NameOfKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NamespaceDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NamespaceKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NewKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.None +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NotEqualsExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NotKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NotPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NullKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NullLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NullableDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NullableKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NullableType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NumericLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NumericLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ObjectCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ObjectInitializerExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ObjectKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OmittedArraySizeExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OmittedArraySizeExpressionToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OmittedTypeArgument +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OmittedTypeArgumentToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OnKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OpenBraceToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OpenBracketToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OpenParenToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OperatorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OperatorKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OperatorMemberCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OrAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OrKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OrPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OrderByClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OrderByKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OutKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OverrideKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParamKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Parameter +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParamsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParenthesizedExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParenthesizedLambdaExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParenthesizedPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParenthesizedVariableDesignation +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PartialKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PercentEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PercentToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PlusEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PlusPlusToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PlusToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PointerIndirectionExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PointerMemberAccessExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PointerType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PositionalPatternClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PostDecrementExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PostIncrementExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PragmaChecksumDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PragmaKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PragmaWarningDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PreDecrementExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PreIncrementExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PredefinedType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PreprocessingMessageTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PrimaryConstructorBaseType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PrivateKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PropertyDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PropertyKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PropertyPatternClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ProtectedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PublicKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QualifiedCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QualifiedName +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QueryBody +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QueryContinuation +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QueryExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QuestionQuestionEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QuestionQuestionToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QuestionToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RangeExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RazorContentToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ReadOnlyKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RecordDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RecordKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RecordStructDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RecursivePattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefStructConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefTypeExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefTypeKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefValueExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefValueKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ReferenceDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ReferenceKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RegionDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RegionKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RelationalPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RemoveAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RemoveKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RequiredKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RestoreKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ReturnKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ReturnStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RightShiftAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RightShiftExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SByteKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ScopedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ScopedType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SealedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SelectClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SelectKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SemicolonToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SetAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SetKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ShebangDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ShortKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SimpleAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SimpleBaseType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SimpleLambdaExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SimpleMemberAccessExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SingleLineCommentTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SingleLineDocumentationCommentTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SingleLineRawStringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SingleQuoteToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SingleVariableDesignation +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SizeOfExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SizeOfKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SkippedTokensTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SlashEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SlashGreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SlashToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SlicePattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SpreadElement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StackAllocArrayCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StackAllocKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StaticKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StringKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StringLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StructConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StructDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StructKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Subpattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SubtractAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SubtractExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SuppressNullableWarningExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SwitchExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SwitchExpressionArm +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SwitchKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SwitchSection +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SwitchStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThisConstructorInitializer +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThisExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThisKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThrowExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThrowKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThrowStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TildeToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TrueKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TrueLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TryKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TryStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TupleElement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TupleExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TupleType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeArgumentList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeOfExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeOfKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeParameter +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeParameterConstraintClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypePattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeVarKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UIntKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ULongKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UShortKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnaryMinusExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnaryPlusExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UncheckedExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UncheckedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UncheckedStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UndefDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UndefKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnderscoreToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnknownAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnmanagedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnsafeKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnsafeStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnsignedRightShiftAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnsignedRightShiftExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UsingDirective +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UsingKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UsingStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Utf8MultiLineRawStringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Utf8SingleLineRawStringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Utf8StringLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Utf8StringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VarKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VarPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VariableDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VariableDeclarator +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VirtualKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VoidKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VolatileKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WarningDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WarningKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WarningsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhenClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhenKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhereClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhereKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhileKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhileStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhitespaceTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WithExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WithInitializerExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WithKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCDataEndToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCDataSection +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCDataStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlComment +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCommentEndToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCommentStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCrefAttribute +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlElement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlElementEndTag +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlElementStartTag +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlEmptyElement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlEntityLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlName +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlNameAttribute +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlPrefix +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlProcessingInstruction +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlProcessingInstructionEndToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlProcessingInstructionStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlText +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlTextAttribute +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlTextLiteralNewLineToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlTextLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.YieldBreakStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.YieldKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.YieldReturnStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.value__ +T:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.Dispose +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.ParseLeadingTrivia +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.ParseNextToken +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.ParseTrailingTrivia +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.ResetTo(Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.Result) +T:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.Result +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.Result.get_ContextualKind +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.Result.get_Token +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.SkipForwardTo(System.Int32) +T:Microsoft.CodeAnalysis.CSharp.TypedConstantExtensions +M:Microsoft.CodeAnalysis.CSharp.TypedConstantExtensions.ToCSharpString(Microsoft.CodeAnalysis.TypedConstant) +T:Microsoft.CodeAnalysis.CSharpExtensions +M:Microsoft.CodeAnalysis.CSharpExtensions.Any(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.Any(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.Any``1(Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.Any``1(Microsoft.CodeAnalysis.SyntaxList{``0},Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.ContainsDirective(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IndexOf(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IndexOf(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IndexOf``1(Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IndexOf``1(Microsoft.CodeAnalysis.SyntaxList{``0},Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IsKind(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IsKind(Microsoft.CodeAnalysis.SyntaxNodeOrToken,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IsKind(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IsKind(Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.CSharp.SyntaxKind) \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/Microsoft.CodeAnalysis.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/Microsoft.CodeAnalysis.txt new file mode 100644 index 0000000000000..f8257f23fadf5 --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/Microsoft.CodeAnalysis.txt @@ -0,0 +1,4080 @@ +T:Microsoft.CodeAnalysis.Accessibility +F:Microsoft.CodeAnalysis.Accessibility.Friend +F:Microsoft.CodeAnalysis.Accessibility.Internal +F:Microsoft.CodeAnalysis.Accessibility.NotApplicable +F:Microsoft.CodeAnalysis.Accessibility.Private +F:Microsoft.CodeAnalysis.Accessibility.Protected +F:Microsoft.CodeAnalysis.Accessibility.ProtectedAndFriend +F:Microsoft.CodeAnalysis.Accessibility.ProtectedAndInternal +F:Microsoft.CodeAnalysis.Accessibility.ProtectedOrFriend +F:Microsoft.CodeAnalysis.Accessibility.ProtectedOrInternal +F:Microsoft.CodeAnalysis.Accessibility.Public +F:Microsoft.CodeAnalysis.Accessibility.value__ +T:Microsoft.CodeAnalysis.AdditionalText +M:Microsoft.CodeAnalysis.AdditionalText.#ctor +M:Microsoft.CodeAnalysis.AdditionalText.GetText(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.AdditionalText.get_Path +T:Microsoft.CodeAnalysis.AnalyzerConfig +M:Microsoft.CodeAnalysis.AnalyzerConfig.Parse(Microsoft.CodeAnalysis.Text.SourceText,System.String) +M:Microsoft.CodeAnalysis.AnalyzerConfig.Parse(System.String,System.String) +T:Microsoft.CodeAnalysis.AnalyzerConfigOptionsResult +M:Microsoft.CodeAnalysis.AnalyzerConfigOptionsResult.get_AnalyzerOptions +M:Microsoft.CodeAnalysis.AnalyzerConfigOptionsResult.get_Diagnostics +M:Microsoft.CodeAnalysis.AnalyzerConfigOptionsResult.get_TreeOptions +T:Microsoft.CodeAnalysis.AnalyzerConfigSet +M:Microsoft.CodeAnalysis.AnalyzerConfigSet.Create``1(``0) +M:Microsoft.CodeAnalysis.AnalyzerConfigSet.Create``1(``0,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostic}@) +M:Microsoft.CodeAnalysis.AnalyzerConfigSet.GetOptionsForSourcePath(System.String) +M:Microsoft.CodeAnalysis.AnalyzerConfigSet.get_GlobalConfigOptions +T:Microsoft.CodeAnalysis.AnnotationExtensions +M:Microsoft.CodeAnalysis.AnnotationExtensions.WithAdditionalAnnotations``1(``0,Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.AnnotationExtensions.WithAdditionalAnnotations``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.AnnotationExtensions.WithoutAnnotations``1(``0,Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.AnnotationExtensions.WithoutAnnotations``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.AnnotationExtensions.WithoutAnnotations``1(``0,System.String) +T:Microsoft.CodeAnalysis.AssemblyIdentity +M:Microsoft.CodeAnalysis.AssemblyIdentity.#ctor(System.String,System.Version,System.String,System.Collections.Immutable.ImmutableArray{System.Byte},System.Boolean,System.Boolean,System.Reflection.AssemblyContentType) +M:Microsoft.CodeAnalysis.AssemblyIdentity.Equals(Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.AssemblyIdentity.Equals(System.Object) +M:Microsoft.CodeAnalysis.AssemblyIdentity.FromAssemblyDefinition(System.Reflection.Assembly) +M:Microsoft.CodeAnalysis.AssemblyIdentity.GetDisplayName(System.Boolean) +M:Microsoft.CodeAnalysis.AssemblyIdentity.GetHashCode +M:Microsoft.CodeAnalysis.AssemblyIdentity.ToString +M:Microsoft.CodeAnalysis.AssemblyIdentity.TryParseDisplayName(System.String,Microsoft.CodeAnalysis.AssemblyIdentity@) +M:Microsoft.CodeAnalysis.AssemblyIdentity.TryParseDisplayName(System.String,Microsoft.CodeAnalysis.AssemblyIdentity@,Microsoft.CodeAnalysis.AssemblyIdentityParts@) +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_ContentType +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_CultureName +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_Flags +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_HasPublicKey +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_IsRetargetable +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_IsStrongName +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_Name +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_PublicKey +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_PublicKeyToken +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_Version +M:Microsoft.CodeAnalysis.AssemblyIdentity.op_Equality(Microsoft.CodeAnalysis.AssemblyIdentity,Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.AssemblyIdentity.op_Inequality(Microsoft.CodeAnalysis.AssemblyIdentity,Microsoft.CodeAnalysis.AssemblyIdentity) +T:Microsoft.CodeAnalysis.AssemblyIdentityComparer +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.Compare(Microsoft.CodeAnalysis.AssemblyIdentity,Microsoft.CodeAnalysis.AssemblyIdentity) +T:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ComparisonResult +F:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ComparisonResult.Equivalent +F:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ComparisonResult.EquivalentIgnoringVersion +F:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ComparisonResult.NotEquivalent +F:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ComparisonResult.value__ +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ReferenceMatchesDefinition(Microsoft.CodeAnalysis.AssemblyIdentity,Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ReferenceMatchesDefinition(System.String,Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.get_CultureComparer +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.get_Default +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.get_SimpleNameComparer +T:Microsoft.CodeAnalysis.AssemblyIdentityParts +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.ContentType +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.Culture +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.Name +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.PublicKey +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.PublicKeyOrToken +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.PublicKeyToken +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.Retargetability +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.Unknown +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.Version +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.VersionBuild +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.VersionMajor +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.VersionMinor +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.VersionRevision +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.value__ +T:Microsoft.CodeAnalysis.AssemblyMetadata +M:Microsoft.CodeAnalysis.AssemblyMetadata.CommonCopy +M:Microsoft.CodeAnalysis.AssemblyMetadata.Dispose +M:Microsoft.CodeAnalysis.AssemblyMetadata.GetModules +M:Microsoft.CodeAnalysis.AssemblyMetadata.GetReference(Microsoft.CodeAnalysis.DocumentationProvider,System.Collections.Immutable.ImmutableArray{System.String},System.Boolean,System.String,System.String) +M:Microsoft.CodeAnalysis.AssemblyMetadata.get_Kind +T:Microsoft.CodeAnalysis.AttributeData +M:Microsoft.CodeAnalysis.AttributeData.#ctor +M:Microsoft.CodeAnalysis.AttributeData.get_ApplicationSyntaxReference +M:Microsoft.CodeAnalysis.AttributeData.get_AttributeClass +M:Microsoft.CodeAnalysis.AttributeData.get_AttributeConstructor +M:Microsoft.CodeAnalysis.AttributeData.get_CommonApplicationSyntaxReference +M:Microsoft.CodeAnalysis.AttributeData.get_CommonAttributeClass +M:Microsoft.CodeAnalysis.AttributeData.get_CommonAttributeConstructor +M:Microsoft.CodeAnalysis.AttributeData.get_CommonConstructorArguments +M:Microsoft.CodeAnalysis.AttributeData.get_CommonNamedArguments +M:Microsoft.CodeAnalysis.AttributeData.get_ConstructorArguments +M:Microsoft.CodeAnalysis.AttributeData.get_NamedArguments +T:Microsoft.CodeAnalysis.CandidateReason +F:Microsoft.CodeAnalysis.CandidateReason.Ambiguous +F:Microsoft.CodeAnalysis.CandidateReason.Inaccessible +F:Microsoft.CodeAnalysis.CandidateReason.LateBound +F:Microsoft.CodeAnalysis.CandidateReason.MemberGroup +F:Microsoft.CodeAnalysis.CandidateReason.None +F:Microsoft.CodeAnalysis.CandidateReason.NotATypeOrNamespace +F:Microsoft.CodeAnalysis.CandidateReason.NotAValue +F:Microsoft.CodeAnalysis.CandidateReason.NotAVariable +F:Microsoft.CodeAnalysis.CandidateReason.NotAWithEventsMember +F:Microsoft.CodeAnalysis.CandidateReason.NotAnAttributeType +F:Microsoft.CodeAnalysis.CandidateReason.NotAnEvent +F:Microsoft.CodeAnalysis.CandidateReason.NotCreatable +F:Microsoft.CodeAnalysis.CandidateReason.NotInvocable +F:Microsoft.CodeAnalysis.CandidateReason.NotReferencable +F:Microsoft.CodeAnalysis.CandidateReason.OverloadResolutionFailure +F:Microsoft.CodeAnalysis.CandidateReason.StaticInstanceMismatch +F:Microsoft.CodeAnalysis.CandidateReason.WrongArity +F:Microsoft.CodeAnalysis.CandidateReason.value__ +T:Microsoft.CodeAnalysis.CaseInsensitiveComparison +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.Compare(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.Compare(System.String,System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.EndsWith(System.String,System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.Equals(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.Equals(System.String,System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.GetHashCode(System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.StartsWith(System.String,System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.ToLower(System.Char) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.ToLower(System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.ToLower(System.Text.StringBuilder) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.get_Comparer +T:Microsoft.CodeAnalysis.ChildSyntaxList +M:Microsoft.CodeAnalysis.ChildSyntaxList.Any +T:Microsoft.CodeAnalysis.ChildSyntaxList.Enumerator +M:Microsoft.CodeAnalysis.ChildSyntaxList.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.ChildSyntaxList.Enumerator.Reset +M:Microsoft.CodeAnalysis.ChildSyntaxList.Enumerator.get_Current +M:Microsoft.CodeAnalysis.ChildSyntaxList.Equals(Microsoft.CodeAnalysis.ChildSyntaxList) +M:Microsoft.CodeAnalysis.ChildSyntaxList.Equals(System.Object) +M:Microsoft.CodeAnalysis.ChildSyntaxList.First +M:Microsoft.CodeAnalysis.ChildSyntaxList.GetEnumerator +M:Microsoft.CodeAnalysis.ChildSyntaxList.GetHashCode +M:Microsoft.CodeAnalysis.ChildSyntaxList.Last +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reverse +T:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed +T:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Enumerator +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Enumerator.Reset +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Enumerator.get_Current +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Equals(Microsoft.CodeAnalysis.ChildSyntaxList.Reversed) +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Equals(System.Object) +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.GetEnumerator +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.GetHashCode +M:Microsoft.CodeAnalysis.ChildSyntaxList.get_Count +M:Microsoft.CodeAnalysis.ChildSyntaxList.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.ChildSyntaxList.op_Equality(Microsoft.CodeAnalysis.ChildSyntaxList,Microsoft.CodeAnalysis.ChildSyntaxList) +M:Microsoft.CodeAnalysis.ChildSyntaxList.op_Inequality(Microsoft.CodeAnalysis.ChildSyntaxList,Microsoft.CodeAnalysis.ChildSyntaxList) +T:Microsoft.CodeAnalysis.Compilation +M:Microsoft.CodeAnalysis.Compilation.AddReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.Compilation.AddReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.Compilation.AddSyntaxTrees(Microsoft.CodeAnalysis.SyntaxTree[]) +M:Microsoft.CodeAnalysis.Compilation.AddSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Compilation.AppendDefaultVersionResource(System.IO.Stream) +M:Microsoft.CodeAnalysis.Compilation.CheckTupleElementLocations(System.Int32,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location}) +M:Microsoft.CodeAnalysis.Compilation.CheckTupleElementNames(System.Int32,System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.Compilation.CheckTupleElementNullableAnnotations(System.Int32,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.ClassifyCommonConversion(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.Clone +M:Microsoft.CodeAnalysis.Compilation.CommonAddSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Compilation.CommonBindScriptClass +M:Microsoft.CodeAnalysis.Compilation.CommonClone +M:Microsoft.CodeAnalysis.Compilation.CommonContainsSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateAnonymousTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{System.Boolean},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateArrayTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,System.Int32,Microsoft.CodeAnalysis.NullableAnnotation) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateErrorNamespaceSymbol(Microsoft.CodeAnalysis.INamespaceSymbol,System.String) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateErrorTypeSymbol(Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String,System.Int32) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateFunctionPointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.RefKind,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.RefKind},System.Reflection.Metadata.SignatureCallingConvention,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.INamedTypeSymbol}) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateNativeIntegerTypeSymbol(System.Boolean) +M:Microsoft.CodeAnalysis.Compilation.CommonCreatePointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateTupleTypeSymbol(Microsoft.CodeAnalysis.INamedTypeSymbol,System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateTupleTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.CommonGetAssemblyOrModuleSymbol(Microsoft.CodeAnalysis.MetadataReference) +M:Microsoft.CodeAnalysis.Compilation.CommonGetCompilationNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.Compilation.CommonGetEntryPoint(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.CommonGetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SemanticModelOptions) +M:Microsoft.CodeAnalysis.Compilation.CommonGetTypeByMetadataName(System.String) +M:Microsoft.CodeAnalysis.Compilation.CommonRemoveAllSyntaxTrees +M:Microsoft.CodeAnalysis.Compilation.CommonRemoveSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Compilation.CommonReplaceSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Compilation.CommonWithAssemblyName(System.String) +M:Microsoft.CodeAnalysis.Compilation.CommonWithOptions(Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.Compilation.CommonWithReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.Compilation.CommonWithScriptCompilationInfo(Microsoft.CodeAnalysis.ScriptCompilationInfo) +M:Microsoft.CodeAnalysis.Compilation.ContainsSymbolsWithName(System.Func{System.String,System.Boolean},Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.ContainsSymbolsWithName(System.String,Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.ContainsSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Compilation.CreateAnonymousTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{System.Boolean},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location}) +M:Microsoft.CodeAnalysis.Compilation.CreateAnonymousTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{System.Boolean},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.CreateArrayTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,System.Int32) +M:Microsoft.CodeAnalysis.Compilation.CreateArrayTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,System.Int32,Microsoft.CodeAnalysis.NullableAnnotation) +M:Microsoft.CodeAnalysis.Compilation.CreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CreateDefaultWin32Resources(System.Boolean,System.Boolean,System.IO.Stream,System.IO.Stream) +M:Microsoft.CodeAnalysis.Compilation.CreateErrorNamespaceSymbol(Microsoft.CodeAnalysis.INamespaceSymbol,System.String) +M:Microsoft.CodeAnalysis.Compilation.CreateErrorTypeSymbol(Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String,System.Int32) +M:Microsoft.CodeAnalysis.Compilation.CreateFunctionPointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.RefKind,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.RefKind},System.Reflection.Metadata.SignatureCallingConvention,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.INamedTypeSymbol}) +M:Microsoft.CodeAnalysis.Compilation.CreateNativeIntegerTypeSymbol(System.Boolean) +M:Microsoft.CodeAnalysis.Compilation.CreatePointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CreateTupleTypeSymbol(Microsoft.CodeAnalysis.INamedTypeSymbol,System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location}) +M:Microsoft.CodeAnalysis.Compilation.CreateTupleTypeSymbol(Microsoft.CodeAnalysis.INamedTypeSymbol,System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.CreateTupleTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location}) +M:Microsoft.CodeAnalysis.Compilation.CreateTupleTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.GetAssemblyOrModuleSymbol(Microsoft.CodeAnalysis.MetadataReference) +M:Microsoft.CodeAnalysis.Compilation.GetCompilationNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.Compilation.GetDeclarationDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetEntryPoint(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetMetadataReference(Microsoft.CodeAnalysis.IAssemblySymbol) +M:Microsoft.CodeAnalysis.Compilation.GetMethodBodyDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetParseDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetRequiredLanguageVersion(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Compilation.GetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SemanticModelOptions) +M:Microsoft.CodeAnalysis.Compilation.GetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,System.Boolean) +M:Microsoft.CodeAnalysis.Compilation.GetSpecialType(Microsoft.CodeAnalysis.SpecialType) +M:Microsoft.CodeAnalysis.Compilation.GetSymbolsWithName(System.Func{System.String,System.Boolean},Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetSymbolsWithName(System.String,Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetTypeByMetadataName(System.String) +M:Microsoft.CodeAnalysis.Compilation.GetTypesByMetadataName(System.String) +M:Microsoft.CodeAnalysis.Compilation.GetUnreferencedAssemblyIdentities(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Compilation.GetUsedAssemblyReferences(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.HasImplicitConversion(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.IsSymbolAccessibleWithin(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.RemoveAllReferences +M:Microsoft.CodeAnalysis.Compilation.RemoveAllSyntaxTrees +M:Microsoft.CodeAnalysis.Compilation.RemoveReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.Compilation.RemoveReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.Compilation.RemoveSyntaxTrees(Microsoft.CodeAnalysis.SyntaxTree[]) +M:Microsoft.CodeAnalysis.Compilation.RemoveSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Compilation.ReplaceReference(Microsoft.CodeAnalysis.MetadataReference,Microsoft.CodeAnalysis.MetadataReference) +M:Microsoft.CodeAnalysis.Compilation.ReplaceSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Compilation.SupportsRuntimeCapability(Microsoft.CodeAnalysis.RuntimeCapability) +M:Microsoft.CodeAnalysis.Compilation.SyntaxTreeCommonFeatures(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Compilation.ToMetadataReference(System.Collections.Immutable.ImmutableArray{System.String},System.Boolean) +M:Microsoft.CodeAnalysis.Compilation.WithAssemblyName(System.String) +M:Microsoft.CodeAnalysis.Compilation.WithOptions(Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.Compilation.WithReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.Compilation.WithReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.Compilation.WithScriptCompilationInfo(Microsoft.CodeAnalysis.ScriptCompilationInfo) +F:Microsoft.CodeAnalysis.Compilation._features +M:Microsoft.CodeAnalysis.Compilation.get_Assembly +M:Microsoft.CodeAnalysis.Compilation.get_AssemblyName +M:Microsoft.CodeAnalysis.Compilation.get_CommonAssembly +M:Microsoft.CodeAnalysis.Compilation.get_CommonDynamicType +M:Microsoft.CodeAnalysis.Compilation.get_CommonGlobalNamespace +M:Microsoft.CodeAnalysis.Compilation.get_CommonObjectType +M:Microsoft.CodeAnalysis.Compilation.get_CommonOptions +M:Microsoft.CodeAnalysis.Compilation.get_CommonScriptClass +M:Microsoft.CodeAnalysis.Compilation.get_CommonScriptGlobalsType +M:Microsoft.CodeAnalysis.Compilation.get_CommonSourceModule +M:Microsoft.CodeAnalysis.Compilation.get_CommonSyntaxTrees +M:Microsoft.CodeAnalysis.Compilation.get_DirectiveReferences +M:Microsoft.CodeAnalysis.Compilation.get_DynamicType +M:Microsoft.CodeAnalysis.Compilation.get_ExternalReferences +M:Microsoft.CodeAnalysis.Compilation.get_GlobalNamespace +M:Microsoft.CodeAnalysis.Compilation.get_IsCaseSensitive +M:Microsoft.CodeAnalysis.Compilation.get_Language +M:Microsoft.CodeAnalysis.Compilation.get_ObjectType +M:Microsoft.CodeAnalysis.Compilation.get_Options +M:Microsoft.CodeAnalysis.Compilation.get_ReferencedAssemblyNames +M:Microsoft.CodeAnalysis.Compilation.get_References +M:Microsoft.CodeAnalysis.Compilation.get_ScriptClass +M:Microsoft.CodeAnalysis.Compilation.get_ScriptCompilationInfo +M:Microsoft.CodeAnalysis.Compilation.get_SourceModule +M:Microsoft.CodeAnalysis.Compilation.get_SyntaxTrees +T:Microsoft.CodeAnalysis.CompilationOptions +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithAssemblyIdentityComparer(Microsoft.CodeAnalysis.AssemblyIdentityComparer) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithCheckOverflow(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithConcurrentBuild(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithDelaySign(System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithDeterministic(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithFeatures(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithGeneralDiagnosticOption(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithMainTypeName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithMetadataImportOptions(Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithMetadataReferenceResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithModuleName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithOptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithOutputKind(Microsoft.CodeAnalysis.OutputKind) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithPlatform(Microsoft.CodeAnalysis.Platform) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithPublicSign(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithReportSuppressedDiagnostics(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithScriptClassName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithSourceReferenceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithSpecificDiagnosticOptions(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}}) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithSpecificDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithStrongNameProvider(Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithSyntaxTreeOptionsProvider(Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithXmlReferenceResolver(Microsoft.CodeAnalysis.XmlReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.ComputeHashCode +M:Microsoft.CodeAnalysis.CompilationOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.CompilationOptions.EqualsHelper(Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.GetHashCode +M:Microsoft.CodeAnalysis.CompilationOptions.GetHashCodeHelper +M:Microsoft.CodeAnalysis.CompilationOptions.WithAssemblyIdentityComparer(Microsoft.CodeAnalysis.AssemblyIdentityComparer) +M:Microsoft.CodeAnalysis.CompilationOptions.WithConcurrentBuild(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.WithDelaySign(System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CompilationOptions.WithDeterministic(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.WithGeneralDiagnosticOption(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.CompilationOptions.WithMainTypeName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.WithMetadataImportOptions(Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.WithMetadataReferenceResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.WithModuleName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.WithOptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel) +M:Microsoft.CodeAnalysis.CompilationOptions.WithOutputKind(Microsoft.CodeAnalysis.OutputKind) +M:Microsoft.CodeAnalysis.CompilationOptions.WithOverflowChecks(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.WithPlatform(Microsoft.CodeAnalysis.Platform) +M:Microsoft.CodeAnalysis.CompilationOptions.WithPublicSign(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.WithReportSuppressedDiagnostics(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.WithScriptClassName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.WithSourceReferenceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.WithSpecificDiagnosticOptions(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}}) +M:Microsoft.CodeAnalysis.CompilationOptions.WithSpecificDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CompilationOptions.WithStrongNameProvider(Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.WithSyntaxTreeOptionsProvider(Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.WithXmlReferenceResolver(Microsoft.CodeAnalysis.XmlReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.get_AssemblyIdentityComparer +M:Microsoft.CodeAnalysis.CompilationOptions.get_CheckOverflow +M:Microsoft.CodeAnalysis.CompilationOptions.get_ConcurrentBuild +M:Microsoft.CodeAnalysis.CompilationOptions.get_CryptoKeyContainer +M:Microsoft.CodeAnalysis.CompilationOptions.get_CryptoKeyFile +M:Microsoft.CodeAnalysis.CompilationOptions.get_CryptoPublicKey +M:Microsoft.CodeAnalysis.CompilationOptions.get_DelaySign +M:Microsoft.CodeAnalysis.CompilationOptions.get_Deterministic +M:Microsoft.CodeAnalysis.CompilationOptions.get_Errors +M:Microsoft.CodeAnalysis.CompilationOptions.get_Features +M:Microsoft.CodeAnalysis.CompilationOptions.get_GeneralDiagnosticOption +M:Microsoft.CodeAnalysis.CompilationOptions.get_Language +M:Microsoft.CodeAnalysis.CompilationOptions.get_MainTypeName +M:Microsoft.CodeAnalysis.CompilationOptions.get_MetadataImportOptions +M:Microsoft.CodeAnalysis.CompilationOptions.get_MetadataReferenceResolver +M:Microsoft.CodeAnalysis.CompilationOptions.get_ModuleName +M:Microsoft.CodeAnalysis.CompilationOptions.get_NullableContextOptions +M:Microsoft.CodeAnalysis.CompilationOptions.get_OptimizationLevel +M:Microsoft.CodeAnalysis.CompilationOptions.get_OutputKind +M:Microsoft.CodeAnalysis.CompilationOptions.get_Platform +M:Microsoft.CodeAnalysis.CompilationOptions.get_PublicSign +M:Microsoft.CodeAnalysis.CompilationOptions.get_ReportSuppressedDiagnostics +M:Microsoft.CodeAnalysis.CompilationOptions.get_ScriptClassName +M:Microsoft.CodeAnalysis.CompilationOptions.get_SourceReferenceResolver +M:Microsoft.CodeAnalysis.CompilationOptions.get_SpecificDiagnosticOptions +M:Microsoft.CodeAnalysis.CompilationOptions.get_StrongNameProvider +M:Microsoft.CodeAnalysis.CompilationOptions.get_SyntaxTreeOptionsProvider +M:Microsoft.CodeAnalysis.CompilationOptions.get_WarningLevel +M:Microsoft.CodeAnalysis.CompilationOptions.get_XmlReferenceResolver +M:Microsoft.CodeAnalysis.CompilationOptions.op_Equality(Microsoft.CodeAnalysis.CompilationOptions,Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.op_Inequality(Microsoft.CodeAnalysis.CompilationOptions,Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.set_AssemblyIdentityComparer(Microsoft.CodeAnalysis.AssemblyIdentityComparer) +M:Microsoft.CodeAnalysis.CompilationOptions.set_CheckOverflow(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.set_ConcurrentBuild(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.set_CryptoKeyContainer(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.set_CryptoKeyFile(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.set_CryptoPublicKey(System.Collections.Immutable.ImmutableArray{System.Byte}) +M:Microsoft.CodeAnalysis.CompilationOptions.set_DelaySign(System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CompilationOptions.set_Deterministic(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.set_Features(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CompilationOptions.set_GeneralDiagnosticOption(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.CompilationOptions.set_MainTypeName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.set_MetadataImportOptions(Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.set_MetadataReferenceResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.set_ModuleName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.set_NullableContextOptions(Microsoft.CodeAnalysis.NullableContextOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.set_OptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel) +M:Microsoft.CodeAnalysis.CompilationOptions.set_OutputKind(Microsoft.CodeAnalysis.OutputKind) +M:Microsoft.CodeAnalysis.CompilationOptions.set_Platform(Microsoft.CodeAnalysis.Platform) +M:Microsoft.CodeAnalysis.CompilationOptions.set_PublicSign(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.set_ReportSuppressedDiagnostics(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.set_ScriptClassName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.set_SourceReferenceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.set_SpecificDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CompilationOptions.set_StrongNameProvider(Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.set_SyntaxTreeOptionsProvider(Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.set_WarningLevel(System.Int32) +M:Microsoft.CodeAnalysis.CompilationOptions.set_XmlReferenceResolver(Microsoft.CodeAnalysis.XmlReferenceResolver) +T:Microsoft.CodeAnalysis.CompilationReference +M:Microsoft.CodeAnalysis.CompilationReference.Equals(Microsoft.CodeAnalysis.CompilationReference) +M:Microsoft.CodeAnalysis.CompilationReference.Equals(System.Object) +M:Microsoft.CodeAnalysis.CompilationReference.GetHashCode +M:Microsoft.CodeAnalysis.CompilationReference.WithAliases(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.CompilationReference.WithAliases(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CompilationReference.WithEmbedInteropTypes(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationReference.WithProperties(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.CompilationReference.get_Compilation +M:Microsoft.CodeAnalysis.CompilationReference.get_Display +T:Microsoft.CodeAnalysis.ControlFlowAnalysis +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.#ctor +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_EndPointIsReachable +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_EntryPoints +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_ExitPoints +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_ReturnStatements +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_StartPointIsReachable +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_Succeeded +T:Microsoft.CodeAnalysis.CustomModifier +M:Microsoft.CodeAnalysis.CustomModifier.#ctor +M:Microsoft.CodeAnalysis.CustomModifier.get_IsOptional +M:Microsoft.CodeAnalysis.CustomModifier.get_Modifier +T:Microsoft.CodeAnalysis.DataFlowAnalysis +M:Microsoft.CodeAnalysis.DataFlowAnalysis.#ctor +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_AlwaysAssigned +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_Captured +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_CapturedInside +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_CapturedOutside +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_DataFlowsIn +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_DataFlowsOut +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_DefinitelyAssignedOnEntry +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_DefinitelyAssignedOnExit +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_ReadInside +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_ReadOutside +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_Succeeded +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_UnsafeAddressTaken +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_UsedLocalFunctions +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_VariablesDeclared +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_WrittenInside +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_WrittenOutside +T:Microsoft.CodeAnalysis.DesktopAssemblyIdentityComparer +M:Microsoft.CodeAnalysis.DesktopAssemblyIdentityComparer.LoadFromXml(System.IO.Stream) +M:Microsoft.CodeAnalysis.DesktopAssemblyIdentityComparer.get_Default +T:Microsoft.CodeAnalysis.Diagnostic +M:Microsoft.CodeAnalysis.Diagnostic.#ctor +M:Microsoft.CodeAnalysis.Diagnostic.Create(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableDictionary{System.String,System.String},System.Object[]) +M:Microsoft.CodeAnalysis.Diagnostic.Create(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableDictionary{System.String,System.String},System.Object[]) +M:Microsoft.CodeAnalysis.Diagnostic.Create(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Location},System.Object[]) +M:Microsoft.CodeAnalysis.Diagnostic.Create(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Immutable.ImmutableDictionary{System.String,System.String},System.Object[]) +M:Microsoft.CodeAnalysis.Diagnostic.Create(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Object[]) +M:Microsoft.CodeAnalysis.Diagnostic.Create(System.String,System.String,Microsoft.CodeAnalysis.LocalizableString,Microsoft.CodeAnalysis.DiagnosticSeverity,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Boolean,System.Int32,Microsoft.CodeAnalysis.LocalizableString,Microsoft.CodeAnalysis.LocalizableString,System.String,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Location},System.Collections.Generic.IEnumerable{System.String},System.Collections.Immutable.ImmutableDictionary{System.String,System.String}) +M:Microsoft.CodeAnalysis.Diagnostic.Create(System.String,System.String,Microsoft.CodeAnalysis.LocalizableString,Microsoft.CodeAnalysis.DiagnosticSeverity,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Boolean,System.Int32,System.Boolean,Microsoft.CodeAnalysis.LocalizableString,Microsoft.CodeAnalysis.LocalizableString,System.String,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Location},System.Collections.Generic.IEnumerable{System.String},System.Collections.Immutable.ImmutableDictionary{System.String,System.String}) +M:Microsoft.CodeAnalysis.Diagnostic.Equals(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostic.Equals(System.Object) +M:Microsoft.CodeAnalysis.Diagnostic.GetHashCode +M:Microsoft.CodeAnalysis.Diagnostic.GetMessage(System.IFormatProvider) +M:Microsoft.CodeAnalysis.Diagnostic.GetSuppressionInfo(Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.Diagnostic.ToString +M:Microsoft.CodeAnalysis.Diagnostic.get_AdditionalLocations +M:Microsoft.CodeAnalysis.Diagnostic.get_DefaultSeverity +M:Microsoft.CodeAnalysis.Diagnostic.get_Descriptor +M:Microsoft.CodeAnalysis.Diagnostic.get_Id +M:Microsoft.CodeAnalysis.Diagnostic.get_IsSuppressed +M:Microsoft.CodeAnalysis.Diagnostic.get_IsWarningAsError +M:Microsoft.CodeAnalysis.Diagnostic.get_Location +M:Microsoft.CodeAnalysis.Diagnostic.get_Properties +M:Microsoft.CodeAnalysis.Diagnostic.get_Severity +M:Microsoft.CodeAnalysis.Diagnostic.get_WarningLevel +T:Microsoft.CodeAnalysis.DiagnosticDescriptor +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.#ctor(System.String,Microsoft.CodeAnalysis.LocalizableString,Microsoft.CodeAnalysis.LocalizableString,System.String,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Boolean,Microsoft.CodeAnalysis.LocalizableString,System.String,System.String[]) +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.#ctor(System.String,System.String,System.String,System.String,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Boolean,System.String,System.String,System.String[]) +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.Equals(Microsoft.CodeAnalysis.DiagnosticDescriptor) +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.Equals(System.Object) +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.GetEffectiveSeverity(Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.GetHashCode +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_Category +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_CustomTags +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_DefaultSeverity +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_Description +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_HelpLinkUri +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_Id +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_IsEnabledByDefault +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_MessageFormat +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_Title +T:Microsoft.CodeAnalysis.DiagnosticFormatter +M:Microsoft.CodeAnalysis.DiagnosticFormatter.#ctor +M:Microsoft.CodeAnalysis.DiagnosticFormatter.Format(Microsoft.CodeAnalysis.Diagnostic,System.IFormatProvider) +T:Microsoft.CodeAnalysis.DiagnosticSeverity +F:Microsoft.CodeAnalysis.DiagnosticSeverity.Error +F:Microsoft.CodeAnalysis.DiagnosticSeverity.Hidden +F:Microsoft.CodeAnalysis.DiagnosticSeverity.Info +F:Microsoft.CodeAnalysis.DiagnosticSeverity.Warning +F:Microsoft.CodeAnalysis.DiagnosticSeverity.value__ +T:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.get_AdditionalFile +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.get_Options +T:Microsoft.CodeAnalysis.Diagnostics.AdditionalTextValueProvider`1 +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalTextValueProvider`1.#ctor(System.Func{Microsoft.CodeAnalysis.AdditionalText,`0},System.Collections.Generic.IEqualityComparer{Microsoft.CodeAnalysis.AdditionalText}) +T:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.ConfigureGeneratedCodeAnalysis(Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.EnableConcurrentExecution +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterAdditionalFileAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterCodeBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterCodeBlockStartAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext{``0}}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterCompilationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterCompilationStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},Microsoft.CodeAnalysis.OperationKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.OperationKind}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterOperationBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterOperationBlockStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSemanticModelAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSymbolAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext},Microsoft.CodeAnalysis.SymbolKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSymbolAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.SymbolKind}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSymbolStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext},Microsoft.CodeAnalysis.SymbolKind) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},System.Collections.Immutable.ImmutableArray{``0}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},``0[]) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSyntaxTreeAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.AdditionalText,Microsoft.CodeAnalysis.Diagnostics.AdditionalTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Diagnostics.SourceTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.get_MinimumReportedSeverity +T:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.GetAllDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.GetAllDiagnostics(Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_AdditionalFileDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_AnalyzerTelemetryInfo +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_Analyzers +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_CompilationDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_SemanticDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_SyntaxDiagnostics +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions.TryGetValue(System.String,System.String@) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions.get_KeyComparer +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions.get_Keys +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider.GetOptions(Microsoft.CodeAnalysis.AdditionalText) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider.GetOptions(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider.get_GlobalOptions +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.Equals(Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.Equals(Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.Equals(System.Object) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetAnalyzers(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetAnalyzersForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetAssembly +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetGenerators +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetGenerators(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetGeneratorsForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetHashCode +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.add_AnalyzerLoadFailed(System.EventHandler{Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.get_AssemblyLoader +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.get_Display +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.get_FullPath +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.get_Id +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.remove_AnalyzerLoadFailed(System.EventHandler{Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs}) +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.GetAnalyzers(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.GetAnalyzersForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.get_Display +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.get_FullPath +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.get_Id +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.#ctor(Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode,System.String,System.Exception,System.String) +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.NoAnalyzers +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.None +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.ReferencesFramework +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.ReferencesNewerCompiler +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.UnableToCreateAnalyzer +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.UnableToLoadAnalyzer +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.value__ +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.get_ErrorCode +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.get_Exception +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.get_Message +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.get_ReferencedCompilerVersion +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.get_TypeName +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.#ctor(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.#ctor(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText},Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.GetHashCode +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.WithAdditionalFiles(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.get_AdditionalFiles +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.get_AnalyzerConfigOptionsProvider +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.GetAnalyzers(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.GetAnalyzersForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.GetGenerators +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.GetGenerators(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.GetGeneratorsForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.get_Display +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.get_FullPath +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.get_Id +T:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.#ctor(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_CodeBlock +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_OwningSymbol +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_SemanticModel +T:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1 +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.#ctor(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.RegisterCodeBlockEndAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.RegisterSyntaxNodeAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},System.Collections.Immutable.ImmutableArray{`0}) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.RegisterSyntaxNodeAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},`0[]) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_CodeBlock +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_OwningSymbol +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_SemanticModel +T:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.#ctor(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.AdditionalText,Microsoft.CodeAnalysis.Diagnostics.AdditionalTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Diagnostics.SourceTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.get_Options +T:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.#ctor(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterAdditionalFileAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterCodeBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterCodeBlockStartAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext{``0}}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterCompilationEndAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},Microsoft.CodeAnalysis.OperationKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.OperationKind}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterOperationBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterOperationBlockStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSemanticModelAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSymbolAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext},Microsoft.CodeAnalysis.SymbolKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSymbolAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.SymbolKind}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSymbolStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext},Microsoft.CodeAnalysis.SymbolKind) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},System.Collections.Immutable.ImmutableArray{``0}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},``0[]) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSyntaxTreeAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.AdditionalText,Microsoft.CodeAnalysis.Diagnostics.AdditionalTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Diagnostics.SourceTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.get_Options +T:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.#ctor(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.#ctor(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.#ctor(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.ClearAnalyzerState(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAllDiagnosticsAsync +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAllDiagnosticsAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.AdditionalText,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.AdditionalText,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.AdditionalText,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.AdditionalText,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SemanticModel,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SemanticModel,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerCompilationDiagnosticsAsync(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerCompilationDiagnosticsAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerDiagnosticsAsync +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerDiagnosticsAsync(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerDiagnosticsAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSemanticDiagnosticsAsync(Microsoft.CodeAnalysis.SemanticModel,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSemanticDiagnosticsAsync(Microsoft.CodeAnalysis.SemanticModel,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSyntaxDiagnosticsAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSyntaxDiagnosticsAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSyntaxDiagnosticsAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSyntaxDiagnosticsAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerTelemetryInfoAsync(Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetEffectiveDiagnostics(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Diagnostic},Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetEffectiveDiagnostics(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostic},Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.IsDiagnosticAnalyzerSuppressed(Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,Microsoft.CodeAnalysis.CompilationOptions,System.Action{System.Exception,Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,Microsoft.CodeAnalysis.Diagnostic}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.get_AnalysisOptions +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.get_Analyzers +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.get_Compilation +T:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.#ctor(Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{System.Exception,Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,Microsoft.CodeAnalysis.Diagnostic},System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.#ctor(Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{System.Exception,Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,Microsoft.CodeAnalysis.Diagnostic},System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.#ctor(Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{System.Exception,Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,Microsoft.CodeAnalysis.Diagnostic},System.Boolean,System.Boolean,System.Boolean,System.Func{System.Exception,System.Boolean}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_AnalyzerExceptionFilter +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_ConcurrentAnalysis +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_LogAnalyzerExecutionTime +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_OnAnalyzerException +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_ReportSuppressedDiagnostics +T:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.Equals(System.Object) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.GetHashCode +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.Initialize(Microsoft.CodeAnalysis.Diagnostics.AnalysisContext) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.ToString +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.get_SupportedDiagnostics +T:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerAttribute +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerAttribute.#ctor(System.String,System.String[]) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerAttribute.get_Languages +T:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerExtensions +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerExtensions.WithAnalyzers(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerExtensions.WithAnalyzers(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerExtensions.WithAnalyzers(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions) +T:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor.Initialize(Microsoft.CodeAnalysis.Diagnostics.AnalysisContext) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor.ReportSuppressions(Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor.get_SupportedDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor.get_SupportedSuppressions +T:Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags +F:Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags.Analyze +F:Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags.None +F:Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags.ReportDiagnostics +F:Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags.value__ +T:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.#ctor(Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.GetControlFlowGraph +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_ContainingSymbol +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_Operation +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_Options +T:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.#ctor(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.IOperation},Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.GetControlFlowGraph(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_OperationBlocks +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_OwningSymbol +T:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.#ctor(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.IOperation},Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.GetControlFlowGraph(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},Microsoft.CodeAnalysis.OperationKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.OperationKind}) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.RegisterOperationBlockEndAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_OperationBlocks +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_OwningSymbol +T:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.#ctor(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_SemanticModel +T:Microsoft.CodeAnalysis.Diagnostics.SourceTextValueProvider`1 +M:Microsoft.CodeAnalysis.Diagnostics.SourceTextValueProvider`1.#ctor(System.Func{Microsoft.CodeAnalysis.Text.SourceText,`0},System.Collections.Generic.IEqualityComparer{Microsoft.CodeAnalysis.Text.SourceText}) +T:Microsoft.CodeAnalysis.Diagnostics.Suppression +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.Create(Microsoft.CodeAnalysis.SuppressionDescriptor,Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.Equals(Microsoft.CodeAnalysis.Diagnostics.Suppression) +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.Equals(System.Object) +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.GetHashCode +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.get_Descriptor +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.get_SuppressedDiagnostic +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.op_Equality(Microsoft.CodeAnalysis.Diagnostics.Suppression,Microsoft.CodeAnalysis.Diagnostics.Suppression) +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.op_Inequality(Microsoft.CodeAnalysis.Diagnostics.Suppression,Microsoft.CodeAnalysis.Diagnostics.Suppression) +T:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.GetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.ReportSuppression(Microsoft.CodeAnalysis.Diagnostics.Suppression) +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.get_ReportedDiagnostics +T:Microsoft.CodeAnalysis.Diagnostics.SuppressionInfo +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionInfo.get_Attribute +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionInfo.get_Id +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionInfo.get_ProgrammaticSuppressions +T:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.#ctor(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_Symbol +T:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.#ctor(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterCodeBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterCodeBlockStartAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext{``0}}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},Microsoft.CodeAnalysis.OperationKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.OperationKind}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterOperationBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterOperationBlockStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterSymbolEndAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},System.Collections.Immutable.ImmutableArray{``0}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},``0[]) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_Symbol +T:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.#ctor(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.#ctor(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_ContainingSymbol +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_Node +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_SemanticModel +T:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.#ctor(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.get_Tree +T:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeValueProvider`1 +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeValueProvider`1.#ctor(System.Func{Microsoft.CodeAnalysis.SyntaxTree,`0},System.Collections.Generic.IEqualityComparer{Microsoft.CodeAnalysis.SyntaxTree}) +T:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_AdditionalFileActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CodeBlockActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CodeBlockEndActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CodeBlockStartActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CompilationActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CompilationEndActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CompilationStartActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_Concurrent +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_ExecutionTime +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_OperationActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_OperationBlockActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_OperationBlockEndActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_OperationBlockStartActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SemanticModelActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SuppressionActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SymbolActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SymbolEndActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SymbolStartActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SyntaxNodeActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SyntaxTreeActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_AdditionalFileActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CodeBlockActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CodeBlockEndActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CodeBlockStartActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CompilationActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CompilationEndActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CompilationStartActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_Concurrent(System.Boolean) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_ExecutionTime(System.TimeSpan) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_OperationActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_OperationBlockActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_OperationBlockEndActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_OperationBlockStartActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SemanticModelActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SuppressionActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SymbolActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SymbolEndActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SymbolStartActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SyntaxNodeActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SyntaxTreeActionsCount(System.Int32) +T:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.#ctor(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.GetAnalyzers(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.GetAnalyzersForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.get_Display +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.get_FullPath +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.get_Id +T:Microsoft.CodeAnalysis.DllImportData +M:Microsoft.CodeAnalysis.DllImportData.get_BestFitMapping +M:Microsoft.CodeAnalysis.DllImportData.get_CallingConvention +M:Microsoft.CodeAnalysis.DllImportData.get_CharacterSet +M:Microsoft.CodeAnalysis.DllImportData.get_EntryPointName +M:Microsoft.CodeAnalysis.DllImportData.get_ExactSpelling +M:Microsoft.CodeAnalysis.DllImportData.get_ModuleName +M:Microsoft.CodeAnalysis.DllImportData.get_SetLastError +M:Microsoft.CodeAnalysis.DllImportData.get_ThrowOnUnmappableCharacter +T:Microsoft.CodeAnalysis.DocumentationCommentId +M:Microsoft.CodeAnalysis.DocumentationCommentId.CreateDeclarationId(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.DocumentationCommentId.CreateReferenceId(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.DocumentationCommentId.GetFirstSymbolForDeclarationId(System.String,Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.DocumentationCommentId.GetFirstSymbolForReferenceId(System.String,Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.DocumentationCommentId.GetSymbolsForDeclarationId(System.String,Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.DocumentationCommentId.GetSymbolsForReferenceId(System.String,Microsoft.CodeAnalysis.Compilation) +T:Microsoft.CodeAnalysis.DocumentationMode +F:Microsoft.CodeAnalysis.DocumentationMode.Diagnose +F:Microsoft.CodeAnalysis.DocumentationMode.None +F:Microsoft.CodeAnalysis.DocumentationMode.Parse +F:Microsoft.CodeAnalysis.DocumentationMode.value__ +T:Microsoft.CodeAnalysis.DocumentationProvider +M:Microsoft.CodeAnalysis.DocumentationProvider.#ctor +M:Microsoft.CodeAnalysis.DocumentationProvider.Equals(System.Object) +M:Microsoft.CodeAnalysis.DocumentationProvider.GetDocumentationForSymbol(System.String,System.Globalization.CultureInfo,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.DocumentationProvider.GetHashCode +M:Microsoft.CodeAnalysis.DocumentationProvider.get_Default +T:Microsoft.CodeAnalysis.EmbeddedText +M:Microsoft.CodeAnalysis.EmbeddedText.FromBytes(System.String,System.ArraySegment{System.Byte},Microsoft.CodeAnalysis.Text.SourceHashAlgorithm) +M:Microsoft.CodeAnalysis.EmbeddedText.FromSource(System.String,Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.EmbeddedText.FromStream(System.String,System.IO.Stream,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm) +M:Microsoft.CodeAnalysis.EmbeddedText.get_Checksum +M:Microsoft.CodeAnalysis.EmbeddedText.get_ChecksumAlgorithm +M:Microsoft.CodeAnalysis.EmbeddedText.get_FilePath +T:Microsoft.CodeAnalysis.ErrorLogOptions +M:Microsoft.CodeAnalysis.ErrorLogOptions.#ctor(System.String,Microsoft.CodeAnalysis.SarifVersion) +M:Microsoft.CodeAnalysis.ErrorLogOptions.get_Path +M:Microsoft.CodeAnalysis.ErrorLogOptions.get_SarifVersion +T:Microsoft.CodeAnalysis.FileLinePositionSpan +M:Microsoft.CodeAnalysis.FileLinePositionSpan.#ctor(System.String,Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.#ctor(System.String,Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.Equals(Microsoft.CodeAnalysis.FileLinePositionSpan) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.Equals(System.Object) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.GetHashCode +M:Microsoft.CodeAnalysis.FileLinePositionSpan.ToString +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_EndLinePosition +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_HasMappedPath +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_IsValid +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_Path +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_Span +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_StartLinePosition +M:Microsoft.CodeAnalysis.FileLinePositionSpan.op_Equality(Microsoft.CodeAnalysis.FileLinePositionSpan,Microsoft.CodeAnalysis.FileLinePositionSpan) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.op_Inequality(Microsoft.CodeAnalysis.FileLinePositionSpan,Microsoft.CodeAnalysis.FileLinePositionSpan) +T:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_BranchValue +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_ConditionKind +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_ConditionalSuccessor +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_EnclosingRegion +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_FallThroughSuccessor +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_IsReachable +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_Kind +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_Operations +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_Ordinal +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_Predecessors +T:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlockKind +F:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlockKind.Block +F:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlockKind.Entry +F:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlockKind.Exit +F:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlockKind.value__ +T:Microsoft.CodeAnalysis.FlowAnalysis.CaptureId +M:Microsoft.CodeAnalysis.FlowAnalysis.CaptureId.Equals(Microsoft.CodeAnalysis.FlowAnalysis.CaptureId) +M:Microsoft.CodeAnalysis.FlowAnalysis.CaptureId.Equals(System.Object) +M:Microsoft.CodeAnalysis.FlowAnalysis.CaptureId.GetHashCode +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_Destination +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_EnteringRegions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_FinallyRegions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_IsConditionalSuccessor +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_LeavingRegions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_Semantics +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_Source +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.Error +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.None +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.ProgramTermination +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.Regular +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.Rethrow +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.Return +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.StructuredExceptionHandling +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.Throw +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.value__ +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowConditionKind +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowConditionKind.None +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowConditionKind.WhenFalse +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowConditionKind.WhenTrue +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowConditionKind.value__ +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IAttributeOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IBlockOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IFieldInitializerOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IMethodBodyOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IParameterInitializerOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IPropertyInitializerOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SemanticModel,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.GetAnonymousFunctionControlFlowGraph(Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.GetLocalFunctionControlFlowGraph(Microsoft.CodeAnalysis.IMethodSymbol,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.get_Blocks +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.get_LocalFunctions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.get_OriginalOperation +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.get_Parent +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.get_Root +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraphExtensions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraphExtensions.GetAnonymousFunctionControlFlowGraphInScope(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph,Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraphExtensions.GetLocalFunctionControlFlowGraphInScope(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph,Microsoft.CodeAnalysis.IMethodSymbol,System.Threading.CancellationToken) +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_CaptureIds +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_EnclosingRegion +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_ExceptionType +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_FirstBlockOrdinal +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_Kind +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_LastBlockOrdinal +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_LocalFunctions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_Locals +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_NestedRegions +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.Catch +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.ErroneousBody +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.Filter +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.FilterAndHandler +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.Finally +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.LocalLifetime +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.Root +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.StaticLocalInitializer +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.Try +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.TryAndCatch +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.TryAndFinally +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.value__ +T:Microsoft.CodeAnalysis.FlowAnalysis.ICaughtExceptionOperation +T:Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation +M:Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation.get_Symbol +T:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation +M:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation.get_Id +M:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation.get_Value +T:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation +M:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation.get_Id +M:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation.get_IsInitialization +T:Microsoft.CodeAnalysis.FlowAnalysis.IIsNullOperation +M:Microsoft.CodeAnalysis.FlowAnalysis.IIsNullOperation.get_Operand +T:Microsoft.CodeAnalysis.FlowAnalysis.IStaticLocalInitializationSemaphoreOperation +M:Microsoft.CodeAnalysis.FlowAnalysis.IStaticLocalInitializationSemaphoreOperation.get_Local +T:Microsoft.CodeAnalysis.GeneratedKind +F:Microsoft.CodeAnalysis.GeneratedKind.MarkedGenerated +F:Microsoft.CodeAnalysis.GeneratedKind.NotGenerated +F:Microsoft.CodeAnalysis.GeneratedKind.Unknown +F:Microsoft.CodeAnalysis.GeneratedKind.value__ +T:Microsoft.CodeAnalysis.GeneratedSourceResult +M:Microsoft.CodeAnalysis.GeneratedSourceResult.get_HintName +M:Microsoft.CodeAnalysis.GeneratedSourceResult.get_SourceText +M:Microsoft.CodeAnalysis.GeneratedSourceResult.get_SyntaxTree +T:Microsoft.CodeAnalysis.GeneratorAttribute +M:Microsoft.CodeAnalysis.GeneratorAttribute.#ctor +M:Microsoft.CodeAnalysis.GeneratorAttribute.#ctor(System.String,System.String[]) +M:Microsoft.CodeAnalysis.GeneratorAttribute.get_Languages +T:Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext +M:Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext.get_Attributes +M:Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext.get_SemanticModel +M:Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext.get_TargetNode +M:Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext.get_TargetSymbol +T:Microsoft.CodeAnalysis.GeneratorDriver +M:Microsoft.CodeAnalysis.GeneratorDriver.AddAdditionalTexts(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.GeneratorDriver.AddGenerators(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ISourceGenerator}) +M:Microsoft.CodeAnalysis.GeneratorDriver.GetRunResult +M:Microsoft.CodeAnalysis.GeneratorDriver.GetTimingInfo +M:Microsoft.CodeAnalysis.GeneratorDriver.RemoveAdditionalTexts(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.GeneratorDriver.RemoveGenerators(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ISourceGenerator}) +M:Microsoft.CodeAnalysis.GeneratorDriver.ReplaceAdditionalText(Microsoft.CodeAnalysis.AdditionalText,Microsoft.CodeAnalysis.AdditionalText) +M:Microsoft.CodeAnalysis.GeneratorDriver.ReplaceAdditionalTexts(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.GeneratorDriver.ReplaceGenerators(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ISourceGenerator}) +M:Microsoft.CodeAnalysis.GeneratorDriver.RunGenerators(Microsoft.CodeAnalysis.Compilation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.GeneratorDriver.RunGeneratorsAndUpdateCompilation(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Compilation@,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostic}@,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.GeneratorDriver.WithUpdatedAnalyzerConfigOptions(Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider) +M:Microsoft.CodeAnalysis.GeneratorDriver.WithUpdatedParseOptions(Microsoft.CodeAnalysis.ParseOptions) +T:Microsoft.CodeAnalysis.GeneratorDriverOptions +M:Microsoft.CodeAnalysis.GeneratorDriverOptions.#ctor(Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind) +M:Microsoft.CodeAnalysis.GeneratorDriverOptions.#ctor(Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind,System.Boolean) +F:Microsoft.CodeAnalysis.GeneratorDriverOptions.DisabledOutputs +F:Microsoft.CodeAnalysis.GeneratorDriverOptions.TrackIncrementalGeneratorSteps +T:Microsoft.CodeAnalysis.GeneratorDriverRunResult +M:Microsoft.CodeAnalysis.GeneratorDriverRunResult.get_Diagnostics +M:Microsoft.CodeAnalysis.GeneratorDriverRunResult.get_GeneratedTrees +M:Microsoft.CodeAnalysis.GeneratorDriverRunResult.get_Results +T:Microsoft.CodeAnalysis.GeneratorDriverTimingInfo +M:Microsoft.CodeAnalysis.GeneratorDriverTimingInfo.get_ElapsedTime +M:Microsoft.CodeAnalysis.GeneratorDriverTimingInfo.get_GeneratorTimes +T:Microsoft.CodeAnalysis.GeneratorExecutionContext +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.AddSource(System.String,Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.AddSource(System.String,System.String) +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_AdditionalFiles +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_AnalyzerConfigOptions +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_CancellationToken +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_Compilation +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_ParseOptions +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_SyntaxContextReceiver +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_SyntaxReceiver +T:Microsoft.CodeAnalysis.GeneratorExtensions +M:Microsoft.CodeAnalysis.GeneratorExtensions.AsSourceGenerator(Microsoft.CodeAnalysis.IIncrementalGenerator) +M:Microsoft.CodeAnalysis.GeneratorExtensions.GetGeneratorType(Microsoft.CodeAnalysis.ISourceGenerator) +T:Microsoft.CodeAnalysis.GeneratorInitializationContext +M:Microsoft.CodeAnalysis.GeneratorInitializationContext.RegisterForPostInitialization(System.Action{Microsoft.CodeAnalysis.GeneratorPostInitializationContext}) +M:Microsoft.CodeAnalysis.GeneratorInitializationContext.RegisterForSyntaxNotifications(Microsoft.CodeAnalysis.SyntaxContextReceiverCreator) +M:Microsoft.CodeAnalysis.GeneratorInitializationContext.RegisterForSyntaxNotifications(Microsoft.CodeAnalysis.SyntaxReceiverCreator) +M:Microsoft.CodeAnalysis.GeneratorInitializationContext.get_CancellationToken +T:Microsoft.CodeAnalysis.GeneratorPostInitializationContext +M:Microsoft.CodeAnalysis.GeneratorPostInitializationContext.AddSource(System.String,Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.GeneratorPostInitializationContext.AddSource(System.String,System.String) +M:Microsoft.CodeAnalysis.GeneratorPostInitializationContext.get_CancellationToken +T:Microsoft.CodeAnalysis.GeneratorRunResult +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_Diagnostics +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_Exception +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_GeneratedSources +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_Generator +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_TrackedOutputSteps +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_TrackedSteps +T:Microsoft.CodeAnalysis.GeneratorSyntaxContext +M:Microsoft.CodeAnalysis.GeneratorSyntaxContext.get_Node +M:Microsoft.CodeAnalysis.GeneratorSyntaxContext.get_SemanticModel +T:Microsoft.CodeAnalysis.GeneratorTimingInfo +M:Microsoft.CodeAnalysis.GeneratorTimingInfo.get_ElapsedTime +M:Microsoft.CodeAnalysis.GeneratorTimingInfo.get_Generator +T:Microsoft.CodeAnalysis.IAliasSymbol +M:Microsoft.CodeAnalysis.IAliasSymbol.get_Target +T:Microsoft.CodeAnalysis.IAnalyzerAssemblyLoader +M:Microsoft.CodeAnalysis.IAnalyzerAssemblyLoader.AddDependencyLocation(System.String) +M:Microsoft.CodeAnalysis.IAnalyzerAssemblyLoader.LoadFromPath(System.String) +T:Microsoft.CodeAnalysis.IArrayTypeSymbol +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.Equals(Microsoft.CodeAnalysis.IArrayTypeSymbol) +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_CustomModifiers +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_ElementNullableAnnotation +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_ElementType +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_IsSZArray +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_LowerBounds +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_Rank +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_Sizes +T:Microsoft.CodeAnalysis.IAssemblySymbol +M:Microsoft.CodeAnalysis.IAssemblySymbol.GetForwardedTypes +M:Microsoft.CodeAnalysis.IAssemblySymbol.GetMetadata +M:Microsoft.CodeAnalysis.IAssemblySymbol.GetTypeByMetadataName(System.String) +M:Microsoft.CodeAnalysis.IAssemblySymbol.GivesAccessTo(Microsoft.CodeAnalysis.IAssemblySymbol) +M:Microsoft.CodeAnalysis.IAssemblySymbol.ResolveForwardedType(System.String) +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_GlobalNamespace +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_Identity +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_IsInteractive +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_MightContainExtensionMethods +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_Modules +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_NamespaceNames +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_TypeNames +T:Microsoft.CodeAnalysis.ICompilationUnitSyntax +M:Microsoft.CodeAnalysis.ICompilationUnitSyntax.get_EndOfFileToken +T:Microsoft.CodeAnalysis.IDiscardSymbol +M:Microsoft.CodeAnalysis.IDiscardSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.IDiscardSymbol.get_Type +T:Microsoft.CodeAnalysis.IDynamicTypeSymbol +T:Microsoft.CodeAnalysis.IErrorTypeSymbol +M:Microsoft.CodeAnalysis.IErrorTypeSymbol.get_CandidateReason +M:Microsoft.CodeAnalysis.IErrorTypeSymbol.get_CandidateSymbols +T:Microsoft.CodeAnalysis.IEventSymbol +M:Microsoft.CodeAnalysis.IEventSymbol.get_AddMethod +M:Microsoft.CodeAnalysis.IEventSymbol.get_ExplicitInterfaceImplementations +M:Microsoft.CodeAnalysis.IEventSymbol.get_IsWindowsRuntimeEvent +M:Microsoft.CodeAnalysis.IEventSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.IEventSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.IEventSymbol.get_OverriddenEvent +M:Microsoft.CodeAnalysis.IEventSymbol.get_RaiseMethod +M:Microsoft.CodeAnalysis.IEventSymbol.get_RemoveMethod +M:Microsoft.CodeAnalysis.IEventSymbol.get_Type +T:Microsoft.CodeAnalysis.IFieldSymbol +M:Microsoft.CodeAnalysis.IFieldSymbol.get_AssociatedSymbol +M:Microsoft.CodeAnalysis.IFieldSymbol.get_ConstantValue +M:Microsoft.CodeAnalysis.IFieldSymbol.get_CorrespondingTupleField +M:Microsoft.CodeAnalysis.IFieldSymbol.get_CustomModifiers +M:Microsoft.CodeAnalysis.IFieldSymbol.get_FixedSize +M:Microsoft.CodeAnalysis.IFieldSymbol.get_HasConstantValue +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsConst +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsExplicitlyNamedTupleElement +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsFixedSizeBuffer +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsReadOnly +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsRequired +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsVolatile +M:Microsoft.CodeAnalysis.IFieldSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.IFieldSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.IFieldSymbol.get_RefCustomModifiers +M:Microsoft.CodeAnalysis.IFieldSymbol.get_RefKind +M:Microsoft.CodeAnalysis.IFieldSymbol.get_Type +T:Microsoft.CodeAnalysis.IFunctionPointerTypeSymbol +M:Microsoft.CodeAnalysis.IFunctionPointerTypeSymbol.get_Signature +T:Microsoft.CodeAnalysis.IImportScope +M:Microsoft.CodeAnalysis.IImportScope.get_Aliases +M:Microsoft.CodeAnalysis.IImportScope.get_ExternAliases +M:Microsoft.CodeAnalysis.IImportScope.get_Imports +M:Microsoft.CodeAnalysis.IImportScope.get_XmlNamespaces +T:Microsoft.CodeAnalysis.IIncrementalGenerator +M:Microsoft.CodeAnalysis.IIncrementalGenerator.Initialize(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext) +T:Microsoft.CodeAnalysis.ILabelSymbol +M:Microsoft.CodeAnalysis.ILabelSymbol.get_ContainingMethod +T:Microsoft.CodeAnalysis.ILocalSymbol +M:Microsoft.CodeAnalysis.ILocalSymbol.get_ConstantValue +M:Microsoft.CodeAnalysis.ILocalSymbol.get_HasConstantValue +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsConst +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsFixed +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsForEach +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsFunctionValue +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsRef +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsUsing +M:Microsoft.CodeAnalysis.ILocalSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.ILocalSymbol.get_RefKind +M:Microsoft.CodeAnalysis.ILocalSymbol.get_ScopedKind +M:Microsoft.CodeAnalysis.ILocalSymbol.get_Type +T:Microsoft.CodeAnalysis.IMethodSymbol +M:Microsoft.CodeAnalysis.IMethodSymbol.Construct(Microsoft.CodeAnalysis.ITypeSymbol[]) +M:Microsoft.CodeAnalysis.IMethodSymbol.Construct(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.IMethodSymbol.GetDllImportData +M:Microsoft.CodeAnalysis.IMethodSymbol.GetReturnTypeAttributes +M:Microsoft.CodeAnalysis.IMethodSymbol.GetTypeInferredDuringReduction(Microsoft.CodeAnalysis.ITypeParameterSymbol) +M:Microsoft.CodeAnalysis.IMethodSymbol.ReduceExtensionMethod(Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.IMethodSymbol.get_Arity +M:Microsoft.CodeAnalysis.IMethodSymbol.get_AssociatedAnonymousDelegate +M:Microsoft.CodeAnalysis.IMethodSymbol.get_AssociatedSymbol +M:Microsoft.CodeAnalysis.IMethodSymbol.get_CallingConvention +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ConstructedFrom +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ExplicitInterfaceImplementations +M:Microsoft.CodeAnalysis.IMethodSymbol.get_HidesBaseMethodsByName +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsAsync +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsCheckedBuiltin +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsConditional +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsExtensionMethod +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsGenericMethod +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsInitOnly +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsPartialDefinition +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsReadOnly +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsVararg +M:Microsoft.CodeAnalysis.IMethodSymbol.get_MethodImplementationFlags +M:Microsoft.CodeAnalysis.IMethodSymbol.get_MethodKind +M:Microsoft.CodeAnalysis.IMethodSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.IMethodSymbol.get_OverriddenMethod +M:Microsoft.CodeAnalysis.IMethodSymbol.get_Parameters +M:Microsoft.CodeAnalysis.IMethodSymbol.get_PartialDefinitionPart +M:Microsoft.CodeAnalysis.IMethodSymbol.get_PartialImplementationPart +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReceiverNullableAnnotation +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReceiverType +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReducedFrom +M:Microsoft.CodeAnalysis.IMethodSymbol.get_RefCustomModifiers +M:Microsoft.CodeAnalysis.IMethodSymbol.get_RefKind +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnNullableAnnotation +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnType +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnTypeCustomModifiers +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnsByRef +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnsByRefReadonly +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnsVoid +M:Microsoft.CodeAnalysis.IMethodSymbol.get_TypeArgumentNullableAnnotations +M:Microsoft.CodeAnalysis.IMethodSymbol.get_TypeArguments +M:Microsoft.CodeAnalysis.IMethodSymbol.get_TypeParameters +M:Microsoft.CodeAnalysis.IMethodSymbol.get_UnmanagedCallingConventionTypes +T:Microsoft.CodeAnalysis.IModuleSymbol +M:Microsoft.CodeAnalysis.IModuleSymbol.GetMetadata +M:Microsoft.CodeAnalysis.IModuleSymbol.GetModuleNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.IModuleSymbol.get_GlobalNamespace +M:Microsoft.CodeAnalysis.IModuleSymbol.get_ReferencedAssemblies +M:Microsoft.CodeAnalysis.IModuleSymbol.get_ReferencedAssemblySymbols +T:Microsoft.CodeAnalysis.INamedTypeSymbol +M:Microsoft.CodeAnalysis.INamedTypeSymbol.Construct(Microsoft.CodeAnalysis.ITypeSymbol[]) +M:Microsoft.CodeAnalysis.INamedTypeSymbol.Construct(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.INamedTypeSymbol.ConstructUnboundGenericType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.GetTypeArgumentCustomModifiers(System.Int32) +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_Arity +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_AssociatedSymbol +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_ConstructedFrom +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_Constructors +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_DelegateInvokeMethod +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_EnumUnderlyingType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_InstanceConstructors +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsComImport +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsFileLocal +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsGenericType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsImplicitClass +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsScriptClass +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsSerializable +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsUnboundGenericType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_MemberNames +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_MightContainExtensionMethods +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_NativeIntegerUnderlyingType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_StaticConstructors +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_TupleElements +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_TupleUnderlyingType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_TypeArgumentNullableAnnotations +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_TypeArguments +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_TypeParameters +T:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.GetMembers +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.GetMembers(System.String) +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.GetTypeMembers +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.GetTypeMembers(System.String) +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.GetTypeMembers(System.String,System.Int32) +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.get_IsNamespace +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.get_IsType +T:Microsoft.CodeAnalysis.INamespaceSymbol +M:Microsoft.CodeAnalysis.INamespaceSymbol.GetMembers +M:Microsoft.CodeAnalysis.INamespaceSymbol.GetMembers(System.String) +M:Microsoft.CodeAnalysis.INamespaceSymbol.GetNamespaceMembers +M:Microsoft.CodeAnalysis.INamespaceSymbol.get_ConstituentNamespaces +M:Microsoft.CodeAnalysis.INamespaceSymbol.get_ContainingCompilation +M:Microsoft.CodeAnalysis.INamespaceSymbol.get_IsGlobalNamespace +M:Microsoft.CodeAnalysis.INamespaceSymbol.get_NamespaceKind +T:Microsoft.CodeAnalysis.IOperation +M:Microsoft.CodeAnalysis.IOperation.Accept(Microsoft.CodeAnalysis.Operations.OperationVisitor) +M:Microsoft.CodeAnalysis.IOperation.Accept``2(Microsoft.CodeAnalysis.Operations.OperationVisitor{``0,``1},``0) +T:Microsoft.CodeAnalysis.IOperation.OperationList +M:Microsoft.CodeAnalysis.IOperation.OperationList.Any +T:Microsoft.CodeAnalysis.IOperation.OperationList.Enumerator +M:Microsoft.CodeAnalysis.IOperation.OperationList.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.IOperation.OperationList.Enumerator.Reset +M:Microsoft.CodeAnalysis.IOperation.OperationList.Enumerator.get_Current +M:Microsoft.CodeAnalysis.IOperation.OperationList.First +M:Microsoft.CodeAnalysis.IOperation.OperationList.GetEnumerator +M:Microsoft.CodeAnalysis.IOperation.OperationList.Last +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reverse +T:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed +T:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.Enumerator +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.Enumerator.Reset +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.Enumerator.get_Current +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.GetEnumerator +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.ToImmutableArray +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.get_Count +M:Microsoft.CodeAnalysis.IOperation.OperationList.ToImmutableArray +M:Microsoft.CodeAnalysis.IOperation.OperationList.get_Count +M:Microsoft.CodeAnalysis.IOperation.get_ChildOperations +M:Microsoft.CodeAnalysis.IOperation.get_Children +M:Microsoft.CodeAnalysis.IOperation.get_ConstantValue +M:Microsoft.CodeAnalysis.IOperation.get_IsImplicit +M:Microsoft.CodeAnalysis.IOperation.get_Kind +M:Microsoft.CodeAnalysis.IOperation.get_Language +M:Microsoft.CodeAnalysis.IOperation.get_Parent +M:Microsoft.CodeAnalysis.IOperation.get_SemanticModel +M:Microsoft.CodeAnalysis.IOperation.get_Syntax +M:Microsoft.CodeAnalysis.IOperation.get_Type +T:Microsoft.CodeAnalysis.IParameterSymbol +M:Microsoft.CodeAnalysis.IParameterSymbol.get_CustomModifiers +M:Microsoft.CodeAnalysis.IParameterSymbol.get_ExplicitDefaultValue +M:Microsoft.CodeAnalysis.IParameterSymbol.get_HasExplicitDefaultValue +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsDiscard +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsOptional +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsParams +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsParamsArray +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsParamsCollection +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsThis +M:Microsoft.CodeAnalysis.IParameterSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.IParameterSymbol.get_Ordinal +M:Microsoft.CodeAnalysis.IParameterSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.IParameterSymbol.get_RefCustomModifiers +M:Microsoft.CodeAnalysis.IParameterSymbol.get_RefKind +M:Microsoft.CodeAnalysis.IParameterSymbol.get_ScopedKind +M:Microsoft.CodeAnalysis.IParameterSymbol.get_Type +T:Microsoft.CodeAnalysis.IPointerTypeSymbol +M:Microsoft.CodeAnalysis.IPointerTypeSymbol.get_CustomModifiers +M:Microsoft.CodeAnalysis.IPointerTypeSymbol.get_PointedAtType +T:Microsoft.CodeAnalysis.IPreprocessingSymbol +T:Microsoft.CodeAnalysis.IPropertySymbol +M:Microsoft.CodeAnalysis.IPropertySymbol.get_ExplicitInterfaceImplementations +M:Microsoft.CodeAnalysis.IPropertySymbol.get_GetMethod +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsIndexer +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsPartialDefinition +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsReadOnly +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsRequired +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsWithEvents +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsWriteOnly +M:Microsoft.CodeAnalysis.IPropertySymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.IPropertySymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.IPropertySymbol.get_OverriddenProperty +M:Microsoft.CodeAnalysis.IPropertySymbol.get_Parameters +M:Microsoft.CodeAnalysis.IPropertySymbol.get_PartialDefinitionPart +M:Microsoft.CodeAnalysis.IPropertySymbol.get_PartialImplementationPart +M:Microsoft.CodeAnalysis.IPropertySymbol.get_RefCustomModifiers +M:Microsoft.CodeAnalysis.IPropertySymbol.get_RefKind +M:Microsoft.CodeAnalysis.IPropertySymbol.get_ReturnsByRef +M:Microsoft.CodeAnalysis.IPropertySymbol.get_ReturnsByRefReadonly +M:Microsoft.CodeAnalysis.IPropertySymbol.get_SetMethod +M:Microsoft.CodeAnalysis.IPropertySymbol.get_Type +M:Microsoft.CodeAnalysis.IPropertySymbol.get_TypeCustomModifiers +T:Microsoft.CodeAnalysis.IRangeVariableSymbol +T:Microsoft.CodeAnalysis.ISkippedTokensTriviaSyntax +M:Microsoft.CodeAnalysis.ISkippedTokensTriviaSyntax.get_Tokens +T:Microsoft.CodeAnalysis.ISourceAssemblySymbol +M:Microsoft.CodeAnalysis.ISourceAssemblySymbol.get_Compilation +T:Microsoft.CodeAnalysis.ISourceGenerator +M:Microsoft.CodeAnalysis.ISourceGenerator.Execute(Microsoft.CodeAnalysis.GeneratorExecutionContext) +M:Microsoft.CodeAnalysis.ISourceGenerator.Initialize(Microsoft.CodeAnalysis.GeneratorInitializationContext) +T:Microsoft.CodeAnalysis.IStructuredTriviaSyntax +M:Microsoft.CodeAnalysis.IStructuredTriviaSyntax.get_ParentTrivia +T:Microsoft.CodeAnalysis.ISymbol +M:Microsoft.CodeAnalysis.ISymbol.Accept(Microsoft.CodeAnalysis.SymbolVisitor) +M:Microsoft.CodeAnalysis.ISymbol.Accept``1(Microsoft.CodeAnalysis.SymbolVisitor{``0}) +M:Microsoft.CodeAnalysis.ISymbol.Accept``2(Microsoft.CodeAnalysis.SymbolVisitor{``0,``1},``0) +M:Microsoft.CodeAnalysis.ISymbol.Equals(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SymbolEqualityComparer) +M:Microsoft.CodeAnalysis.ISymbol.GetAttributes +M:Microsoft.CodeAnalysis.ISymbol.GetDocumentationCommentId +M:Microsoft.CodeAnalysis.ISymbol.GetDocumentationCommentXml(System.Globalization.CultureInfo,System.Boolean,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ISymbol.ToDisplayParts(Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ISymbol.ToDisplayString(Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ISymbol.ToMinimalDisplayParts(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ISymbol.ToMinimalDisplayString(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ISymbol.get_CanBeReferencedByName +M:Microsoft.CodeAnalysis.ISymbol.get_ContainingAssembly +M:Microsoft.CodeAnalysis.ISymbol.get_ContainingModule +M:Microsoft.CodeAnalysis.ISymbol.get_ContainingNamespace +M:Microsoft.CodeAnalysis.ISymbol.get_ContainingSymbol +M:Microsoft.CodeAnalysis.ISymbol.get_ContainingType +M:Microsoft.CodeAnalysis.ISymbol.get_DeclaredAccessibility +M:Microsoft.CodeAnalysis.ISymbol.get_DeclaringSyntaxReferences +M:Microsoft.CodeAnalysis.ISymbol.get_HasUnsupportedMetadata +M:Microsoft.CodeAnalysis.ISymbol.get_IsAbstract +M:Microsoft.CodeAnalysis.ISymbol.get_IsDefinition +M:Microsoft.CodeAnalysis.ISymbol.get_IsExtern +M:Microsoft.CodeAnalysis.ISymbol.get_IsImplicitlyDeclared +M:Microsoft.CodeAnalysis.ISymbol.get_IsOverride +M:Microsoft.CodeAnalysis.ISymbol.get_IsSealed +M:Microsoft.CodeAnalysis.ISymbol.get_IsStatic +M:Microsoft.CodeAnalysis.ISymbol.get_IsVirtual +M:Microsoft.CodeAnalysis.ISymbol.get_Kind +M:Microsoft.CodeAnalysis.ISymbol.get_Language +M:Microsoft.CodeAnalysis.ISymbol.get_Locations +M:Microsoft.CodeAnalysis.ISymbol.get_MetadataName +M:Microsoft.CodeAnalysis.ISymbol.get_MetadataToken +M:Microsoft.CodeAnalysis.ISymbol.get_Name +M:Microsoft.CodeAnalysis.ISymbol.get_OriginalDefinition +T:Microsoft.CodeAnalysis.ISymbolExtensions +M:Microsoft.CodeAnalysis.ISymbolExtensions.GetConstructedReducedFrom(Microsoft.CodeAnalysis.IMethodSymbol) +T:Microsoft.CodeAnalysis.ISyntaxContextReceiver +M:Microsoft.CodeAnalysis.ISyntaxContextReceiver.OnVisitSyntaxNode(Microsoft.CodeAnalysis.GeneratorSyntaxContext) +T:Microsoft.CodeAnalysis.ISyntaxReceiver +M:Microsoft.CodeAnalysis.ISyntaxReceiver.OnVisitSyntaxNode(Microsoft.CodeAnalysis.SyntaxNode) +T:Microsoft.CodeAnalysis.ITypeParameterSymbol +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_AllowsRefLikeType +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_ConstraintNullableAnnotations +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_ConstraintTypes +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_DeclaringMethod +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_DeclaringType +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_HasConstructorConstraint +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_HasNotNullConstraint +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_HasReferenceTypeConstraint +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_HasUnmanagedTypeConstraint +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_HasValueTypeConstraint +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_Ordinal +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_ReducedFrom +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_ReferenceTypeConstraintNullableAnnotation +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_TypeParameterKind +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_Variance +T:Microsoft.CodeAnalysis.ITypeSymbol +M:Microsoft.CodeAnalysis.ITypeSymbol.FindImplementationForInterfaceMember(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.ITypeSymbol.ToDisplayParts(Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ITypeSymbol.ToDisplayString(Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ITypeSymbol.ToMinimalDisplayParts(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.NullableFlowState,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ITypeSymbol.ToMinimalDisplayString(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.NullableFlowState,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ITypeSymbol.WithNullableAnnotation(Microsoft.CodeAnalysis.NullableAnnotation) +M:Microsoft.CodeAnalysis.ITypeSymbol.get_AllInterfaces +M:Microsoft.CodeAnalysis.ITypeSymbol.get_BaseType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_Interfaces +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsAnonymousType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsNativeIntegerType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsReadOnly +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsRecord +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsRefLikeType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsReferenceType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsTupleType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsUnmanagedType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsValueType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.ITypeSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.ITypeSymbol.get_SpecialType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_TypeKind +T:Microsoft.CodeAnalysis.ImportedNamespaceOrType +M:Microsoft.CodeAnalysis.ImportedNamespaceOrType.get_DeclaringSyntaxReference +M:Microsoft.CodeAnalysis.ImportedNamespaceOrType.get_NamespaceOrType +T:Microsoft.CodeAnalysis.ImportedXmlNamespace +M:Microsoft.CodeAnalysis.ImportedXmlNamespace.get_DeclaringSyntaxReference +M:Microsoft.CodeAnalysis.ImportedXmlNamespace.get_XmlNamespace +T:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.RegisterImplementationSourceOutput``1(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Action{Microsoft.CodeAnalysis.SourceProductionContext,``0}) +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.RegisterImplementationSourceOutput``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Action{Microsoft.CodeAnalysis.SourceProductionContext,``0}) +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.RegisterPostInitializationOutput(System.Action{Microsoft.CodeAnalysis.IncrementalGeneratorPostInitializationContext}) +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.RegisterSourceOutput``1(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Action{Microsoft.CodeAnalysis.SourceProductionContext,``0}) +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.RegisterSourceOutput``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Action{Microsoft.CodeAnalysis.SourceProductionContext,``0}) +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_AdditionalTextsProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_AnalyzerConfigOptionsProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_CompilationProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_MetadataReferencesProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_ParseOptionsProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_SyntaxProvider +T:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind +F:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind.Implementation +F:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind.None +F:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind.PostInit +F:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind.Source +F:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind.value__ +T:Microsoft.CodeAnalysis.IncrementalGeneratorPostInitializationContext +M:Microsoft.CodeAnalysis.IncrementalGeneratorPostInitializationContext.AddSource(System.String,Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.IncrementalGeneratorPostInitializationContext.AddSource(System.String,System.String) +M:Microsoft.CodeAnalysis.IncrementalGeneratorPostInitializationContext.get_CancellationToken +T:Microsoft.CodeAnalysis.IncrementalGeneratorRunStep +M:Microsoft.CodeAnalysis.IncrementalGeneratorRunStep.get_ElapsedTime +M:Microsoft.CodeAnalysis.IncrementalGeneratorRunStep.get_Inputs +M:Microsoft.CodeAnalysis.IncrementalGeneratorRunStep.get_Name +M:Microsoft.CodeAnalysis.IncrementalGeneratorRunStep.get_Outputs +T:Microsoft.CodeAnalysis.IncrementalStepRunReason +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.Cached +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.Modified +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.New +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.Removed +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.Unchanged +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.value__ +T:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Collect``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Combine``2(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},Microsoft.CodeAnalysis.IncrementalValueProvider{``1}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Combine``2(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},Microsoft.CodeAnalysis.IncrementalValueProvider{``1}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.SelectMany``2(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Func{``0,System.Threading.CancellationToken,System.Collections.Generic.IEnumerable{``1}}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.SelectMany``2(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Func{``0,System.Threading.CancellationToken,System.Collections.Immutable.ImmutableArray{``1}}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.SelectMany``2(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Func{``0,System.Threading.CancellationToken,System.Collections.Generic.IEnumerable{``1}}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.SelectMany``2(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Func{``0,System.Threading.CancellationToken,System.Collections.Immutable.ImmutableArray{``1}}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Select``2(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Func{``0,System.Threading.CancellationToken,``1}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Select``2(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Func{``0,System.Threading.CancellationToken,``1}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Where``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Func{``0,System.Boolean}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.WithComparer``1(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.WithComparer``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.WithTrackingName``1(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.String) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.WithTrackingName``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.String) +T:Microsoft.CodeAnalysis.IncrementalValueProvider`1 +T:Microsoft.CodeAnalysis.IncrementalValuesProvider`1 +T:Microsoft.CodeAnalysis.LanguageNames +F:Microsoft.CodeAnalysis.LanguageNames.CSharp +F:Microsoft.CodeAnalysis.LanguageNames.FSharp +F:Microsoft.CodeAnalysis.LanguageNames.VisualBasic +T:Microsoft.CodeAnalysis.LineMapping +M:Microsoft.CodeAnalysis.LineMapping.#ctor(Microsoft.CodeAnalysis.Text.LinePositionSpan,System.Nullable{System.Int32},Microsoft.CodeAnalysis.FileLinePositionSpan) +M:Microsoft.CodeAnalysis.LineMapping.Equals(Microsoft.CodeAnalysis.LineMapping) +M:Microsoft.CodeAnalysis.LineMapping.Equals(System.Object) +M:Microsoft.CodeAnalysis.LineMapping.GetHashCode +M:Microsoft.CodeAnalysis.LineMapping.ToString +M:Microsoft.CodeAnalysis.LineMapping.get_CharacterOffset +M:Microsoft.CodeAnalysis.LineMapping.get_IsHidden +M:Microsoft.CodeAnalysis.LineMapping.get_MappedSpan +M:Microsoft.CodeAnalysis.LineMapping.get_Span +M:Microsoft.CodeAnalysis.LineMapping.op_Equality(Microsoft.CodeAnalysis.LineMapping,Microsoft.CodeAnalysis.LineMapping) +M:Microsoft.CodeAnalysis.LineMapping.op_Inequality(Microsoft.CodeAnalysis.LineMapping,Microsoft.CodeAnalysis.LineMapping) +T:Microsoft.CodeAnalysis.LineVisibility +F:Microsoft.CodeAnalysis.LineVisibility.BeforeFirstLineDirective +F:Microsoft.CodeAnalysis.LineVisibility.Hidden +F:Microsoft.CodeAnalysis.LineVisibility.Visible +F:Microsoft.CodeAnalysis.LineVisibility.value__ +T:Microsoft.CodeAnalysis.LocalizableResourceString +M:Microsoft.CodeAnalysis.LocalizableResourceString.#ctor(System.String,System.Resources.ResourceManager,System.Type) +M:Microsoft.CodeAnalysis.LocalizableResourceString.#ctor(System.String,System.Resources.ResourceManager,System.Type,System.String[]) +M:Microsoft.CodeAnalysis.LocalizableResourceString.AreEqual(System.Object) +M:Microsoft.CodeAnalysis.LocalizableResourceString.GetHash +M:Microsoft.CodeAnalysis.LocalizableResourceString.GetText(System.IFormatProvider) +T:Microsoft.CodeAnalysis.LocalizableString +M:Microsoft.CodeAnalysis.LocalizableString.#ctor +M:Microsoft.CodeAnalysis.LocalizableString.AreEqual(System.Object) +M:Microsoft.CodeAnalysis.LocalizableString.Equals(Microsoft.CodeAnalysis.LocalizableString) +M:Microsoft.CodeAnalysis.LocalizableString.Equals(System.Object) +M:Microsoft.CodeAnalysis.LocalizableString.GetHash +M:Microsoft.CodeAnalysis.LocalizableString.GetHashCode +M:Microsoft.CodeAnalysis.LocalizableString.GetText(System.IFormatProvider) +M:Microsoft.CodeAnalysis.LocalizableString.ToString +M:Microsoft.CodeAnalysis.LocalizableString.ToString(System.IFormatProvider) +M:Microsoft.CodeAnalysis.LocalizableString.add_OnException(System.EventHandler{System.Exception}) +M:Microsoft.CodeAnalysis.LocalizableString.op_Explicit(Microsoft.CodeAnalysis.LocalizableString)~System.String +M:Microsoft.CodeAnalysis.LocalizableString.op_Implicit(System.String)~Microsoft.CodeAnalysis.LocalizableString +M:Microsoft.CodeAnalysis.LocalizableString.remove_OnException(System.EventHandler{System.Exception}) +T:Microsoft.CodeAnalysis.Location +M:Microsoft.CodeAnalysis.Location.Create(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Location.Create(System.String,Microsoft.CodeAnalysis.Text.TextSpan,Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Location.Create(System.String,Microsoft.CodeAnalysis.Text.TextSpan,Microsoft.CodeAnalysis.Text.LinePositionSpan,System.String,Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Location.Equals(System.Object) +M:Microsoft.CodeAnalysis.Location.GetDebuggerDisplay +M:Microsoft.CodeAnalysis.Location.GetHashCode +M:Microsoft.CodeAnalysis.Location.GetLineSpan +M:Microsoft.CodeAnalysis.Location.GetMappedLineSpan +M:Microsoft.CodeAnalysis.Location.ToString +M:Microsoft.CodeAnalysis.Location.get_IsInMetadata +M:Microsoft.CodeAnalysis.Location.get_IsInSource +M:Microsoft.CodeAnalysis.Location.get_Kind +M:Microsoft.CodeAnalysis.Location.get_MetadataModule +M:Microsoft.CodeAnalysis.Location.get_None +M:Microsoft.CodeAnalysis.Location.get_SourceSpan +M:Microsoft.CodeAnalysis.Location.get_SourceTree +M:Microsoft.CodeAnalysis.Location.op_Equality(Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.Location) +M:Microsoft.CodeAnalysis.Location.op_Inequality(Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.Location) +T:Microsoft.CodeAnalysis.LocationKind +F:Microsoft.CodeAnalysis.LocationKind.ExternalFile +F:Microsoft.CodeAnalysis.LocationKind.MetadataFile +F:Microsoft.CodeAnalysis.LocationKind.None +F:Microsoft.CodeAnalysis.LocationKind.SourceFile +F:Microsoft.CodeAnalysis.LocationKind.XmlFile +F:Microsoft.CodeAnalysis.LocationKind.value__ +T:Microsoft.CodeAnalysis.Metadata +M:Microsoft.CodeAnalysis.Metadata.CommonCopy +M:Microsoft.CodeAnalysis.Metadata.Copy +M:Microsoft.CodeAnalysis.Metadata.Dispose +M:Microsoft.CodeAnalysis.Metadata.get_Id +M:Microsoft.CodeAnalysis.Metadata.get_Kind +T:Microsoft.CodeAnalysis.MetadataId +T:Microsoft.CodeAnalysis.MetadataImageKind +F:Microsoft.CodeAnalysis.MetadataImageKind.Assembly +F:Microsoft.CodeAnalysis.MetadataImageKind.Module +F:Microsoft.CodeAnalysis.MetadataImageKind.value__ +T:Microsoft.CodeAnalysis.MetadataImportOptions +F:Microsoft.CodeAnalysis.MetadataImportOptions.All +F:Microsoft.CodeAnalysis.MetadataImportOptions.Internal +F:Microsoft.CodeAnalysis.MetadataImportOptions.Public +F:Microsoft.CodeAnalysis.MetadataImportOptions.value__ +T:Microsoft.CodeAnalysis.MetadataReference +M:Microsoft.CodeAnalysis.MetadataReference.#ctor(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.MetadataReference.WithAliases(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.MetadataReference.WithAliases(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.MetadataReference.WithEmbedInteropTypes(System.Boolean) +M:Microsoft.CodeAnalysis.MetadataReference.WithProperties(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.MetadataReference.get_Display +M:Microsoft.CodeAnalysis.MetadataReference.get_Properties +T:Microsoft.CodeAnalysis.MetadataReferenceProperties +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.#ctor(Microsoft.CodeAnalysis.MetadataImageKind,System.Collections.Immutable.ImmutableArray{System.String},System.Boolean) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.Equals(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.Equals(System.Object) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.GetHashCode +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.WithAliases(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.WithAliases(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.WithEmbedInteropTypes(System.Boolean) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_Aliases +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_Assembly +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_EmbedInteropTypes +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_GlobalAlias +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_Kind +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_Module +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.op_Equality(Microsoft.CodeAnalysis.MetadataReferenceProperties,Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.op_Inequality(Microsoft.CodeAnalysis.MetadataReferenceProperties,Microsoft.CodeAnalysis.MetadataReferenceProperties) +T:Microsoft.CodeAnalysis.MetadataReferenceResolver +T:Microsoft.CodeAnalysis.MethodKind +F:Microsoft.CodeAnalysis.MethodKind.AnonymousFunction +F:Microsoft.CodeAnalysis.MethodKind.BuiltinOperator +F:Microsoft.CodeAnalysis.MethodKind.Constructor +F:Microsoft.CodeAnalysis.MethodKind.Conversion +F:Microsoft.CodeAnalysis.MethodKind.DeclareMethod +F:Microsoft.CodeAnalysis.MethodKind.DelegateInvoke +F:Microsoft.CodeAnalysis.MethodKind.Destructor +F:Microsoft.CodeAnalysis.MethodKind.EventAdd +F:Microsoft.CodeAnalysis.MethodKind.EventRaise +F:Microsoft.CodeAnalysis.MethodKind.EventRemove +F:Microsoft.CodeAnalysis.MethodKind.ExplicitInterfaceImplementation +F:Microsoft.CodeAnalysis.MethodKind.FunctionPointerSignature +F:Microsoft.CodeAnalysis.MethodKind.LambdaMethod +F:Microsoft.CodeAnalysis.MethodKind.LocalFunction +F:Microsoft.CodeAnalysis.MethodKind.Ordinary +F:Microsoft.CodeAnalysis.MethodKind.PropertyGet +F:Microsoft.CodeAnalysis.MethodKind.PropertySet +F:Microsoft.CodeAnalysis.MethodKind.ReducedExtension +F:Microsoft.CodeAnalysis.MethodKind.SharedConstructor +F:Microsoft.CodeAnalysis.MethodKind.StaticConstructor +F:Microsoft.CodeAnalysis.MethodKind.UserDefinedOperator +F:Microsoft.CodeAnalysis.MethodKind.value__ +T:Microsoft.CodeAnalysis.ModelExtensions +M:Microsoft.CodeAnalysis.ModelExtensions.AnalyzeControlFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.ModelExtensions.AnalyzeControlFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.ModelExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.ModelExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.ModelExtensions.GetAliasInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ModelExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ModelExtensions.GetMemberGroup(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ModelExtensions.GetSpeculativeAliasInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.ModelExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.ModelExtensions.GetSpeculativeTypeInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.ModelExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ModelExtensions.GetTypeInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +T:Microsoft.CodeAnalysis.ModuleMetadata +M:Microsoft.CodeAnalysis.ModuleMetadata.CommonCopy +M:Microsoft.CodeAnalysis.ModuleMetadata.Dispose +M:Microsoft.CodeAnalysis.ModuleMetadata.GetMetadataReader +M:Microsoft.CodeAnalysis.ModuleMetadata.GetModuleNames +M:Microsoft.CodeAnalysis.ModuleMetadata.GetModuleVersionId +M:Microsoft.CodeAnalysis.ModuleMetadata.GetReference(Microsoft.CodeAnalysis.DocumentationProvider,System.String,System.String) +M:Microsoft.CodeAnalysis.ModuleMetadata.get_IsDisposed +M:Microsoft.CodeAnalysis.ModuleMetadata.get_Kind +M:Microsoft.CodeAnalysis.ModuleMetadata.get_Name +T:Microsoft.CodeAnalysis.NamespaceKind +F:Microsoft.CodeAnalysis.NamespaceKind.Assembly +F:Microsoft.CodeAnalysis.NamespaceKind.Compilation +F:Microsoft.CodeAnalysis.NamespaceKind.Module +F:Microsoft.CodeAnalysis.NamespaceKind.value__ +T:Microsoft.CodeAnalysis.NullabilityInfo +M:Microsoft.CodeAnalysis.NullabilityInfo.Equals(Microsoft.CodeAnalysis.NullabilityInfo) +M:Microsoft.CodeAnalysis.NullabilityInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.NullabilityInfo.GetHashCode +M:Microsoft.CodeAnalysis.NullabilityInfo.get_Annotation +M:Microsoft.CodeAnalysis.NullabilityInfo.get_FlowState +T:Microsoft.CodeAnalysis.NullableAnnotation +F:Microsoft.CodeAnalysis.NullableAnnotation.Annotated +F:Microsoft.CodeAnalysis.NullableAnnotation.None +F:Microsoft.CodeAnalysis.NullableAnnotation.NotAnnotated +F:Microsoft.CodeAnalysis.NullableAnnotation.value__ +T:Microsoft.CodeAnalysis.NullableContext +F:Microsoft.CodeAnalysis.NullableContext.AnnotationsContextInherited +F:Microsoft.CodeAnalysis.NullableContext.AnnotationsEnabled +F:Microsoft.CodeAnalysis.NullableContext.ContextInherited +F:Microsoft.CodeAnalysis.NullableContext.Disabled +F:Microsoft.CodeAnalysis.NullableContext.Enabled +F:Microsoft.CodeAnalysis.NullableContext.WarningsContextInherited +F:Microsoft.CodeAnalysis.NullableContext.WarningsEnabled +F:Microsoft.CodeAnalysis.NullableContext.value__ +T:Microsoft.CodeAnalysis.NullableContextExtensions +M:Microsoft.CodeAnalysis.NullableContextExtensions.AnnotationsEnabled(Microsoft.CodeAnalysis.NullableContext) +M:Microsoft.CodeAnalysis.NullableContextExtensions.AnnotationsInherited(Microsoft.CodeAnalysis.NullableContext) +M:Microsoft.CodeAnalysis.NullableContextExtensions.WarningsEnabled(Microsoft.CodeAnalysis.NullableContext) +M:Microsoft.CodeAnalysis.NullableContextExtensions.WarningsInherited(Microsoft.CodeAnalysis.NullableContext) +T:Microsoft.CodeAnalysis.NullableContextOptions +F:Microsoft.CodeAnalysis.NullableContextOptions.Annotations +F:Microsoft.CodeAnalysis.NullableContextOptions.Disable +F:Microsoft.CodeAnalysis.NullableContextOptions.Enable +F:Microsoft.CodeAnalysis.NullableContextOptions.Warnings +F:Microsoft.CodeAnalysis.NullableContextOptions.value__ +T:Microsoft.CodeAnalysis.NullableContextOptionsExtensions +M:Microsoft.CodeAnalysis.NullableContextOptionsExtensions.AnnotationsEnabled(Microsoft.CodeAnalysis.NullableContextOptions) +M:Microsoft.CodeAnalysis.NullableContextOptionsExtensions.WarningsEnabled(Microsoft.CodeAnalysis.NullableContextOptions) +T:Microsoft.CodeAnalysis.NullableFlowState +F:Microsoft.CodeAnalysis.NullableFlowState.MaybeNull +F:Microsoft.CodeAnalysis.NullableFlowState.None +F:Microsoft.CodeAnalysis.NullableFlowState.NotNull +F:Microsoft.CodeAnalysis.NullableFlowState.value__ +T:Microsoft.CodeAnalysis.OperationKind +F:Microsoft.CodeAnalysis.OperationKind.AddressOf +F:Microsoft.CodeAnalysis.OperationKind.AnonymousFunction +F:Microsoft.CodeAnalysis.OperationKind.AnonymousObjectCreation +F:Microsoft.CodeAnalysis.OperationKind.Argument +F:Microsoft.CodeAnalysis.OperationKind.ArrayCreation +F:Microsoft.CodeAnalysis.OperationKind.ArrayElementReference +F:Microsoft.CodeAnalysis.OperationKind.ArrayInitializer +F:Microsoft.CodeAnalysis.OperationKind.Attribute +F:Microsoft.CodeAnalysis.OperationKind.Await +F:Microsoft.CodeAnalysis.OperationKind.Binary +F:Microsoft.CodeAnalysis.OperationKind.BinaryOperator +F:Microsoft.CodeAnalysis.OperationKind.BinaryPattern +F:Microsoft.CodeAnalysis.OperationKind.Block +F:Microsoft.CodeAnalysis.OperationKind.Branch +F:Microsoft.CodeAnalysis.OperationKind.CaseClause +F:Microsoft.CodeAnalysis.OperationKind.CatchClause +F:Microsoft.CodeAnalysis.OperationKind.CaughtException +F:Microsoft.CodeAnalysis.OperationKind.Coalesce +F:Microsoft.CodeAnalysis.OperationKind.CoalesceAssignment +F:Microsoft.CodeAnalysis.OperationKind.CollectionElementInitializer +F:Microsoft.CodeAnalysis.OperationKind.CollectionExpression +F:Microsoft.CodeAnalysis.OperationKind.CompoundAssignment +F:Microsoft.CodeAnalysis.OperationKind.Conditional +F:Microsoft.CodeAnalysis.OperationKind.ConditionalAccess +F:Microsoft.CodeAnalysis.OperationKind.ConditionalAccessInstance +F:Microsoft.CodeAnalysis.OperationKind.ConstantPattern +F:Microsoft.CodeAnalysis.OperationKind.ConstructorBody +F:Microsoft.CodeAnalysis.OperationKind.ConstructorBodyOperation +F:Microsoft.CodeAnalysis.OperationKind.Conversion +F:Microsoft.CodeAnalysis.OperationKind.DeclarationExpression +F:Microsoft.CodeAnalysis.OperationKind.DeclarationPattern +F:Microsoft.CodeAnalysis.OperationKind.DeconstructionAssignment +F:Microsoft.CodeAnalysis.OperationKind.Decrement +F:Microsoft.CodeAnalysis.OperationKind.DefaultValue +F:Microsoft.CodeAnalysis.OperationKind.DelegateCreation +F:Microsoft.CodeAnalysis.OperationKind.Discard +F:Microsoft.CodeAnalysis.OperationKind.DiscardPattern +F:Microsoft.CodeAnalysis.OperationKind.DynamicIndexerAccess +F:Microsoft.CodeAnalysis.OperationKind.DynamicInvocation +F:Microsoft.CodeAnalysis.OperationKind.DynamicMemberReference +F:Microsoft.CodeAnalysis.OperationKind.DynamicObjectCreation +F:Microsoft.CodeAnalysis.OperationKind.Empty +F:Microsoft.CodeAnalysis.OperationKind.End +F:Microsoft.CodeAnalysis.OperationKind.EventAssignment +F:Microsoft.CodeAnalysis.OperationKind.EventReference +F:Microsoft.CodeAnalysis.OperationKind.ExpressionStatement +F:Microsoft.CodeAnalysis.OperationKind.FieldInitializer +F:Microsoft.CodeAnalysis.OperationKind.FieldReference +F:Microsoft.CodeAnalysis.OperationKind.FlowAnonymousFunction +F:Microsoft.CodeAnalysis.OperationKind.FlowCapture +F:Microsoft.CodeAnalysis.OperationKind.FlowCaptureReference +F:Microsoft.CodeAnalysis.OperationKind.FunctionPointerInvocation +F:Microsoft.CodeAnalysis.OperationKind.ImplicitIndexerReference +F:Microsoft.CodeAnalysis.OperationKind.Increment +F:Microsoft.CodeAnalysis.OperationKind.InlineArrayAccess +F:Microsoft.CodeAnalysis.OperationKind.InstanceReference +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedString +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringAddition +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringAppendFormatted +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringAppendInvalid +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringAppendLiteral +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringHandlerArgumentPlaceholder +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringHandlerCreation +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringText +F:Microsoft.CodeAnalysis.OperationKind.Interpolation +F:Microsoft.CodeAnalysis.OperationKind.Invalid +F:Microsoft.CodeAnalysis.OperationKind.Invocation +F:Microsoft.CodeAnalysis.OperationKind.IsNull +F:Microsoft.CodeAnalysis.OperationKind.IsPattern +F:Microsoft.CodeAnalysis.OperationKind.IsType +F:Microsoft.CodeAnalysis.OperationKind.Labeled +F:Microsoft.CodeAnalysis.OperationKind.ListPattern +F:Microsoft.CodeAnalysis.OperationKind.Literal +F:Microsoft.CodeAnalysis.OperationKind.LocalFunction +F:Microsoft.CodeAnalysis.OperationKind.LocalReference +F:Microsoft.CodeAnalysis.OperationKind.Lock +F:Microsoft.CodeAnalysis.OperationKind.Loop +F:Microsoft.CodeAnalysis.OperationKind.MemberInitializer +F:Microsoft.CodeAnalysis.OperationKind.MethodBody +F:Microsoft.CodeAnalysis.OperationKind.MethodBodyOperation +F:Microsoft.CodeAnalysis.OperationKind.MethodReference +F:Microsoft.CodeAnalysis.OperationKind.NameOf +F:Microsoft.CodeAnalysis.OperationKind.NegatedPattern +F:Microsoft.CodeAnalysis.OperationKind.None +F:Microsoft.CodeAnalysis.OperationKind.ObjectCreation +F:Microsoft.CodeAnalysis.OperationKind.ObjectOrCollectionInitializer +F:Microsoft.CodeAnalysis.OperationKind.OmittedArgument +F:Microsoft.CodeAnalysis.OperationKind.ParameterInitializer +F:Microsoft.CodeAnalysis.OperationKind.ParameterReference +F:Microsoft.CodeAnalysis.OperationKind.Parenthesized +F:Microsoft.CodeAnalysis.OperationKind.PropertyInitializer +F:Microsoft.CodeAnalysis.OperationKind.PropertyReference +F:Microsoft.CodeAnalysis.OperationKind.PropertySubpattern +F:Microsoft.CodeAnalysis.OperationKind.RaiseEvent +F:Microsoft.CodeAnalysis.OperationKind.Range +F:Microsoft.CodeAnalysis.OperationKind.ReDim +F:Microsoft.CodeAnalysis.OperationKind.ReDimClause +F:Microsoft.CodeAnalysis.OperationKind.RecursivePattern +F:Microsoft.CodeAnalysis.OperationKind.RelationalPattern +F:Microsoft.CodeAnalysis.OperationKind.Return +F:Microsoft.CodeAnalysis.OperationKind.SimpleAssignment +F:Microsoft.CodeAnalysis.OperationKind.SizeOf +F:Microsoft.CodeAnalysis.OperationKind.SlicePattern +F:Microsoft.CodeAnalysis.OperationKind.Spread +F:Microsoft.CodeAnalysis.OperationKind.StaticLocalInitializationSemaphore +F:Microsoft.CodeAnalysis.OperationKind.Stop +F:Microsoft.CodeAnalysis.OperationKind.Switch +F:Microsoft.CodeAnalysis.OperationKind.SwitchCase +F:Microsoft.CodeAnalysis.OperationKind.SwitchExpression +F:Microsoft.CodeAnalysis.OperationKind.SwitchExpressionArm +F:Microsoft.CodeAnalysis.OperationKind.Throw +F:Microsoft.CodeAnalysis.OperationKind.TranslatedQuery +F:Microsoft.CodeAnalysis.OperationKind.Try +F:Microsoft.CodeAnalysis.OperationKind.Tuple +F:Microsoft.CodeAnalysis.OperationKind.TupleBinary +F:Microsoft.CodeAnalysis.OperationKind.TupleBinaryOperator +F:Microsoft.CodeAnalysis.OperationKind.TypeOf +F:Microsoft.CodeAnalysis.OperationKind.TypeParameterObjectCreation +F:Microsoft.CodeAnalysis.OperationKind.TypePattern +F:Microsoft.CodeAnalysis.OperationKind.Unary +F:Microsoft.CodeAnalysis.OperationKind.UnaryOperator +F:Microsoft.CodeAnalysis.OperationKind.Using +F:Microsoft.CodeAnalysis.OperationKind.UsingDeclaration +F:Microsoft.CodeAnalysis.OperationKind.Utf8String +F:Microsoft.CodeAnalysis.OperationKind.VariableDeclaration +F:Microsoft.CodeAnalysis.OperationKind.VariableDeclarationGroup +F:Microsoft.CodeAnalysis.OperationKind.VariableDeclarator +F:Microsoft.CodeAnalysis.OperationKind.VariableInitializer +F:Microsoft.CodeAnalysis.OperationKind.With +F:Microsoft.CodeAnalysis.OperationKind.YieldBreak +F:Microsoft.CodeAnalysis.OperationKind.YieldReturn +F:Microsoft.CodeAnalysis.OperationKind.value__ +T:Microsoft.CodeAnalysis.Operations.ArgumentKind +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.DefaultValue +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.Explicit +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.None +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.ParamArray +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.ParamCollection +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.value__ +T:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Add +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.And +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Concatenate +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.ConditionalAnd +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.ConditionalOr +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Divide +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Equals +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.ExclusiveOr +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.GreaterThan +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.GreaterThanOrEqual +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.IntegerDivide +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.LeftShift +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.LessThan +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.LessThanOrEqual +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Like +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Multiply +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.None +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.NotEquals +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.ObjectValueEquals +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.ObjectValueNotEquals +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Or +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Power +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Remainder +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.RightShift +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Subtract +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.UnsignedRightShift +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.value__ +T:Microsoft.CodeAnalysis.Operations.BranchKind +F:Microsoft.CodeAnalysis.Operations.BranchKind.Break +F:Microsoft.CodeAnalysis.Operations.BranchKind.Continue +F:Microsoft.CodeAnalysis.Operations.BranchKind.GoTo +F:Microsoft.CodeAnalysis.Operations.BranchKind.None +F:Microsoft.CodeAnalysis.Operations.BranchKind.value__ +T:Microsoft.CodeAnalysis.Operations.CaseKind +F:Microsoft.CodeAnalysis.Operations.CaseKind.Default +F:Microsoft.CodeAnalysis.Operations.CaseKind.None +F:Microsoft.CodeAnalysis.Operations.CaseKind.Pattern +F:Microsoft.CodeAnalysis.Operations.CaseKind.Range +F:Microsoft.CodeAnalysis.Operations.CaseKind.Relational +F:Microsoft.CodeAnalysis.Operations.CaseKind.SingleValue +F:Microsoft.CodeAnalysis.Operations.CaseKind.value__ +T:Microsoft.CodeAnalysis.Operations.CommonConversion +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_Exists +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsIdentity +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsImplicit +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsNullable +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsNumeric +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsReference +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsUserDefined +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_MethodSymbol +T:Microsoft.CodeAnalysis.Operations.IAddressOfOperation +M:Microsoft.CodeAnalysis.Operations.IAddressOfOperation.get_Reference +T:Microsoft.CodeAnalysis.Operations.IAnonymousFunctionOperation +M:Microsoft.CodeAnalysis.Operations.IAnonymousFunctionOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.IAnonymousFunctionOperation.get_Symbol +T:Microsoft.CodeAnalysis.Operations.IAnonymousObjectCreationOperation +M:Microsoft.CodeAnalysis.Operations.IAnonymousObjectCreationOperation.get_Initializers +T:Microsoft.CodeAnalysis.Operations.IArgumentOperation +M:Microsoft.CodeAnalysis.Operations.IArgumentOperation.get_ArgumentKind +M:Microsoft.CodeAnalysis.Operations.IArgumentOperation.get_InConversion +M:Microsoft.CodeAnalysis.Operations.IArgumentOperation.get_OutConversion +M:Microsoft.CodeAnalysis.Operations.IArgumentOperation.get_Parameter +M:Microsoft.CodeAnalysis.Operations.IArgumentOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.IArrayCreationOperation +M:Microsoft.CodeAnalysis.Operations.IArrayCreationOperation.get_DimensionSizes +M:Microsoft.CodeAnalysis.Operations.IArrayCreationOperation.get_Initializer +T:Microsoft.CodeAnalysis.Operations.IArrayElementReferenceOperation +M:Microsoft.CodeAnalysis.Operations.IArrayElementReferenceOperation.get_ArrayReference +M:Microsoft.CodeAnalysis.Operations.IArrayElementReferenceOperation.get_Indices +T:Microsoft.CodeAnalysis.Operations.IArrayInitializerOperation +M:Microsoft.CodeAnalysis.Operations.IArrayInitializerOperation.get_ElementValues +T:Microsoft.CodeAnalysis.Operations.IAssignmentOperation +M:Microsoft.CodeAnalysis.Operations.IAssignmentOperation.get_Target +M:Microsoft.CodeAnalysis.Operations.IAssignmentOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.IAttributeOperation +M:Microsoft.CodeAnalysis.Operations.IAttributeOperation.get_Operation +T:Microsoft.CodeAnalysis.Operations.IAwaitOperation +M:Microsoft.CodeAnalysis.Operations.IAwaitOperation.get_Operation +T:Microsoft.CodeAnalysis.Operations.IBinaryOperation +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_IsCompareText +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_IsLifted +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_LeftOperand +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_OperatorMethod +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_RightOperand +T:Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation +M:Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation.get_LeftPattern +M:Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation.get_RightPattern +T:Microsoft.CodeAnalysis.Operations.IBlockOperation +M:Microsoft.CodeAnalysis.Operations.IBlockOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.IBlockOperation.get_Operations +T:Microsoft.CodeAnalysis.Operations.IBranchOperation +M:Microsoft.CodeAnalysis.Operations.IBranchOperation.get_BranchKind +M:Microsoft.CodeAnalysis.Operations.IBranchOperation.get_Target +T:Microsoft.CodeAnalysis.Operations.ICaseClauseOperation +M:Microsoft.CodeAnalysis.Operations.ICaseClauseOperation.get_CaseKind +M:Microsoft.CodeAnalysis.Operations.ICaseClauseOperation.get_Label +T:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation +M:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation.get_ExceptionDeclarationOrExpression +M:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation.get_ExceptionType +M:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation.get_Filter +M:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation.get_Handler +M:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation.get_Locals +T:Microsoft.CodeAnalysis.Operations.ICoalesceAssignmentOperation +T:Microsoft.CodeAnalysis.Operations.ICoalesceOperation +M:Microsoft.CodeAnalysis.Operations.ICoalesceOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.ICoalesceOperation.get_ValueConversion +M:Microsoft.CodeAnalysis.Operations.ICoalesceOperation.get_WhenNull +T:Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation +M:Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation.get_AddMethod +M:Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation.get_IsDynamic +T:Microsoft.CodeAnalysis.Operations.ICollectionExpressionOperation +M:Microsoft.CodeAnalysis.Operations.ICollectionExpressionOperation.get_ConstructMethod +M:Microsoft.CodeAnalysis.Operations.ICollectionExpressionOperation.get_Elements +T:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_InConversion +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_IsLifted +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_OperatorMethod +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_OutConversion +T:Microsoft.CodeAnalysis.Operations.IConditionalAccessInstanceOperation +T:Microsoft.CodeAnalysis.Operations.IConditionalAccessOperation +M:Microsoft.CodeAnalysis.Operations.IConditionalAccessOperation.get_Operation +M:Microsoft.CodeAnalysis.Operations.IConditionalAccessOperation.get_WhenNotNull +T:Microsoft.CodeAnalysis.Operations.IConditionalOperation +M:Microsoft.CodeAnalysis.Operations.IConditionalOperation.get_Condition +M:Microsoft.CodeAnalysis.Operations.IConditionalOperation.get_IsRef +M:Microsoft.CodeAnalysis.Operations.IConditionalOperation.get_WhenFalse +M:Microsoft.CodeAnalysis.Operations.IConditionalOperation.get_WhenTrue +T:Microsoft.CodeAnalysis.Operations.IConstantPatternOperation +M:Microsoft.CodeAnalysis.Operations.IConstantPatternOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation +M:Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation.get_Locals +T:Microsoft.CodeAnalysis.Operations.IConversionOperation +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_Conversion +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_IsTryCast +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_Operand +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_OperatorMethod +T:Microsoft.CodeAnalysis.Operations.IDeclarationExpressionOperation +M:Microsoft.CodeAnalysis.Operations.IDeclarationExpressionOperation.get_Expression +T:Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation +M:Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation.get_DeclaredSymbol +M:Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation.get_MatchedType +M:Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation.get_MatchesNull +T:Microsoft.CodeAnalysis.Operations.IDeconstructionAssignmentOperation +T:Microsoft.CodeAnalysis.Operations.IDefaultCaseClauseOperation +T:Microsoft.CodeAnalysis.Operations.IDefaultValueOperation +T:Microsoft.CodeAnalysis.Operations.IDelegateCreationOperation +M:Microsoft.CodeAnalysis.Operations.IDelegateCreationOperation.get_Target +T:Microsoft.CodeAnalysis.Operations.IDiscardOperation +M:Microsoft.CodeAnalysis.Operations.IDiscardOperation.get_DiscardSymbol +T:Microsoft.CodeAnalysis.Operations.IDiscardPatternOperation +T:Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation +M:Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation.get_Operation +T:Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation +M:Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation.get_Operation +T:Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation +M:Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation.get_ContainingType +M:Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation.get_Instance +M:Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation.get_MemberName +M:Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation.get_TypeArguments +T:Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation +M:Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation.get_Initializer +T:Microsoft.CodeAnalysis.Operations.IEmptyOperation +T:Microsoft.CodeAnalysis.Operations.IEndOperation +T:Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation +M:Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation.get_Adds +M:Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation.get_EventReference +M:Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation.get_HandlerValue +T:Microsoft.CodeAnalysis.Operations.IEventReferenceOperation +M:Microsoft.CodeAnalysis.Operations.IEventReferenceOperation.get_Event +T:Microsoft.CodeAnalysis.Operations.IExpressionStatementOperation +M:Microsoft.CodeAnalysis.Operations.IExpressionStatementOperation.get_Operation +T:Microsoft.CodeAnalysis.Operations.IFieldInitializerOperation +M:Microsoft.CodeAnalysis.Operations.IFieldInitializerOperation.get_InitializedFields +T:Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation +M:Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation.get_Field +M:Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation.get_IsDeclaration +T:Microsoft.CodeAnalysis.Operations.IForEachLoopOperation +M:Microsoft.CodeAnalysis.Operations.IForEachLoopOperation.get_Collection +M:Microsoft.CodeAnalysis.Operations.IForEachLoopOperation.get_IsAsynchronous +M:Microsoft.CodeAnalysis.Operations.IForEachLoopOperation.get_LoopControlVariable +M:Microsoft.CodeAnalysis.Operations.IForEachLoopOperation.get_NextVariables +T:Microsoft.CodeAnalysis.Operations.IForLoopOperation +M:Microsoft.CodeAnalysis.Operations.IForLoopOperation.get_AtLoopBottom +M:Microsoft.CodeAnalysis.Operations.IForLoopOperation.get_Before +M:Microsoft.CodeAnalysis.Operations.IForLoopOperation.get_Condition +M:Microsoft.CodeAnalysis.Operations.IForLoopOperation.get_ConditionLocals +T:Microsoft.CodeAnalysis.Operations.IForToLoopOperation +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_InitialValue +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_LimitValue +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_LoopControlVariable +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_NextVariables +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_StepValue +T:Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation +M:Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation.get_Target +T:Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation +M:Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation.get_Argument +M:Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation.get_IndexerSymbol +M:Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation.get_Instance +M:Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation.get_LengthSymbol +T:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_IsLifted +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_IsPostfix +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_OperatorMethod +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_Target +T:Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation +M:Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation.get_Argument +M:Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation.get_Instance +T:Microsoft.CodeAnalysis.Operations.IInstanceReferenceOperation +M:Microsoft.CodeAnalysis.Operations.IInstanceReferenceOperation.get_ReferenceKind +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringAdditionOperation +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringAdditionOperation.get_Left +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringAdditionOperation.get_Right +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringAppendOperation +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringAppendOperation.get_AppendCall +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringContentOperation +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerArgumentPlaceholderOperation +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerArgumentPlaceholderOperation.get_ArgumentIndex +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerArgumentPlaceholderOperation.get_PlaceholderKind +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation.get_Content +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation.get_HandlerAppendCallsReturnBool +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation.get_HandlerCreation +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation.get_HandlerCreationHasSuccessParameter +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringOperation +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringOperation.get_Parts +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringTextOperation +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringTextOperation.get_Text +T:Microsoft.CodeAnalysis.Operations.IInterpolationOperation +M:Microsoft.CodeAnalysis.Operations.IInterpolationOperation.get_Alignment +M:Microsoft.CodeAnalysis.Operations.IInterpolationOperation.get_Expression +M:Microsoft.CodeAnalysis.Operations.IInterpolationOperation.get_FormatString +T:Microsoft.CodeAnalysis.Operations.IInvalidOperation +T:Microsoft.CodeAnalysis.Operations.IInvocationOperation +M:Microsoft.CodeAnalysis.Operations.IInvocationOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IInvocationOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IInvocationOperation.get_Instance +M:Microsoft.CodeAnalysis.Operations.IInvocationOperation.get_IsVirtual +M:Microsoft.CodeAnalysis.Operations.IInvocationOperation.get_TargetMethod +T:Microsoft.CodeAnalysis.Operations.IIsPatternOperation +M:Microsoft.CodeAnalysis.Operations.IIsPatternOperation.get_Pattern +M:Microsoft.CodeAnalysis.Operations.IIsPatternOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.IIsTypeOperation +M:Microsoft.CodeAnalysis.Operations.IIsTypeOperation.get_IsNegated +M:Microsoft.CodeAnalysis.Operations.IIsTypeOperation.get_TypeOperand +M:Microsoft.CodeAnalysis.Operations.IIsTypeOperation.get_ValueOperand +T:Microsoft.CodeAnalysis.Operations.ILabeledOperation +M:Microsoft.CodeAnalysis.Operations.ILabeledOperation.get_Label +M:Microsoft.CodeAnalysis.Operations.ILabeledOperation.get_Operation +T:Microsoft.CodeAnalysis.Operations.IListPatternOperation +M:Microsoft.CodeAnalysis.Operations.IListPatternOperation.get_DeclaredSymbol +M:Microsoft.CodeAnalysis.Operations.IListPatternOperation.get_IndexerSymbol +M:Microsoft.CodeAnalysis.Operations.IListPatternOperation.get_LengthSymbol +M:Microsoft.CodeAnalysis.Operations.IListPatternOperation.get_Patterns +T:Microsoft.CodeAnalysis.Operations.ILiteralOperation +T:Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation +M:Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation.get_IgnoredBody +M:Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation.get_Symbol +T:Microsoft.CodeAnalysis.Operations.ILocalReferenceOperation +M:Microsoft.CodeAnalysis.Operations.ILocalReferenceOperation.get_IsDeclaration +M:Microsoft.CodeAnalysis.Operations.ILocalReferenceOperation.get_Local +T:Microsoft.CodeAnalysis.Operations.ILockOperation +M:Microsoft.CodeAnalysis.Operations.ILockOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.ILockOperation.get_LockedValue +T:Microsoft.CodeAnalysis.Operations.ILoopOperation +M:Microsoft.CodeAnalysis.Operations.ILoopOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.ILoopOperation.get_ContinueLabel +M:Microsoft.CodeAnalysis.Operations.ILoopOperation.get_ExitLabel +M:Microsoft.CodeAnalysis.Operations.ILoopOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.ILoopOperation.get_LoopKind +T:Microsoft.CodeAnalysis.Operations.IMemberInitializerOperation +M:Microsoft.CodeAnalysis.Operations.IMemberInitializerOperation.get_InitializedMember +M:Microsoft.CodeAnalysis.Operations.IMemberInitializerOperation.get_Initializer +T:Microsoft.CodeAnalysis.Operations.IMemberReferenceOperation +M:Microsoft.CodeAnalysis.Operations.IMemberReferenceOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IMemberReferenceOperation.get_Instance +M:Microsoft.CodeAnalysis.Operations.IMemberReferenceOperation.get_Member +T:Microsoft.CodeAnalysis.Operations.IMethodBodyBaseOperation +M:Microsoft.CodeAnalysis.Operations.IMethodBodyBaseOperation.get_BlockBody +M:Microsoft.CodeAnalysis.Operations.IMethodBodyBaseOperation.get_ExpressionBody +T:Microsoft.CodeAnalysis.Operations.IMethodBodyOperation +T:Microsoft.CodeAnalysis.Operations.IMethodReferenceOperation +M:Microsoft.CodeAnalysis.Operations.IMethodReferenceOperation.get_IsVirtual +M:Microsoft.CodeAnalysis.Operations.IMethodReferenceOperation.get_Method +T:Microsoft.CodeAnalysis.Operations.INameOfOperation +M:Microsoft.CodeAnalysis.Operations.INameOfOperation.get_Argument +T:Microsoft.CodeAnalysis.Operations.INegatedPatternOperation +M:Microsoft.CodeAnalysis.Operations.INegatedPatternOperation.get_Pattern +T:Microsoft.CodeAnalysis.Operations.IObjectCreationOperation +M:Microsoft.CodeAnalysis.Operations.IObjectCreationOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IObjectCreationOperation.get_Constructor +M:Microsoft.CodeAnalysis.Operations.IObjectCreationOperation.get_Initializer +T:Microsoft.CodeAnalysis.Operations.IObjectOrCollectionInitializerOperation +M:Microsoft.CodeAnalysis.Operations.IObjectOrCollectionInitializerOperation.get_Initializers +T:Microsoft.CodeAnalysis.Operations.IOmittedArgumentOperation +T:Microsoft.CodeAnalysis.Operations.IParameterInitializerOperation +M:Microsoft.CodeAnalysis.Operations.IParameterInitializerOperation.get_Parameter +T:Microsoft.CodeAnalysis.Operations.IParameterReferenceOperation +M:Microsoft.CodeAnalysis.Operations.IParameterReferenceOperation.get_Parameter +T:Microsoft.CodeAnalysis.Operations.IParenthesizedOperation +M:Microsoft.CodeAnalysis.Operations.IParenthesizedOperation.get_Operand +T:Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation +M:Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation.get_Guard +M:Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation.get_Label +M:Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation.get_Pattern +T:Microsoft.CodeAnalysis.Operations.IPatternOperation +M:Microsoft.CodeAnalysis.Operations.IPatternOperation.get_InputType +M:Microsoft.CodeAnalysis.Operations.IPatternOperation.get_NarrowedType +T:Microsoft.CodeAnalysis.Operations.IPropertyInitializerOperation +M:Microsoft.CodeAnalysis.Operations.IPropertyInitializerOperation.get_InitializedProperties +T:Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation +M:Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation.get_Property +T:Microsoft.CodeAnalysis.Operations.IPropertySubpatternOperation +M:Microsoft.CodeAnalysis.Operations.IPropertySubpatternOperation.get_Member +M:Microsoft.CodeAnalysis.Operations.IPropertySubpatternOperation.get_Pattern +T:Microsoft.CodeAnalysis.Operations.IRaiseEventOperation +M:Microsoft.CodeAnalysis.Operations.IRaiseEventOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IRaiseEventOperation.get_EventReference +T:Microsoft.CodeAnalysis.Operations.IRangeCaseClauseOperation +M:Microsoft.CodeAnalysis.Operations.IRangeCaseClauseOperation.get_MaximumValue +M:Microsoft.CodeAnalysis.Operations.IRangeCaseClauseOperation.get_MinimumValue +T:Microsoft.CodeAnalysis.Operations.IRangeOperation +M:Microsoft.CodeAnalysis.Operations.IRangeOperation.get_IsLifted +M:Microsoft.CodeAnalysis.Operations.IRangeOperation.get_LeftOperand +M:Microsoft.CodeAnalysis.Operations.IRangeOperation.get_Method +M:Microsoft.CodeAnalysis.Operations.IRangeOperation.get_RightOperand +T:Microsoft.CodeAnalysis.Operations.IReDimClauseOperation +M:Microsoft.CodeAnalysis.Operations.IReDimClauseOperation.get_DimensionSizes +M:Microsoft.CodeAnalysis.Operations.IReDimClauseOperation.get_Operand +T:Microsoft.CodeAnalysis.Operations.IReDimOperation +M:Microsoft.CodeAnalysis.Operations.IReDimOperation.get_Clauses +M:Microsoft.CodeAnalysis.Operations.IReDimOperation.get_Preserve +T:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation +M:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation.get_DeclaredSymbol +M:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation.get_DeconstructSymbol +M:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation.get_DeconstructionSubpatterns +M:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation.get_MatchedType +M:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation.get_PropertySubpatterns +T:Microsoft.CodeAnalysis.Operations.IRelationalCaseClauseOperation +M:Microsoft.CodeAnalysis.Operations.IRelationalCaseClauseOperation.get_Relation +M:Microsoft.CodeAnalysis.Operations.IRelationalCaseClauseOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.IRelationalPatternOperation +M:Microsoft.CodeAnalysis.Operations.IRelationalPatternOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.IRelationalPatternOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.IReturnOperation +M:Microsoft.CodeAnalysis.Operations.IReturnOperation.get_ReturnedValue +T:Microsoft.CodeAnalysis.Operations.ISimpleAssignmentOperation +M:Microsoft.CodeAnalysis.Operations.ISimpleAssignmentOperation.get_IsRef +T:Microsoft.CodeAnalysis.Operations.ISingleValueCaseClauseOperation +M:Microsoft.CodeAnalysis.Operations.ISingleValueCaseClauseOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.ISizeOfOperation +M:Microsoft.CodeAnalysis.Operations.ISizeOfOperation.get_TypeOperand +T:Microsoft.CodeAnalysis.Operations.ISlicePatternOperation +M:Microsoft.CodeAnalysis.Operations.ISlicePatternOperation.get_Pattern +M:Microsoft.CodeAnalysis.Operations.ISlicePatternOperation.get_SliceSymbol +T:Microsoft.CodeAnalysis.Operations.ISpreadOperation +M:Microsoft.CodeAnalysis.Operations.ISpreadOperation.get_ElementConversion +M:Microsoft.CodeAnalysis.Operations.ISpreadOperation.get_ElementType +M:Microsoft.CodeAnalysis.Operations.ISpreadOperation.get_Operand +T:Microsoft.CodeAnalysis.Operations.IStopOperation +T:Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation +M:Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation.get_Clauses +M:Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation.get_Locals +T:Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation.get_Guard +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation.get_Pattern +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation.get_Arms +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation.get_IsExhaustive +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.ISwitchOperation +M:Microsoft.CodeAnalysis.Operations.ISwitchOperation.get_Cases +M:Microsoft.CodeAnalysis.Operations.ISwitchOperation.get_ExitLabel +M:Microsoft.CodeAnalysis.Operations.ISwitchOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.ISwitchOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.ISymbolInitializerOperation +M:Microsoft.CodeAnalysis.Operations.ISymbolInitializerOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.ISymbolInitializerOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.IThrowOperation +M:Microsoft.CodeAnalysis.Operations.IThrowOperation.get_Exception +T:Microsoft.CodeAnalysis.Operations.ITranslatedQueryOperation +M:Microsoft.CodeAnalysis.Operations.ITranslatedQueryOperation.get_Operation +T:Microsoft.CodeAnalysis.Operations.ITryOperation +M:Microsoft.CodeAnalysis.Operations.ITryOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.ITryOperation.get_Catches +M:Microsoft.CodeAnalysis.Operations.ITryOperation.get_ExitLabel +M:Microsoft.CodeAnalysis.Operations.ITryOperation.get_Finally +T:Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation +M:Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation.get_LeftOperand +M:Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation.get_RightOperand +T:Microsoft.CodeAnalysis.Operations.ITupleOperation +M:Microsoft.CodeAnalysis.Operations.ITupleOperation.get_Elements +M:Microsoft.CodeAnalysis.Operations.ITupleOperation.get_NaturalType +T:Microsoft.CodeAnalysis.Operations.ITypeOfOperation +M:Microsoft.CodeAnalysis.Operations.ITypeOfOperation.get_TypeOperand +T:Microsoft.CodeAnalysis.Operations.ITypeParameterObjectCreationOperation +M:Microsoft.CodeAnalysis.Operations.ITypeParameterObjectCreationOperation.get_Initializer +T:Microsoft.CodeAnalysis.Operations.ITypePatternOperation +M:Microsoft.CodeAnalysis.Operations.ITypePatternOperation.get_MatchedType +T:Microsoft.CodeAnalysis.Operations.IUnaryOperation +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_IsLifted +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_Operand +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_OperatorMethod +T:Microsoft.CodeAnalysis.Operations.IUsingDeclarationOperation +M:Microsoft.CodeAnalysis.Operations.IUsingDeclarationOperation.get_DeclarationGroup +M:Microsoft.CodeAnalysis.Operations.IUsingDeclarationOperation.get_IsAsynchronous +T:Microsoft.CodeAnalysis.Operations.IUsingOperation +M:Microsoft.CodeAnalysis.Operations.IUsingOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.IUsingOperation.get_IsAsynchronous +M:Microsoft.CodeAnalysis.Operations.IUsingOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.IUsingOperation.get_Resources +T:Microsoft.CodeAnalysis.Operations.IUtf8StringOperation +M:Microsoft.CodeAnalysis.Operations.IUtf8StringOperation.get_Value +T:Microsoft.CodeAnalysis.Operations.IVariableDeclarationGroupOperation +M:Microsoft.CodeAnalysis.Operations.IVariableDeclarationGroupOperation.get_Declarations +T:Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation +M:Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation.get_Declarators +M:Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation.get_IgnoredDimensions +M:Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation.get_Initializer +T:Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation +M:Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation.get_IgnoredArguments +M:Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation.get_Symbol +T:Microsoft.CodeAnalysis.Operations.IVariableInitializerOperation +T:Microsoft.CodeAnalysis.Operations.IWhileLoopOperation +M:Microsoft.CodeAnalysis.Operations.IWhileLoopOperation.get_Condition +M:Microsoft.CodeAnalysis.Operations.IWhileLoopOperation.get_ConditionIsTop +M:Microsoft.CodeAnalysis.Operations.IWhileLoopOperation.get_ConditionIsUntil +M:Microsoft.CodeAnalysis.Operations.IWhileLoopOperation.get_IgnoredCondition +T:Microsoft.CodeAnalysis.Operations.IWithOperation +M:Microsoft.CodeAnalysis.Operations.IWithOperation.get_CloneMethod +M:Microsoft.CodeAnalysis.Operations.IWithOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IWithOperation.get_Operand +T:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind +F:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind.ContainingTypeInstance +F:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind.ImplicitReceiver +F:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind.InterpolatedStringHandler +F:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind.PatternInput +F:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind.value__ +T:Microsoft.CodeAnalysis.Operations.InterpolatedStringArgumentPlaceholderKind +F:Microsoft.CodeAnalysis.Operations.InterpolatedStringArgumentPlaceholderKind.CallsiteArgument +F:Microsoft.CodeAnalysis.Operations.InterpolatedStringArgumentPlaceholderKind.CallsiteReceiver +F:Microsoft.CodeAnalysis.Operations.InterpolatedStringArgumentPlaceholderKind.TrailingValidityArgument +F:Microsoft.CodeAnalysis.Operations.InterpolatedStringArgumentPlaceholderKind.value__ +T:Microsoft.CodeAnalysis.Operations.LoopKind +F:Microsoft.CodeAnalysis.Operations.LoopKind.For +F:Microsoft.CodeAnalysis.Operations.LoopKind.ForEach +F:Microsoft.CodeAnalysis.Operations.LoopKind.ForTo +F:Microsoft.CodeAnalysis.Operations.LoopKind.None +F:Microsoft.CodeAnalysis.Operations.LoopKind.While +F:Microsoft.CodeAnalysis.Operations.LoopKind.value__ +T:Microsoft.CodeAnalysis.Operations.OperationExtensions +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.Descendants(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.DescendantsAndSelf(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentName(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentName(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentName(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentRefKind(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentRefKind(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentRefKind(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetCorrespondingOperation(Microsoft.CodeAnalysis.Operations.IBranchOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetDeclaredVariables(Microsoft.CodeAnalysis.Operations.IVariableDeclarationGroupOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetDeclaredVariables(Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetFunctionPointerSignature(Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetVariableInitializer(Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation) +T:Microsoft.CodeAnalysis.Operations.OperationVisitor +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.#ctor +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.DefaultVisit(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.Visit(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitAddressOf(Microsoft.CodeAnalysis.Operations.IAddressOfOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitAnonymousFunction(Microsoft.CodeAnalysis.Operations.IAnonymousFunctionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitAnonymousObjectCreation(Microsoft.CodeAnalysis.Operations.IAnonymousObjectCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitArgument(Microsoft.CodeAnalysis.Operations.IArgumentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitArrayCreation(Microsoft.CodeAnalysis.Operations.IArrayCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitArrayElementReference(Microsoft.CodeAnalysis.Operations.IArrayElementReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitArrayInitializer(Microsoft.CodeAnalysis.Operations.IArrayInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitAttribute(Microsoft.CodeAnalysis.Operations.IAttributeOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitAwait(Microsoft.CodeAnalysis.Operations.IAwaitOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitBinaryOperator(Microsoft.CodeAnalysis.Operations.IBinaryOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitBinaryPattern(Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitBlock(Microsoft.CodeAnalysis.Operations.IBlockOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitBranch(Microsoft.CodeAnalysis.Operations.IBranchOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCatchClause(Microsoft.CodeAnalysis.Operations.ICatchClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCaughtException(Microsoft.CodeAnalysis.FlowAnalysis.ICaughtExceptionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCoalesce(Microsoft.CodeAnalysis.Operations.ICoalesceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCoalesceAssignment(Microsoft.CodeAnalysis.Operations.ICoalesceAssignmentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCollectionElementInitializer(Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCollectionExpression(Microsoft.CodeAnalysis.Operations.ICollectionExpressionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCompoundAssignment(Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConditional(Microsoft.CodeAnalysis.Operations.IConditionalOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConditionalAccess(Microsoft.CodeAnalysis.Operations.IConditionalAccessOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConditionalAccessInstance(Microsoft.CodeAnalysis.Operations.IConditionalAccessInstanceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConstantPattern(Microsoft.CodeAnalysis.Operations.IConstantPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConstructorBodyOperation(Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConversion(Microsoft.CodeAnalysis.Operations.IConversionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDeclarationExpression(Microsoft.CodeAnalysis.Operations.IDeclarationExpressionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDeclarationPattern(Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDeconstructionAssignment(Microsoft.CodeAnalysis.Operations.IDeconstructionAssignmentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDefaultCaseClause(Microsoft.CodeAnalysis.Operations.IDefaultCaseClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDefaultValue(Microsoft.CodeAnalysis.Operations.IDefaultValueOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDelegateCreation(Microsoft.CodeAnalysis.Operations.IDelegateCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDiscardOperation(Microsoft.CodeAnalysis.Operations.IDiscardOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDiscardPattern(Microsoft.CodeAnalysis.Operations.IDiscardPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDynamicIndexerAccess(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDynamicInvocation(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDynamicMemberReference(Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDynamicObjectCreation(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitEmpty(Microsoft.CodeAnalysis.Operations.IEmptyOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitEnd(Microsoft.CodeAnalysis.Operations.IEndOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitEventAssignment(Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitEventReference(Microsoft.CodeAnalysis.Operations.IEventReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitExpressionStatement(Microsoft.CodeAnalysis.Operations.IExpressionStatementOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFieldInitializer(Microsoft.CodeAnalysis.Operations.IFieldInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFieldReference(Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFlowAnonymousFunction(Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFlowCapture(Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFlowCaptureReference(Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitForEachLoop(Microsoft.CodeAnalysis.Operations.IForEachLoopOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitForLoop(Microsoft.CodeAnalysis.Operations.IForLoopOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitForToLoop(Microsoft.CodeAnalysis.Operations.IForToLoopOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFunctionPointerInvocation(Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitImplicitIndexerReference(Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitIncrementOrDecrement(Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInlineArrayAccess(Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInstanceReference(Microsoft.CodeAnalysis.Operations.IInstanceReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedString(Microsoft.CodeAnalysis.Operations.IInterpolatedStringOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedStringAddition(Microsoft.CodeAnalysis.Operations.IInterpolatedStringAdditionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedStringAppend(Microsoft.CodeAnalysis.Operations.IInterpolatedStringAppendOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedStringHandlerArgumentPlaceholder(Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerArgumentPlaceholderOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedStringHandlerCreation(Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedStringText(Microsoft.CodeAnalysis.Operations.IInterpolatedStringTextOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolation(Microsoft.CodeAnalysis.Operations.IInterpolationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInvalid(Microsoft.CodeAnalysis.Operations.IInvalidOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInvocation(Microsoft.CodeAnalysis.Operations.IInvocationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitIsNull(Microsoft.CodeAnalysis.FlowAnalysis.IIsNullOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitIsPattern(Microsoft.CodeAnalysis.Operations.IIsPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitIsType(Microsoft.CodeAnalysis.Operations.IIsTypeOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitLabeled(Microsoft.CodeAnalysis.Operations.ILabeledOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitListPattern(Microsoft.CodeAnalysis.Operations.IListPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitLiteral(Microsoft.CodeAnalysis.Operations.ILiteralOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitLocalFunction(Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitLocalReference(Microsoft.CodeAnalysis.Operations.ILocalReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitLock(Microsoft.CodeAnalysis.Operations.ILockOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitMemberInitializer(Microsoft.CodeAnalysis.Operations.IMemberInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitMethodBodyOperation(Microsoft.CodeAnalysis.Operations.IMethodBodyOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitMethodReference(Microsoft.CodeAnalysis.Operations.IMethodReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitNameOf(Microsoft.CodeAnalysis.Operations.INameOfOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitNegatedPattern(Microsoft.CodeAnalysis.Operations.INegatedPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitObjectCreation(Microsoft.CodeAnalysis.Operations.IObjectCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitObjectOrCollectionInitializer(Microsoft.CodeAnalysis.Operations.IObjectOrCollectionInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitOmittedArgument(Microsoft.CodeAnalysis.Operations.IOmittedArgumentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitParameterInitializer(Microsoft.CodeAnalysis.Operations.IParameterInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitParameterReference(Microsoft.CodeAnalysis.Operations.IParameterReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitParenthesized(Microsoft.CodeAnalysis.Operations.IParenthesizedOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitPatternCaseClause(Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitPropertyInitializer(Microsoft.CodeAnalysis.Operations.IPropertyInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitPropertyReference(Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitPropertySubpattern(Microsoft.CodeAnalysis.Operations.IPropertySubpatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRaiseEvent(Microsoft.CodeAnalysis.Operations.IRaiseEventOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRangeCaseClause(Microsoft.CodeAnalysis.Operations.IRangeCaseClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRangeOperation(Microsoft.CodeAnalysis.Operations.IRangeOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitReDim(Microsoft.CodeAnalysis.Operations.IReDimOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitReDimClause(Microsoft.CodeAnalysis.Operations.IReDimClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRecursivePattern(Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRelationalCaseClause(Microsoft.CodeAnalysis.Operations.IRelationalCaseClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRelationalPattern(Microsoft.CodeAnalysis.Operations.IRelationalPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitReturn(Microsoft.CodeAnalysis.Operations.IReturnOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSimpleAssignment(Microsoft.CodeAnalysis.Operations.ISimpleAssignmentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSingleValueCaseClause(Microsoft.CodeAnalysis.Operations.ISingleValueCaseClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSizeOf(Microsoft.CodeAnalysis.Operations.ISizeOfOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSlicePattern(Microsoft.CodeAnalysis.Operations.ISlicePatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSpread(Microsoft.CodeAnalysis.Operations.ISpreadOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitStaticLocalInitializationSemaphore(Microsoft.CodeAnalysis.FlowAnalysis.IStaticLocalInitializationSemaphoreOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitStop(Microsoft.CodeAnalysis.Operations.IStopOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSwitch(Microsoft.CodeAnalysis.Operations.ISwitchOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSwitchCase(Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSwitchExpression(Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSwitchExpressionArm(Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitThrow(Microsoft.CodeAnalysis.Operations.IThrowOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTranslatedQuery(Microsoft.CodeAnalysis.Operations.ITranslatedQueryOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTry(Microsoft.CodeAnalysis.Operations.ITryOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTuple(Microsoft.CodeAnalysis.Operations.ITupleOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTupleBinaryOperator(Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTypeOf(Microsoft.CodeAnalysis.Operations.ITypeOfOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTypeParameterObjectCreation(Microsoft.CodeAnalysis.Operations.ITypeParameterObjectCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTypePattern(Microsoft.CodeAnalysis.Operations.ITypePatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitUnaryOperator(Microsoft.CodeAnalysis.Operations.IUnaryOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitUsing(Microsoft.CodeAnalysis.Operations.IUsingOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitUsingDeclaration(Microsoft.CodeAnalysis.Operations.IUsingDeclarationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitUtf8String(Microsoft.CodeAnalysis.Operations.IUtf8StringOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitVariableDeclaration(Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitVariableDeclarationGroup(Microsoft.CodeAnalysis.Operations.IVariableDeclarationGroupOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitVariableDeclarator(Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitVariableInitializer(Microsoft.CodeAnalysis.Operations.IVariableInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitWhileLoop(Microsoft.CodeAnalysis.Operations.IWhileLoopOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitWith(Microsoft.CodeAnalysis.Operations.IWithOperation) +T:Microsoft.CodeAnalysis.Operations.OperationVisitor`2 +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.#ctor +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.DefaultVisit(Microsoft.CodeAnalysis.IOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.Visit(Microsoft.CodeAnalysis.IOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitAddressOf(Microsoft.CodeAnalysis.Operations.IAddressOfOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitAnonymousFunction(Microsoft.CodeAnalysis.Operations.IAnonymousFunctionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitAnonymousObjectCreation(Microsoft.CodeAnalysis.Operations.IAnonymousObjectCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitArgument(Microsoft.CodeAnalysis.Operations.IArgumentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitArrayCreation(Microsoft.CodeAnalysis.Operations.IArrayCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitArrayElementReference(Microsoft.CodeAnalysis.Operations.IArrayElementReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitArrayInitializer(Microsoft.CodeAnalysis.Operations.IArrayInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitAttribute(Microsoft.CodeAnalysis.Operations.IAttributeOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitAwait(Microsoft.CodeAnalysis.Operations.IAwaitOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitBinaryOperator(Microsoft.CodeAnalysis.Operations.IBinaryOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitBinaryPattern(Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitBlock(Microsoft.CodeAnalysis.Operations.IBlockOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitBranch(Microsoft.CodeAnalysis.Operations.IBranchOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCatchClause(Microsoft.CodeAnalysis.Operations.ICatchClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCaughtException(Microsoft.CodeAnalysis.FlowAnalysis.ICaughtExceptionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCoalesce(Microsoft.CodeAnalysis.Operations.ICoalesceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCoalesceAssignment(Microsoft.CodeAnalysis.Operations.ICoalesceAssignmentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCollectionElementInitializer(Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCollectionExpression(Microsoft.CodeAnalysis.Operations.ICollectionExpressionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCompoundAssignment(Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConditional(Microsoft.CodeAnalysis.Operations.IConditionalOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConditionalAccess(Microsoft.CodeAnalysis.Operations.IConditionalAccessOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConditionalAccessInstance(Microsoft.CodeAnalysis.Operations.IConditionalAccessInstanceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConstantPattern(Microsoft.CodeAnalysis.Operations.IConstantPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConstructorBodyOperation(Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConversion(Microsoft.CodeAnalysis.Operations.IConversionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDeclarationExpression(Microsoft.CodeAnalysis.Operations.IDeclarationExpressionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDeclarationPattern(Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDeconstructionAssignment(Microsoft.CodeAnalysis.Operations.IDeconstructionAssignmentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDefaultCaseClause(Microsoft.CodeAnalysis.Operations.IDefaultCaseClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDefaultValue(Microsoft.CodeAnalysis.Operations.IDefaultValueOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDelegateCreation(Microsoft.CodeAnalysis.Operations.IDelegateCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDiscardOperation(Microsoft.CodeAnalysis.Operations.IDiscardOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDiscardPattern(Microsoft.CodeAnalysis.Operations.IDiscardPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDynamicIndexerAccess(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDynamicInvocation(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDynamicMemberReference(Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDynamicObjectCreation(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitEmpty(Microsoft.CodeAnalysis.Operations.IEmptyOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitEnd(Microsoft.CodeAnalysis.Operations.IEndOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitEventAssignment(Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitEventReference(Microsoft.CodeAnalysis.Operations.IEventReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitExpressionStatement(Microsoft.CodeAnalysis.Operations.IExpressionStatementOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFieldInitializer(Microsoft.CodeAnalysis.Operations.IFieldInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFieldReference(Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFlowAnonymousFunction(Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFlowCapture(Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFlowCaptureReference(Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitForEachLoop(Microsoft.CodeAnalysis.Operations.IForEachLoopOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitForLoop(Microsoft.CodeAnalysis.Operations.IForLoopOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitForToLoop(Microsoft.CodeAnalysis.Operations.IForToLoopOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFunctionPointerInvocation(Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitImplicitIndexerReference(Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitIncrementOrDecrement(Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInlineArrayAccess(Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInstanceReference(Microsoft.CodeAnalysis.Operations.IInstanceReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedString(Microsoft.CodeAnalysis.Operations.IInterpolatedStringOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedStringAddition(Microsoft.CodeAnalysis.Operations.IInterpolatedStringAdditionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedStringAppend(Microsoft.CodeAnalysis.Operations.IInterpolatedStringAppendOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedStringHandlerArgumentPlaceholder(Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerArgumentPlaceholderOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedStringHandlerCreation(Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedStringText(Microsoft.CodeAnalysis.Operations.IInterpolatedStringTextOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolation(Microsoft.CodeAnalysis.Operations.IInterpolationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInvalid(Microsoft.CodeAnalysis.Operations.IInvalidOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInvocation(Microsoft.CodeAnalysis.Operations.IInvocationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitIsNull(Microsoft.CodeAnalysis.FlowAnalysis.IIsNullOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitIsPattern(Microsoft.CodeAnalysis.Operations.IIsPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitIsType(Microsoft.CodeAnalysis.Operations.IIsTypeOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitLabeled(Microsoft.CodeAnalysis.Operations.ILabeledOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitListPattern(Microsoft.CodeAnalysis.Operations.IListPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitLiteral(Microsoft.CodeAnalysis.Operations.ILiteralOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitLocalFunction(Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitLocalReference(Microsoft.CodeAnalysis.Operations.ILocalReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitLock(Microsoft.CodeAnalysis.Operations.ILockOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitMemberInitializer(Microsoft.CodeAnalysis.Operations.IMemberInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitMethodBodyOperation(Microsoft.CodeAnalysis.Operations.IMethodBodyOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitMethodReference(Microsoft.CodeAnalysis.Operations.IMethodReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitNameOf(Microsoft.CodeAnalysis.Operations.INameOfOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitNegatedPattern(Microsoft.CodeAnalysis.Operations.INegatedPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitObjectCreation(Microsoft.CodeAnalysis.Operations.IObjectCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitObjectOrCollectionInitializer(Microsoft.CodeAnalysis.Operations.IObjectOrCollectionInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitOmittedArgument(Microsoft.CodeAnalysis.Operations.IOmittedArgumentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitParameterInitializer(Microsoft.CodeAnalysis.Operations.IParameterInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitParameterReference(Microsoft.CodeAnalysis.Operations.IParameterReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitParenthesized(Microsoft.CodeAnalysis.Operations.IParenthesizedOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitPatternCaseClause(Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitPropertyInitializer(Microsoft.CodeAnalysis.Operations.IPropertyInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitPropertyReference(Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitPropertySubpattern(Microsoft.CodeAnalysis.Operations.IPropertySubpatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRaiseEvent(Microsoft.CodeAnalysis.Operations.IRaiseEventOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRangeCaseClause(Microsoft.CodeAnalysis.Operations.IRangeCaseClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRangeOperation(Microsoft.CodeAnalysis.Operations.IRangeOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitReDim(Microsoft.CodeAnalysis.Operations.IReDimOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitReDimClause(Microsoft.CodeAnalysis.Operations.IReDimClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRecursivePattern(Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRelationalCaseClause(Microsoft.CodeAnalysis.Operations.IRelationalCaseClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRelationalPattern(Microsoft.CodeAnalysis.Operations.IRelationalPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitReturn(Microsoft.CodeAnalysis.Operations.IReturnOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSimpleAssignment(Microsoft.CodeAnalysis.Operations.ISimpleAssignmentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSingleValueCaseClause(Microsoft.CodeAnalysis.Operations.ISingleValueCaseClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSizeOf(Microsoft.CodeAnalysis.Operations.ISizeOfOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSlicePattern(Microsoft.CodeAnalysis.Operations.ISlicePatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSpread(Microsoft.CodeAnalysis.Operations.ISpreadOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitStaticLocalInitializationSemaphore(Microsoft.CodeAnalysis.FlowAnalysis.IStaticLocalInitializationSemaphoreOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitStop(Microsoft.CodeAnalysis.Operations.IStopOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSwitch(Microsoft.CodeAnalysis.Operations.ISwitchOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSwitchCase(Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSwitchExpression(Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSwitchExpressionArm(Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitThrow(Microsoft.CodeAnalysis.Operations.IThrowOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTranslatedQuery(Microsoft.CodeAnalysis.Operations.ITranslatedQueryOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTry(Microsoft.CodeAnalysis.Operations.ITryOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTuple(Microsoft.CodeAnalysis.Operations.ITupleOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTupleBinaryOperator(Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTypeOf(Microsoft.CodeAnalysis.Operations.ITypeOfOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTypeParameterObjectCreation(Microsoft.CodeAnalysis.Operations.ITypeParameterObjectCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTypePattern(Microsoft.CodeAnalysis.Operations.ITypePatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitUnaryOperator(Microsoft.CodeAnalysis.Operations.IUnaryOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitUsing(Microsoft.CodeAnalysis.Operations.IUsingOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitUsingDeclaration(Microsoft.CodeAnalysis.Operations.IUsingDeclarationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitUtf8String(Microsoft.CodeAnalysis.Operations.IUtf8StringOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitVariableDeclaration(Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitVariableDeclarationGroup(Microsoft.CodeAnalysis.Operations.IVariableDeclarationGroupOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitVariableDeclarator(Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitVariableInitializer(Microsoft.CodeAnalysis.Operations.IVariableInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitWhileLoop(Microsoft.CodeAnalysis.Operations.IWhileLoopOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitWith(Microsoft.CodeAnalysis.Operations.IWithOperation,`0) +T:Microsoft.CodeAnalysis.Operations.OperationWalker +M:Microsoft.CodeAnalysis.Operations.OperationWalker.#ctor +M:Microsoft.CodeAnalysis.Operations.OperationWalker.DefaultVisit(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationWalker.Visit(Microsoft.CodeAnalysis.IOperation) +T:Microsoft.CodeAnalysis.Operations.OperationWalker`1 +M:Microsoft.CodeAnalysis.Operations.OperationWalker`1.#ctor +M:Microsoft.CodeAnalysis.Operations.OperationWalker`1.DefaultVisit(Microsoft.CodeAnalysis.IOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationWalker`1.Visit(Microsoft.CodeAnalysis.IOperation,`0) +T:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.BitwiseNegation +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.False +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.Hat +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.Minus +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.None +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.Not +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.Plus +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.True +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.value__ +T:Microsoft.CodeAnalysis.OptimizationLevel +F:Microsoft.CodeAnalysis.OptimizationLevel.Debug +F:Microsoft.CodeAnalysis.OptimizationLevel.Release +F:Microsoft.CodeAnalysis.OptimizationLevel.value__ +T:Microsoft.CodeAnalysis.Optional`1 +M:Microsoft.CodeAnalysis.Optional`1.#ctor(`0) +M:Microsoft.CodeAnalysis.Optional`1.ToString +M:Microsoft.CodeAnalysis.Optional`1.get_HasValue +M:Microsoft.CodeAnalysis.Optional`1.get_Value +M:Microsoft.CodeAnalysis.Optional`1.op_Implicit(`0)~Microsoft.CodeAnalysis.Optional{`0} +T:Microsoft.CodeAnalysis.OutputKind +F:Microsoft.CodeAnalysis.OutputKind.ConsoleApplication +F:Microsoft.CodeAnalysis.OutputKind.DynamicallyLinkedLibrary +F:Microsoft.CodeAnalysis.OutputKind.NetModule +F:Microsoft.CodeAnalysis.OutputKind.WindowsApplication +F:Microsoft.CodeAnalysis.OutputKind.WindowsRuntimeApplication +F:Microsoft.CodeAnalysis.OutputKind.WindowsRuntimeMetadata +F:Microsoft.CodeAnalysis.OutputKind.value__ +T:Microsoft.CodeAnalysis.ParseOptions +M:Microsoft.CodeAnalysis.ParseOptions.CommonWithDocumentationMode(Microsoft.CodeAnalysis.DocumentationMode) +M:Microsoft.CodeAnalysis.ParseOptions.CommonWithFeatures(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}}) +M:Microsoft.CodeAnalysis.ParseOptions.CommonWithKind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.ParseOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.ParseOptions.EqualsHelper(Microsoft.CodeAnalysis.ParseOptions) +M:Microsoft.CodeAnalysis.ParseOptions.GetHashCode +M:Microsoft.CodeAnalysis.ParseOptions.GetHashCodeHelper +M:Microsoft.CodeAnalysis.ParseOptions.WithDocumentationMode(Microsoft.CodeAnalysis.DocumentationMode) +M:Microsoft.CodeAnalysis.ParseOptions.WithFeatures(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}}) +M:Microsoft.CodeAnalysis.ParseOptions.WithKind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.ParseOptions.get_DocumentationMode +M:Microsoft.CodeAnalysis.ParseOptions.get_Errors +M:Microsoft.CodeAnalysis.ParseOptions.get_Features +M:Microsoft.CodeAnalysis.ParseOptions.get_Kind +M:Microsoft.CodeAnalysis.ParseOptions.get_Language +M:Microsoft.CodeAnalysis.ParseOptions.get_PreprocessorSymbolNames +M:Microsoft.CodeAnalysis.ParseOptions.get_SpecifiedKind +M:Microsoft.CodeAnalysis.ParseOptions.op_Equality(Microsoft.CodeAnalysis.ParseOptions,Microsoft.CodeAnalysis.ParseOptions) +M:Microsoft.CodeAnalysis.ParseOptions.op_Inequality(Microsoft.CodeAnalysis.ParseOptions,Microsoft.CodeAnalysis.ParseOptions) +M:Microsoft.CodeAnalysis.ParseOptions.set_DocumentationMode(Microsoft.CodeAnalysis.DocumentationMode) +M:Microsoft.CodeAnalysis.ParseOptions.set_Kind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.ParseOptions.set_SpecifiedKind(Microsoft.CodeAnalysis.SourceCodeKind) +T:Microsoft.CodeAnalysis.Platform +F:Microsoft.CodeAnalysis.Platform.AnyCpu +F:Microsoft.CodeAnalysis.Platform.AnyCpu32BitPreferred +F:Microsoft.CodeAnalysis.Platform.Arm +F:Microsoft.CodeAnalysis.Platform.Arm64 +F:Microsoft.CodeAnalysis.Platform.Itanium +F:Microsoft.CodeAnalysis.Platform.X64 +F:Microsoft.CodeAnalysis.Platform.X86 +F:Microsoft.CodeAnalysis.Platform.value__ +T:Microsoft.CodeAnalysis.PortableExecutableReference +M:Microsoft.CodeAnalysis.PortableExecutableReference.#ctor(Microsoft.CodeAnalysis.MetadataReferenceProperties,System.String,Microsoft.CodeAnalysis.DocumentationProvider) +M:Microsoft.CodeAnalysis.PortableExecutableReference.CreateDocumentationProvider +M:Microsoft.CodeAnalysis.PortableExecutableReference.GetMetadata +M:Microsoft.CodeAnalysis.PortableExecutableReference.GetMetadataId +M:Microsoft.CodeAnalysis.PortableExecutableReference.GetMetadataImpl +M:Microsoft.CodeAnalysis.PortableExecutableReference.WithAliases(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.PortableExecutableReference.WithAliases(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.PortableExecutableReference.WithEmbedInteropTypes(System.Boolean) +M:Microsoft.CodeAnalysis.PortableExecutableReference.WithProperties(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.PortableExecutableReference.WithPropertiesImpl(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.PortableExecutableReference.get_Display +M:Microsoft.CodeAnalysis.PortableExecutableReference.get_FilePath +T:Microsoft.CodeAnalysis.PreprocessingSymbolInfo +M:Microsoft.CodeAnalysis.PreprocessingSymbolInfo.Equals(Microsoft.CodeAnalysis.PreprocessingSymbolInfo) +M:Microsoft.CodeAnalysis.PreprocessingSymbolInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.PreprocessingSymbolInfo.GetHashCode +M:Microsoft.CodeAnalysis.PreprocessingSymbolInfo.get_IsDefined +M:Microsoft.CodeAnalysis.PreprocessingSymbolInfo.get_Symbol +T:Microsoft.CodeAnalysis.RefKind +F:Microsoft.CodeAnalysis.RefKind.In +F:Microsoft.CodeAnalysis.RefKind.None +F:Microsoft.CodeAnalysis.RefKind.Out +F:Microsoft.CodeAnalysis.RefKind.Ref +F:Microsoft.CodeAnalysis.RefKind.RefReadOnly +F:Microsoft.CodeAnalysis.RefKind.RefReadOnlyParameter +F:Microsoft.CodeAnalysis.RefKind.value__ +T:Microsoft.CodeAnalysis.ReportDiagnostic +F:Microsoft.CodeAnalysis.ReportDiagnostic.Default +F:Microsoft.CodeAnalysis.ReportDiagnostic.Error +F:Microsoft.CodeAnalysis.ReportDiagnostic.Hidden +F:Microsoft.CodeAnalysis.ReportDiagnostic.Info +F:Microsoft.CodeAnalysis.ReportDiagnostic.Suppress +F:Microsoft.CodeAnalysis.ReportDiagnostic.Warn +F:Microsoft.CodeAnalysis.ReportDiagnostic.value__ +T:Microsoft.CodeAnalysis.ResourceDescription +M:Microsoft.CodeAnalysis.ResourceDescription.#ctor(System.String,System.Func{System.IO.Stream},System.Boolean) +M:Microsoft.CodeAnalysis.ResourceDescription.#ctor(System.String,System.String,System.Func{System.IO.Stream},System.Boolean) +T:Microsoft.CodeAnalysis.RuleSetInclude +M:Microsoft.CodeAnalysis.RuleSetInclude.#ctor(System.String,Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.RuleSetInclude.LoadRuleSet(Microsoft.CodeAnalysis.RuleSet) +M:Microsoft.CodeAnalysis.RuleSetInclude.get_Action +M:Microsoft.CodeAnalysis.RuleSetInclude.get_IncludePath +T:Microsoft.CodeAnalysis.RuntimeCapability +F:Microsoft.CodeAnalysis.RuntimeCapability.ByRefFields +F:Microsoft.CodeAnalysis.RuntimeCapability.ByRefLikeGenerics +F:Microsoft.CodeAnalysis.RuntimeCapability.CovariantReturnsOfClasses +F:Microsoft.CodeAnalysis.RuntimeCapability.DefaultImplementationsOfInterfaces +F:Microsoft.CodeAnalysis.RuntimeCapability.InlineArrayTypes +F:Microsoft.CodeAnalysis.RuntimeCapability.NumericIntPtr +F:Microsoft.CodeAnalysis.RuntimeCapability.UnmanagedSignatureCallingConvention +F:Microsoft.CodeAnalysis.RuntimeCapability.VirtualStaticsInInterfaces +F:Microsoft.CodeAnalysis.RuntimeCapability.value__ +T:Microsoft.CodeAnalysis.SarifVersion +F:Microsoft.CodeAnalysis.SarifVersion.Default +F:Microsoft.CodeAnalysis.SarifVersion.Latest +F:Microsoft.CodeAnalysis.SarifVersion.Sarif1 +F:Microsoft.CodeAnalysis.SarifVersion.Sarif2 +F:Microsoft.CodeAnalysis.SarifVersion.value__ +T:Microsoft.CodeAnalysis.SarifVersionFacts +M:Microsoft.CodeAnalysis.SarifVersionFacts.TryParse(System.String,Microsoft.CodeAnalysis.SarifVersion@) +T:Microsoft.CodeAnalysis.ScopedKind +F:Microsoft.CodeAnalysis.ScopedKind.None +F:Microsoft.CodeAnalysis.ScopedKind.ScopedRef +F:Microsoft.CodeAnalysis.ScopedKind.ScopedValue +F:Microsoft.CodeAnalysis.ScopedKind.value__ +T:Microsoft.CodeAnalysis.ScriptCompilationInfo +M:Microsoft.CodeAnalysis.ScriptCompilationInfo.WithPreviousScriptCompilation(Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.ScriptCompilationInfo.get_GlobalsType +M:Microsoft.CodeAnalysis.ScriptCompilationInfo.get_PreviousScriptCompilation +M:Microsoft.CodeAnalysis.ScriptCompilationInfo.get_ReturnType +T:Microsoft.CodeAnalysis.SemanticModel +M:Microsoft.CodeAnalysis.SemanticModel.#ctor +M:Microsoft.CodeAnalysis.SemanticModel.AnalyzeControlFlowCore(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.AnalyzeControlFlowCore(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.AnalyzeDataFlowCore(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.AnalyzeDataFlowCore(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.GetAliasInfoCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetConstantValue(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetConstantValueCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetDeclarationDiagnostics(System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetDeclaredSymbolCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetDeclaredSymbolsCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetDiagnostics(System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetEnclosingSymbol(System.Int32,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetEnclosingSymbolCore(System.Int32,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetImportScopes(System.Int32,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetMemberGroupCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetMethodBodyDiagnostics(System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetNullableContext(System.Int32) +M:Microsoft.CodeAnalysis.SemanticModel.GetOperation(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetOperationCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetPreprocessingSymbolInfo(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.GetPreprocessingSymbolInfoCore(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.GetSpeculativeAliasInfoCore(System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.SemanticModel.GetSpeculativeSymbolInfoCore(System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.SemanticModel.GetSpeculativeTypeInfoCore(System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.SemanticModel.GetSymbolInfoCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetSyntaxDiagnostics(System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetTopmostNodeForDiagnosticAnalysis(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.GetTypeInfoCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.IsAccessible(System.Int32,Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SemanticModel.IsAccessibleCore(System.Int32,Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SemanticModel.IsEventUsableAsField(System.Int32,Microsoft.CodeAnalysis.IEventSymbol) +M:Microsoft.CodeAnalysis.SemanticModel.IsEventUsableAsFieldCore(System.Int32,Microsoft.CodeAnalysis.IEventSymbol) +M:Microsoft.CodeAnalysis.SemanticModel.LookupBaseMembers(System.Int32,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupBaseMembersCore(System.Int32,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupLabels(System.Int32,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupLabelsCore(System.Int32,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupNamespacesAndTypes(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupNamespacesAndTypesCore(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupStaticMembers(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupStaticMembersCore(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupSymbols(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.SemanticModel.LookupSymbolsCore(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.SemanticModel.get_Compilation +M:Microsoft.CodeAnalysis.SemanticModel.get_CompilationCore +M:Microsoft.CodeAnalysis.SemanticModel.get_IgnoresAccessibility +M:Microsoft.CodeAnalysis.SemanticModel.get_IsSpeculativeSemanticModel +M:Microsoft.CodeAnalysis.SemanticModel.get_Language +M:Microsoft.CodeAnalysis.SemanticModel.get_NullableAnalysisIsDisabled +M:Microsoft.CodeAnalysis.SemanticModel.get_OriginalPositionForSpeculation +M:Microsoft.CodeAnalysis.SemanticModel.get_ParentModel +M:Microsoft.CodeAnalysis.SemanticModel.get_ParentModelCore +M:Microsoft.CodeAnalysis.SemanticModel.get_RootCore +M:Microsoft.CodeAnalysis.SemanticModel.get_SyntaxTree +M:Microsoft.CodeAnalysis.SemanticModel.get_SyntaxTreeCore +T:Microsoft.CodeAnalysis.SemanticModelOptions +F:Microsoft.CodeAnalysis.SemanticModelOptions.DisableNullableAnalysis +F:Microsoft.CodeAnalysis.SemanticModelOptions.IgnoreAccessibility +F:Microsoft.CodeAnalysis.SemanticModelOptions.None +F:Microsoft.CodeAnalysis.SemanticModelOptions.value__ +T:Microsoft.CodeAnalysis.SeparatedSyntaxList +M:Microsoft.CodeAnalysis.SeparatedSyntaxList.Create``1(System.ReadOnlySpan{``0}) +T:Microsoft.CodeAnalysis.SeparatedSyntaxList`1 +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Add(`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Any +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Contains(`0) +T:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator.Reset +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Equals(Microsoft.CodeAnalysis.SeparatedSyntaxList{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Equals(System.Object) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.First +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.FirstOrDefault +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.GetEnumerator +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.GetHashCode +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.GetSeparator(System.Int32) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.GetSeparators +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.GetWithSeparators +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.IndexOf(System.Func{`0,System.Boolean}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.IndexOf(`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Insert(System.Int32,`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Last +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.LastIndexOf(System.Func{`0,System.Boolean}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.LastIndexOf(`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.LastOrDefault +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Remove(`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.RemoveAt(System.Int32) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Replace(`0,`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.ReplaceRange(`0,System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.ReplaceSeparator(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.ToFullString +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.ToString +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.get_Count +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.get_FullSpan +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.get_SeparatorCount +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.get_Span +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.op_Equality(Microsoft.CodeAnalysis.SeparatedSyntaxList{`0},Microsoft.CodeAnalysis.SeparatedSyntaxList{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.op_Explicit(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.SyntaxNode})~Microsoft.CodeAnalysis.SeparatedSyntaxList{`0} +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.op_Implicit(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.op_Implicit(Microsoft.CodeAnalysis.SeparatedSyntaxList{`0})~Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.SyntaxNode} +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.op_Inequality(Microsoft.CodeAnalysis.SeparatedSyntaxList{`0},Microsoft.CodeAnalysis.SeparatedSyntaxList{`0}) +T:Microsoft.CodeAnalysis.SourceCodeKind +F:Microsoft.CodeAnalysis.SourceCodeKind.Interactive +F:Microsoft.CodeAnalysis.SourceCodeKind.Regular +F:Microsoft.CodeAnalysis.SourceCodeKind.Script +F:Microsoft.CodeAnalysis.SourceCodeKind.value__ +T:Microsoft.CodeAnalysis.SourceFileResolver +T:Microsoft.CodeAnalysis.SourceProductionContext +M:Microsoft.CodeAnalysis.SourceProductionContext.AddSource(System.String,Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.SourceProductionContext.AddSource(System.String,System.String) +M:Microsoft.CodeAnalysis.SourceProductionContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.SourceProductionContext.get_CancellationToken +T:Microsoft.CodeAnalysis.SourceReferenceResolver +T:Microsoft.CodeAnalysis.SpecialType +F:Microsoft.CodeAnalysis.SpecialType.Count +F:Microsoft.CodeAnalysis.SpecialType.None +F:Microsoft.CodeAnalysis.SpecialType.System_ArgIterator +F:Microsoft.CodeAnalysis.SpecialType.System_Array +F:Microsoft.CodeAnalysis.SpecialType.System_AsyncCallback +F:Microsoft.CodeAnalysis.SpecialType.System_Boolean +F:Microsoft.CodeAnalysis.SpecialType.System_Byte +F:Microsoft.CodeAnalysis.SpecialType.System_Char +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_ICollection_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_IEnumerable_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_IEnumerator_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_IList_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_IReadOnlyCollection_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_IReadOnlyList_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_IEnumerable +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_IEnumerator +F:Microsoft.CodeAnalysis.SpecialType.System_DateTime +F:Microsoft.CodeAnalysis.SpecialType.System_Decimal +F:Microsoft.CodeAnalysis.SpecialType.System_Delegate +F:Microsoft.CodeAnalysis.SpecialType.System_Double +F:Microsoft.CodeAnalysis.SpecialType.System_Enum +F:Microsoft.CodeAnalysis.SpecialType.System_IAsyncResult +F:Microsoft.CodeAnalysis.SpecialType.System_IDisposable +F:Microsoft.CodeAnalysis.SpecialType.System_Int16 +F:Microsoft.CodeAnalysis.SpecialType.System_Int32 +F:Microsoft.CodeAnalysis.SpecialType.System_Int64 +F:Microsoft.CodeAnalysis.SpecialType.System_IntPtr +F:Microsoft.CodeAnalysis.SpecialType.System_MulticastDelegate +F:Microsoft.CodeAnalysis.SpecialType.System_Nullable_T +F:Microsoft.CodeAnalysis.SpecialType.System_Object +F:Microsoft.CodeAnalysis.SpecialType.System_RuntimeArgumentHandle +F:Microsoft.CodeAnalysis.SpecialType.System_RuntimeFieldHandle +F:Microsoft.CodeAnalysis.SpecialType.System_RuntimeMethodHandle +F:Microsoft.CodeAnalysis.SpecialType.System_RuntimeTypeHandle +F:Microsoft.CodeAnalysis.SpecialType.System_Runtime_CompilerServices_InlineArrayAttribute +F:Microsoft.CodeAnalysis.SpecialType.System_Runtime_CompilerServices_IsVolatile +F:Microsoft.CodeAnalysis.SpecialType.System_Runtime_CompilerServices_PreserveBaseOverridesAttribute +F:Microsoft.CodeAnalysis.SpecialType.System_Runtime_CompilerServices_RuntimeFeature +F:Microsoft.CodeAnalysis.SpecialType.System_SByte +F:Microsoft.CodeAnalysis.SpecialType.System_Single +F:Microsoft.CodeAnalysis.SpecialType.System_String +F:Microsoft.CodeAnalysis.SpecialType.System_TypedReference +F:Microsoft.CodeAnalysis.SpecialType.System_UInt16 +F:Microsoft.CodeAnalysis.SpecialType.System_UInt32 +F:Microsoft.CodeAnalysis.SpecialType.System_UInt64 +F:Microsoft.CodeAnalysis.SpecialType.System_UIntPtr +F:Microsoft.CodeAnalysis.SpecialType.System_ValueType +F:Microsoft.CodeAnalysis.SpecialType.System_Void +F:Microsoft.CodeAnalysis.SpecialType.value__ +T:Microsoft.CodeAnalysis.SpeculativeBindingOption +F:Microsoft.CodeAnalysis.SpeculativeBindingOption.BindAsExpression +F:Microsoft.CodeAnalysis.SpeculativeBindingOption.BindAsTypeOrNamespace +F:Microsoft.CodeAnalysis.SpeculativeBindingOption.value__ +T:Microsoft.CodeAnalysis.StrongNameProvider +T:Microsoft.CodeAnalysis.SubsystemVersion +M:Microsoft.CodeAnalysis.SubsystemVersion.Create(System.Int32,System.Int32) +M:Microsoft.CodeAnalysis.SubsystemVersion.Equals(Microsoft.CodeAnalysis.SubsystemVersion) +M:Microsoft.CodeAnalysis.SubsystemVersion.Equals(System.Object) +M:Microsoft.CodeAnalysis.SubsystemVersion.GetHashCode +M:Microsoft.CodeAnalysis.SubsystemVersion.ToString +M:Microsoft.CodeAnalysis.SubsystemVersion.TryParse(System.String,Microsoft.CodeAnalysis.SubsystemVersion@) +M:Microsoft.CodeAnalysis.SubsystemVersion.get_IsValid +M:Microsoft.CodeAnalysis.SubsystemVersion.get_Major +M:Microsoft.CodeAnalysis.SubsystemVersion.get_Minor +M:Microsoft.CodeAnalysis.SubsystemVersion.get_None +M:Microsoft.CodeAnalysis.SubsystemVersion.get_Windows2000 +M:Microsoft.CodeAnalysis.SubsystemVersion.get_Windows7 +M:Microsoft.CodeAnalysis.SubsystemVersion.get_Windows8 +M:Microsoft.CodeAnalysis.SubsystemVersion.get_WindowsVista +M:Microsoft.CodeAnalysis.SubsystemVersion.get_WindowsXP +T:Microsoft.CodeAnalysis.SuppressionDescriptor +M:Microsoft.CodeAnalysis.SuppressionDescriptor.#ctor(System.String,System.String,Microsoft.CodeAnalysis.LocalizableString) +M:Microsoft.CodeAnalysis.SuppressionDescriptor.#ctor(System.String,System.String,System.String) +M:Microsoft.CodeAnalysis.SuppressionDescriptor.Equals(Microsoft.CodeAnalysis.SuppressionDescriptor) +M:Microsoft.CodeAnalysis.SuppressionDescriptor.Equals(System.Object) +M:Microsoft.CodeAnalysis.SuppressionDescriptor.GetHashCode +M:Microsoft.CodeAnalysis.SuppressionDescriptor.get_Id +M:Microsoft.CodeAnalysis.SuppressionDescriptor.get_Justification +M:Microsoft.CodeAnalysis.SuppressionDescriptor.get_SuppressedDiagnosticId +T:Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle +F:Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle.NameAndParameters +F:Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle.NameAndSignature +F:Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle.NameOnly +F:Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle +F:Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle.Default +F:Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle.InstanceMethod +F:Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle.StaticMethod +F:Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayExtensions +M:Microsoft.CodeAnalysis.SymbolDisplayExtensions.ToDisplayString(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.SymbolDisplayPart}) +T:Microsoft.CodeAnalysis.SymbolDisplayFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.#ctor(Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle,Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle,Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions,Microsoft.CodeAnalysis.SymbolDisplayMemberOptions,Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle,Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle,Microsoft.CodeAnalysis.SymbolDisplayParameterOptions,Microsoft.CodeAnalysis.SymbolDisplayPropertyStyle,Microsoft.CodeAnalysis.SymbolDisplayLocalOptions,Microsoft.CodeAnalysis.SymbolDisplayKindOptions,Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddGenericsOptions(Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddKindOptions(Microsoft.CodeAnalysis.SymbolDisplayKindOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddLocalOptions(Microsoft.CodeAnalysis.SymbolDisplayLocalOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddMemberOptions(Microsoft.CodeAnalysis.SymbolDisplayMemberOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddMiscellaneousOptions(Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddParameterOptions(Microsoft.CodeAnalysis.SymbolDisplayParameterOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveGenericsOptions(Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveKindOptions(Microsoft.CodeAnalysis.SymbolDisplayKindOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveLocalOptions(Microsoft.CodeAnalysis.SymbolDisplayLocalOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveMemberOptions(Microsoft.CodeAnalysis.SymbolDisplayMemberOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveMiscellaneousOptions(Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveParameterOptions(Microsoft.CodeAnalysis.SymbolDisplayParameterOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithGenericsOptions(Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithGlobalNamespaceStyle(Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithKindOptions(Microsoft.CodeAnalysis.SymbolDisplayKindOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithLocalOptions(Microsoft.CodeAnalysis.SymbolDisplayLocalOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithMemberOptions(Microsoft.CodeAnalysis.SymbolDisplayMemberOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithMiscellaneousOptions(Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithParameterOptions(Microsoft.CodeAnalysis.SymbolDisplayParameterOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_CSharpErrorMessageFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_CSharpShortErrorMessageFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_DelegateStyle +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_ExtensionMethodStyle +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_FullyQualifiedFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_GenericsOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_GlobalNamespaceStyle +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_KindOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_LocalOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_MemberOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_MinimallyQualifiedFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_MiscellaneousOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_ParameterOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_PropertyStyle +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_TypeQualificationStyle +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_VisualBasicErrorMessageFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_VisualBasicShortErrorMessageFormat +T:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions +F:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions.IncludeTypeConstraints +F:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions.IncludeTypeParameters +F:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions.IncludeVariance +F:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle +F:Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle.Included +F:Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle.Omitted +F:Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle.OmittedAsContaining +F:Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayKindOptions +F:Microsoft.CodeAnalysis.SymbolDisplayKindOptions.IncludeMemberKeyword +F:Microsoft.CodeAnalysis.SymbolDisplayKindOptions.IncludeNamespaceKeyword +F:Microsoft.CodeAnalysis.SymbolDisplayKindOptions.IncludeTypeKeyword +F:Microsoft.CodeAnalysis.SymbolDisplayKindOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayKindOptions.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.IncludeConstantValue +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.IncludeModifiers +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.IncludeRef +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.IncludeType +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeAccessibility +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeConstantValue +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeContainingType +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeExplicitInterface +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeModifiers +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeParameters +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeRef +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeType +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.CollapseTupleTypes +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.ExpandNullable +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.ExpandValueTuple +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.UseAsterisksInMultiDimensionalArrays +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.UseSpecialTypes +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeDefaultValue +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeExtensionThis +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeModifiers +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeName +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeOptionalBrackets +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeParamsRefOut +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeType +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayPart +M:Microsoft.CodeAnalysis.SymbolDisplayPart.#ctor(Microsoft.CodeAnalysis.SymbolDisplayPartKind,Microsoft.CodeAnalysis.ISymbol,System.String) +M:Microsoft.CodeAnalysis.SymbolDisplayPart.ToString +M:Microsoft.CodeAnalysis.SymbolDisplayPart.get_Kind +M:Microsoft.CodeAnalysis.SymbolDisplayPart.get_Symbol +T:Microsoft.CodeAnalysis.SymbolDisplayPartKind +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.AliasName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.AnonymousTypeIndicator +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.AssemblyName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ClassName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ConstantName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.DelegateName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.EnumMemberName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.EnumName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ErrorTypeName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.EventName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ExtensionMethodName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.FieldName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.InterfaceName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.Keyword +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.LabelName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.LineBreak +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.LocalName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.MethodName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ModuleName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.NamespaceName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.NumericLiteral +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.Operator +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ParameterName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.PropertyName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.Punctuation +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.RangeVariableName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.RecordClassName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.RecordStructName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.Space +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.StringLiteral +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.StructName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.Text +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.TypeParameterName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayPropertyStyle +F:Microsoft.CodeAnalysis.SymbolDisplayPropertyStyle.NameOnly +F:Microsoft.CodeAnalysis.SymbolDisplayPropertyStyle.ShowReadWriteDescriptor +F:Microsoft.CodeAnalysis.SymbolDisplayPropertyStyle.value__ +T:Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle +F:Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle.NameAndContainingTypes +F:Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle.NameAndContainingTypesAndNamespaces +F:Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle.NameOnly +F:Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle.value__ +T:Microsoft.CodeAnalysis.SymbolEqualityComparer +F:Microsoft.CodeAnalysis.SymbolEqualityComparer.Default +M:Microsoft.CodeAnalysis.SymbolEqualityComparer.Equals(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolEqualityComparer.GetHashCode(Microsoft.CodeAnalysis.ISymbol) +F:Microsoft.CodeAnalysis.SymbolEqualityComparer.IncludeNullability +T:Microsoft.CodeAnalysis.SymbolFilter +F:Microsoft.CodeAnalysis.SymbolFilter.All +F:Microsoft.CodeAnalysis.SymbolFilter.Member +F:Microsoft.CodeAnalysis.SymbolFilter.Namespace +F:Microsoft.CodeAnalysis.SymbolFilter.None +F:Microsoft.CodeAnalysis.SymbolFilter.Type +F:Microsoft.CodeAnalysis.SymbolFilter.TypeAndMember +F:Microsoft.CodeAnalysis.SymbolFilter.value__ +T:Microsoft.CodeAnalysis.SymbolInfo +M:Microsoft.CodeAnalysis.SymbolInfo.Equals(Microsoft.CodeAnalysis.SymbolInfo) +M:Microsoft.CodeAnalysis.SymbolInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.SymbolInfo.GetHashCode +M:Microsoft.CodeAnalysis.SymbolInfo.get_CandidateReason +M:Microsoft.CodeAnalysis.SymbolInfo.get_CandidateSymbols +M:Microsoft.CodeAnalysis.SymbolInfo.get_Symbol +T:Microsoft.CodeAnalysis.SymbolKind +F:Microsoft.CodeAnalysis.SymbolKind.Alias +F:Microsoft.CodeAnalysis.SymbolKind.ArrayType +F:Microsoft.CodeAnalysis.SymbolKind.Assembly +F:Microsoft.CodeAnalysis.SymbolKind.Discard +F:Microsoft.CodeAnalysis.SymbolKind.DynamicType +F:Microsoft.CodeAnalysis.SymbolKind.ErrorType +F:Microsoft.CodeAnalysis.SymbolKind.Event +F:Microsoft.CodeAnalysis.SymbolKind.Field +F:Microsoft.CodeAnalysis.SymbolKind.FunctionPointerType +F:Microsoft.CodeAnalysis.SymbolKind.Label +F:Microsoft.CodeAnalysis.SymbolKind.Local +F:Microsoft.CodeAnalysis.SymbolKind.Method +F:Microsoft.CodeAnalysis.SymbolKind.NamedType +F:Microsoft.CodeAnalysis.SymbolKind.Namespace +F:Microsoft.CodeAnalysis.SymbolKind.NetModule +F:Microsoft.CodeAnalysis.SymbolKind.Parameter +F:Microsoft.CodeAnalysis.SymbolKind.PointerType +F:Microsoft.CodeAnalysis.SymbolKind.Preprocessing +F:Microsoft.CodeAnalysis.SymbolKind.Property +F:Microsoft.CodeAnalysis.SymbolKind.RangeVariable +F:Microsoft.CodeAnalysis.SymbolKind.TypeParameter +F:Microsoft.CodeAnalysis.SymbolKind.value__ +T:Microsoft.CodeAnalysis.SymbolVisitor +M:Microsoft.CodeAnalysis.SymbolVisitor.#ctor +M:Microsoft.CodeAnalysis.SymbolVisitor.DefaultVisit(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.Visit(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitAlias(Microsoft.CodeAnalysis.IAliasSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitArrayType(Microsoft.CodeAnalysis.IArrayTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitAssembly(Microsoft.CodeAnalysis.IAssemblySymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitDiscard(Microsoft.CodeAnalysis.IDiscardSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitDynamicType(Microsoft.CodeAnalysis.IDynamicTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitEvent(Microsoft.CodeAnalysis.IEventSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitField(Microsoft.CodeAnalysis.IFieldSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitFunctionPointerType(Microsoft.CodeAnalysis.IFunctionPointerTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitLabel(Microsoft.CodeAnalysis.ILabelSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitLocal(Microsoft.CodeAnalysis.ILocalSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitMethod(Microsoft.CodeAnalysis.IMethodSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitModule(Microsoft.CodeAnalysis.IModuleSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitNamedType(Microsoft.CodeAnalysis.INamedTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitParameter(Microsoft.CodeAnalysis.IParameterSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitPointerType(Microsoft.CodeAnalysis.IPointerTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitProperty(Microsoft.CodeAnalysis.IPropertySymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitRangeVariable(Microsoft.CodeAnalysis.IRangeVariableSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitTypeParameter(Microsoft.CodeAnalysis.ITypeParameterSymbol) +T:Microsoft.CodeAnalysis.SymbolVisitor`1 +M:Microsoft.CodeAnalysis.SymbolVisitor`1.#ctor +M:Microsoft.CodeAnalysis.SymbolVisitor`1.DefaultVisit(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.Visit(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitAlias(Microsoft.CodeAnalysis.IAliasSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitArrayType(Microsoft.CodeAnalysis.IArrayTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitAssembly(Microsoft.CodeAnalysis.IAssemblySymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitDiscard(Microsoft.CodeAnalysis.IDiscardSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitDynamicType(Microsoft.CodeAnalysis.IDynamicTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitEvent(Microsoft.CodeAnalysis.IEventSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitField(Microsoft.CodeAnalysis.IFieldSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitFunctionPointerType(Microsoft.CodeAnalysis.IFunctionPointerTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitLabel(Microsoft.CodeAnalysis.ILabelSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitLocal(Microsoft.CodeAnalysis.ILocalSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitMethod(Microsoft.CodeAnalysis.IMethodSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitModule(Microsoft.CodeAnalysis.IModuleSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitNamedType(Microsoft.CodeAnalysis.INamedTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitParameter(Microsoft.CodeAnalysis.IParameterSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitPointerType(Microsoft.CodeAnalysis.IPointerTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitProperty(Microsoft.CodeAnalysis.IPropertySymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitRangeVariable(Microsoft.CodeAnalysis.IRangeVariableSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitTypeParameter(Microsoft.CodeAnalysis.ITypeParameterSymbol) +T:Microsoft.CodeAnalysis.SymbolVisitor`2 +M:Microsoft.CodeAnalysis.SymbolVisitor`2.#ctor +M:Microsoft.CodeAnalysis.SymbolVisitor`2.DefaultVisit(Microsoft.CodeAnalysis.ISymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.Visit(Microsoft.CodeAnalysis.ISymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitAlias(Microsoft.CodeAnalysis.IAliasSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitArrayType(Microsoft.CodeAnalysis.IArrayTypeSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitAssembly(Microsoft.CodeAnalysis.IAssemblySymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitDiscard(Microsoft.CodeAnalysis.IDiscardSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitDynamicType(Microsoft.CodeAnalysis.IDynamicTypeSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitEvent(Microsoft.CodeAnalysis.IEventSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitField(Microsoft.CodeAnalysis.IFieldSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitFunctionPointerType(Microsoft.CodeAnalysis.IFunctionPointerTypeSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitLabel(Microsoft.CodeAnalysis.ILabelSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitLocal(Microsoft.CodeAnalysis.ILocalSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitMethod(Microsoft.CodeAnalysis.IMethodSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitModule(Microsoft.CodeAnalysis.IModuleSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitNamedType(Microsoft.CodeAnalysis.INamedTypeSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitNamespace(Microsoft.CodeAnalysis.INamespaceSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitParameter(Microsoft.CodeAnalysis.IParameterSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitPointerType(Microsoft.CodeAnalysis.IPointerTypeSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitProperty(Microsoft.CodeAnalysis.IPropertySymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitRangeVariable(Microsoft.CodeAnalysis.IRangeVariableSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitTypeParameter(Microsoft.CodeAnalysis.ITypeParameterSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.get_DefaultResult +T:Microsoft.CodeAnalysis.SyntaxAnnotation +M:Microsoft.CodeAnalysis.SyntaxAnnotation.#ctor +M:Microsoft.CodeAnalysis.SyntaxAnnotation.#ctor(System.String) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.#ctor(System.String,System.String) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.Equals(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxAnnotation.get_Data +M:Microsoft.CodeAnalysis.SyntaxAnnotation.get_ElasticAnnotation +M:Microsoft.CodeAnalysis.SyntaxAnnotation.get_Kind +M:Microsoft.CodeAnalysis.SyntaxAnnotation.op_Equality(Microsoft.CodeAnalysis.SyntaxAnnotation,Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.op_Inequality(Microsoft.CodeAnalysis.SyntaxAnnotation,Microsoft.CodeAnalysis.SyntaxAnnotation) +T:Microsoft.CodeAnalysis.SyntaxContextReceiverCreator +M:Microsoft.CodeAnalysis.SyntaxContextReceiverCreator.#ctor(System.Object,System.IntPtr) +M:Microsoft.CodeAnalysis.SyntaxContextReceiverCreator.BeginInvoke(System.AsyncCallback,System.Object) +M:Microsoft.CodeAnalysis.SyntaxContextReceiverCreator.EndInvoke(System.IAsyncResult) +M:Microsoft.CodeAnalysis.SyntaxContextReceiverCreator.Invoke +T:Microsoft.CodeAnalysis.SyntaxList +M:Microsoft.CodeAnalysis.SyntaxList.Create``1(System.ReadOnlySpan{``0}) +T:Microsoft.CodeAnalysis.SyntaxList`1 +M:Microsoft.CodeAnalysis.SyntaxList`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.#ctor(`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.Add(`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.Any +T:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator +M:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator.Reset +M:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxList`1.Equals(Microsoft.CodeAnalysis.SyntaxList{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxList`1.First +M:Microsoft.CodeAnalysis.SyntaxList`1.FirstOrDefault +M:Microsoft.CodeAnalysis.SyntaxList`1.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxList`1.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxList`1.IndexOf(System.Func{`0,System.Boolean}) +M:Microsoft.CodeAnalysis.SyntaxList`1.IndexOf(`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.Insert(System.Int32,`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.Last +M:Microsoft.CodeAnalysis.SyntaxList`1.LastIndexOf(System.Func{`0,System.Boolean}) +M:Microsoft.CodeAnalysis.SyntaxList`1.LastIndexOf(`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.LastOrDefault +M:Microsoft.CodeAnalysis.SyntaxList`1.Remove(`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.RemoveAt(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxList`1.Replace(`0,`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.ReplaceRange(`0,System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.ToFullString +M:Microsoft.CodeAnalysis.SyntaxList`1.ToString +M:Microsoft.CodeAnalysis.SyntaxList`1.get_Count +M:Microsoft.CodeAnalysis.SyntaxList`1.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxList`1.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxList`1.get_Span +M:Microsoft.CodeAnalysis.SyntaxList`1.op_Equality(Microsoft.CodeAnalysis.SyntaxList{`0},Microsoft.CodeAnalysis.SyntaxList{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.op_Explicit(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.SyntaxNode})~Microsoft.CodeAnalysis.SyntaxList{`0} +M:Microsoft.CodeAnalysis.SyntaxList`1.op_Implicit(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxList`1.op_Implicit(Microsoft.CodeAnalysis.SyntaxList{`0})~Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.SyntaxNode} +M:Microsoft.CodeAnalysis.SyntaxList`1.op_Inequality(Microsoft.CodeAnalysis.SyntaxList{`0},Microsoft.CodeAnalysis.SyntaxList{`0}) +T:Microsoft.CodeAnalysis.SyntaxNode +M:Microsoft.CodeAnalysis.SyntaxNode.Ancestors(System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.AncestorsAndSelf(System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.ChildNodes +M:Microsoft.CodeAnalysis.SyntaxNode.ChildNodesAndTokens +M:Microsoft.CodeAnalysis.SyntaxNode.ChildThatContainsPosition(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNode.ChildTokens +M:Microsoft.CodeAnalysis.SyntaxNode.Contains(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNode.ContainsDirective(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNode.CopyAnnotationsTo``1(``0) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodes(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodes(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndSelf(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndSelf(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndTokens(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndTokens(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndTokensAndSelf(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndTokensAndSelf(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantTokens(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantTokens(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantTrivia(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantTrivia(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.EquivalentToCore(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNode.FindNode(Microsoft.CodeAnalysis.Text.TextSpan,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FindToken(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FindTokenCore(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FindTokenCore(System.Int32,System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,System.Boolean}) +M:Microsoft.CodeAnalysis.SyntaxNode.FindTrivia(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FindTrivia(System.Int32,System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,System.Boolean}) +M:Microsoft.CodeAnalysis.SyntaxNode.FindTriviaCore(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FirstAncestorOrSelf``1(System.Func{``0,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FirstAncestorOrSelf``2(System.Func{``0,``1,System.Boolean},``1,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedNodes(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedNodes(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedNodesAndTokens(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedNodesAndTokens(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedNodesAndTokens(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedTokens(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedTokens(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedTrivia(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedTrivia(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedTrivia(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotations(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.GetDiagnostics +M:Microsoft.CodeAnalysis.SyntaxNode.GetFirstToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.GetLastToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.GetLeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.GetLocation +M:Microsoft.CodeAnalysis.SyntaxNode.GetRedAtZero``1(``0@) +M:Microsoft.CodeAnalysis.SyntaxNode.GetRed``1(``0@,System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNode.GetReference +M:Microsoft.CodeAnalysis.SyntaxNode.GetText(System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm) +M:Microsoft.CodeAnalysis.SyntaxNode.GetTrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.HasAnnotation(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNode.HasAnnotations(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.SyntaxNode.HasAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.InsertNodesInListCore(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.InsertTokensInListCore(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.InsertTriviaInListCore(Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNode.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxNode,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.IsEquivalentToCore(Microsoft.CodeAnalysis.SyntaxNode,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.IsIncrementallyIdenticalTo(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNode.IsPartOfStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.NormalizeWhitespaceCore(System.String,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.RemoveNodesCore(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},Microsoft.CodeAnalysis.SyntaxRemoveOptions) +M:Microsoft.CodeAnalysis.SyntaxNode.ReplaceCore``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``0,Microsoft.CodeAnalysis.SyntaxNode},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Func{Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNode.ReplaceNodeInListCore(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNode.ReplaceTokenInListCore(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxNode.ReplaceTriviaInListCore(Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNode.SerializeTo(System.IO.Stream,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxNode.ToFullString +M:Microsoft.CodeAnalysis.SyntaxNode.ToString +M:Microsoft.CodeAnalysis.SyntaxNode.WriteTo(System.IO.TextWriter) +M:Microsoft.CodeAnalysis.SyntaxNode.get_ContainsAnnotations +M:Microsoft.CodeAnalysis.SyntaxNode.get_ContainsDiagnostics +M:Microsoft.CodeAnalysis.SyntaxNode.get_ContainsDirectives +M:Microsoft.CodeAnalysis.SyntaxNode.get_ContainsSkippedText +M:Microsoft.CodeAnalysis.SyntaxNode.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxNode.get_HasLeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.get_HasStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.get_HasTrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.get_IsMissing +M:Microsoft.CodeAnalysis.SyntaxNode.get_IsStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.get_KindText +M:Microsoft.CodeAnalysis.SyntaxNode.get_Language +M:Microsoft.CodeAnalysis.SyntaxNode.get_Parent +M:Microsoft.CodeAnalysis.SyntaxNode.get_ParentTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.get_RawKind +M:Microsoft.CodeAnalysis.SyntaxNode.get_Span +M:Microsoft.CodeAnalysis.SyntaxNode.get_SpanStart +M:Microsoft.CodeAnalysis.SyntaxNode.get_SyntaxTree +M:Microsoft.CodeAnalysis.SyntaxNode.get_SyntaxTreeCore +T:Microsoft.CodeAnalysis.SyntaxNodeExtensions +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.GetCurrentNode``1(Microsoft.CodeAnalysis.SyntaxNode,``0) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.GetCurrentNodes``1(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{``0}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.GetCurrentNodes``1(Microsoft.CodeAnalysis.SyntaxNode,``0) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertNodesAfter``1(``0,Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertNodesBefore``1(``0,Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertTokensAfter``1(``0,Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertTokensBefore``1(``0,Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertTriviaAfter``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertTriviaBefore``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.NormalizeWhitespace``1(``0,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.NormalizeWhitespace``1(``0,System.String,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.RemoveNode``1(``0,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxRemoveOptions) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.RemoveNodes``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},Microsoft.CodeAnalysis.SyntaxRemoveOptions) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceNode``1(``0,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceNode``1(``0,Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceNodes``2(``0,System.Collections.Generic.IEnumerable{``1},System.Func{``1,``1,Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceSyntax``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},System.Func{Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Func{Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceToken``1(``0,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceToken``1(``0,Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceTokens``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Func{Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceTrivia``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.TrackNodes``1(``0,Microsoft.CodeAnalysis.SyntaxNode[]) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.TrackNodes``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithLeadingTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithLeadingTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithLeadingTrivia``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithTrailingTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithTrailingTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithTrailingTrivia``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithTriviaFrom``1(``0,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithoutLeadingTrivia``1(``0) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithoutTrailingTrivia``1(``0) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithoutTrivia(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithoutTrivia``1(``0) +T:Microsoft.CodeAnalysis.SyntaxNodeOrToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.AsNode +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.AsToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.ChildNodesAndTokens +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.Equals(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetAnnotations(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetDiagnostics +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetFirstChildIndexSpanningPosition(Microsoft.CodeAnalysis.SyntaxNode,System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetLeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetLocation +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetNextSibling +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetPreviousSibling +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetTrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.HasAnnotation(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.HasAnnotations(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.HasAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.IsIncrementallyIdenticalTo(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.ToFullString +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.ToString +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithAdditionalAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithAdditionalAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithLeadingTrivia(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithLeadingTrivia(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithTrailingTrivia(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithTrailingTrivia(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithoutAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithoutAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithoutAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WriteTo(System.IO.TextWriter) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_ContainsAnnotations +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_ContainsDiagnostics +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_ContainsDirectives +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_HasLeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_HasTrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_IsMissing +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_IsNode +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_IsToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_Language +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_Parent +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_RawKind +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_Span +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_SpanStart +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_SyntaxTree +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Equality(Microsoft.CodeAnalysis.SyntaxNodeOrToken,Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Explicit(Microsoft.CodeAnalysis.SyntaxNodeOrToken)~Microsoft.CodeAnalysis.SyntaxNode +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Explicit(Microsoft.CodeAnalysis.SyntaxNodeOrToken)~Microsoft.CodeAnalysis.SyntaxToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Implicit(Microsoft.CodeAnalysis.SyntaxNode)~Microsoft.CodeAnalysis.SyntaxNodeOrToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Implicit(Microsoft.CodeAnalysis.SyntaxToken)~Microsoft.CodeAnalysis.SyntaxNodeOrToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Inequality(Microsoft.CodeAnalysis.SyntaxNodeOrToken,Microsoft.CodeAnalysis.SyntaxNodeOrToken) +T:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.#ctor(Microsoft.CodeAnalysis.SyntaxNodeOrToken[]) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.#ctor(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Add(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.AddRange(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Any +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Create(System.ReadOnlySpan{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +T:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Enumerator +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Equals(Microsoft.CodeAnalysis.SyntaxNodeOrTokenList) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.First +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.FirstOrDefault +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.IndexOf(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Insert(System.Int32,Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Last +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.LastOrDefault +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Remove(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.RemoveAt(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Replace(Microsoft.CodeAnalysis.SyntaxNodeOrToken,Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.ReplaceRange(Microsoft.CodeAnalysis.SyntaxNodeOrToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.ToFullString +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.ToString +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.get_Count +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.get_Span +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.op_Equality(Microsoft.CodeAnalysis.SyntaxNodeOrTokenList,Microsoft.CodeAnalysis.SyntaxNodeOrTokenList) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.op_Inequality(Microsoft.CodeAnalysis.SyntaxNodeOrTokenList,Microsoft.CodeAnalysis.SyntaxNodeOrTokenList) +T:Microsoft.CodeAnalysis.SyntaxReceiverCreator +M:Microsoft.CodeAnalysis.SyntaxReceiverCreator.#ctor(System.Object,System.IntPtr) +M:Microsoft.CodeAnalysis.SyntaxReceiverCreator.BeginInvoke(System.AsyncCallback,System.Object) +M:Microsoft.CodeAnalysis.SyntaxReceiverCreator.EndInvoke(System.IAsyncResult) +M:Microsoft.CodeAnalysis.SyntaxReceiverCreator.Invoke +T:Microsoft.CodeAnalysis.SyntaxReference +M:Microsoft.CodeAnalysis.SyntaxReference.#ctor +M:Microsoft.CodeAnalysis.SyntaxReference.GetSyntax(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxReference.GetSyntaxAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxReference.get_Span +M:Microsoft.CodeAnalysis.SyntaxReference.get_SyntaxTree +T:Microsoft.CodeAnalysis.SyntaxRemoveOptions +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.AddElasticMarker +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepDirectives +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepEndOfLine +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepExteriorTrivia +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepLeadingTrivia +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepNoTrivia +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepTrailingTrivia +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepUnbalancedDirectives +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.value__ +T:Microsoft.CodeAnalysis.SyntaxToken +M:Microsoft.CodeAnalysis.SyntaxToken.CopyAnnotationsTo(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.Equals(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxToken.GetAllTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.GetAnnotations(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.SyntaxToken.GetAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxToken.GetAnnotations(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxToken.GetDiagnostics +M:Microsoft.CodeAnalysis.SyntaxToken.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxToken.GetLocation +M:Microsoft.CodeAnalysis.SyntaxToken.GetNextToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxToken.GetPreviousToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxToken.HasAnnotation(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxToken.HasAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxToken.HasAnnotations(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxToken.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.IsIncrementallyIdenticalTo(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.IsPartOfStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.ToFullString +M:Microsoft.CodeAnalysis.SyntaxToken.ToString +M:Microsoft.CodeAnalysis.SyntaxToken.WithAdditionalAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxToken.WithAdditionalAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxToken.WithLeadingTrivia(Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxToken.WithLeadingTrivia(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxToken.WithLeadingTrivia(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxToken.WithTrailingTrivia(Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxToken.WithTrailingTrivia(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxToken.WithTrailingTrivia(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxToken.WithTriviaFrom(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.WithoutAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxToken.WithoutAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxToken.WithoutAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxToken.WriteTo(System.IO.TextWriter) +M:Microsoft.CodeAnalysis.SyntaxToken.get_ContainsAnnotations +M:Microsoft.CodeAnalysis.SyntaxToken.get_ContainsDiagnostics +M:Microsoft.CodeAnalysis.SyntaxToken.get_ContainsDirectives +M:Microsoft.CodeAnalysis.SyntaxToken.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxToken.get_HasLeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.get_HasStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.get_HasTrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.get_IsMissing +M:Microsoft.CodeAnalysis.SyntaxToken.get_Language +M:Microsoft.CodeAnalysis.SyntaxToken.get_LeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.get_Parent +M:Microsoft.CodeAnalysis.SyntaxToken.get_RawKind +M:Microsoft.CodeAnalysis.SyntaxToken.get_Span +M:Microsoft.CodeAnalysis.SyntaxToken.get_SpanStart +M:Microsoft.CodeAnalysis.SyntaxToken.get_SyntaxTree +M:Microsoft.CodeAnalysis.SyntaxToken.get_Text +M:Microsoft.CodeAnalysis.SyntaxToken.get_TrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.get_Value +M:Microsoft.CodeAnalysis.SyntaxToken.get_ValueText +M:Microsoft.CodeAnalysis.SyntaxToken.op_Equality(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.op_Inequality(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +T:Microsoft.CodeAnalysis.SyntaxTokenList +M:Microsoft.CodeAnalysis.SyntaxTokenList.#ctor(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.#ctor(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.SyntaxTokenList.#ctor(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Add(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.AddRange(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Any +M:Microsoft.CodeAnalysis.SyntaxTokenList.Create(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Create(System.ReadOnlySpan{Microsoft.CodeAnalysis.SyntaxToken}) +T:Microsoft.CodeAnalysis.SyntaxTokenList.Enumerator +M:Microsoft.CodeAnalysis.SyntaxTokenList.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTokenList.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxTokenList.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxTokenList.Equals(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTokenList.First +M:Microsoft.CodeAnalysis.SyntaxTokenList.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxTokenList.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTokenList.IndexOf(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Insert(System.Int32,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Last +M:Microsoft.CodeAnalysis.SyntaxTokenList.Remove(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.RemoveAt(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Replace(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.ReplaceRange(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reverse +T:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.#ctor(Microsoft.CodeAnalysis.SyntaxTokenList) +T:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Enumerator +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Equals(Microsoft.CodeAnalysis.SyntaxTokenList.Reversed) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTokenList.ToFullString +M:Microsoft.CodeAnalysis.SyntaxTokenList.ToString +M:Microsoft.CodeAnalysis.SyntaxTokenList.get_Count +M:Microsoft.CodeAnalysis.SyntaxTokenList.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxTokenList.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxTokenList.get_Span +M:Microsoft.CodeAnalysis.SyntaxTokenList.op_Equality(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.SyntaxTokenList.op_Inequality(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxTokenList) +T:Microsoft.CodeAnalysis.SyntaxTree +M:Microsoft.CodeAnalysis.SyntaxTree.#ctor +F:Microsoft.CodeAnalysis.SyntaxTree.EmptyDiagnosticOptions +M:Microsoft.CodeAnalysis.SyntaxTree.GetChangedSpans(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.SyntaxTree.GetChanges(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.SyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTree.GetDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetLineMappings(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetLineSpan(Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetLineVisibility(System.Int32,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetLocation(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.SyntaxTree.GetMappedLineSpan(Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetReference(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxTree.GetRoot(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetRootAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetRootAsyncCore(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetRootCore(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetText(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetTextAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.HasHiddenRegions +M:Microsoft.CodeAnalysis.SyntaxTree.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxTree,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxTree.ToString +M:Microsoft.CodeAnalysis.SyntaxTree.TryGetRoot(Microsoft.CodeAnalysis.SyntaxNode@) +M:Microsoft.CodeAnalysis.SyntaxTree.TryGetRootCore(Microsoft.CodeAnalysis.SyntaxNode@) +M:Microsoft.CodeAnalysis.SyntaxTree.TryGetText(Microsoft.CodeAnalysis.Text.SourceText@) +M:Microsoft.CodeAnalysis.SyntaxTree.WithChangedText(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.SyntaxTree.WithDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.SyntaxTree.WithFilePath(System.String) +M:Microsoft.CodeAnalysis.SyntaxTree.WithRootAndOptions(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.ParseOptions) +M:Microsoft.CodeAnalysis.SyntaxTree.get_DiagnosticOptions +M:Microsoft.CodeAnalysis.SyntaxTree.get_Encoding +M:Microsoft.CodeAnalysis.SyntaxTree.get_FilePath +M:Microsoft.CodeAnalysis.SyntaxTree.get_HasCompilationUnitRoot +M:Microsoft.CodeAnalysis.SyntaxTree.get_Length +M:Microsoft.CodeAnalysis.SyntaxTree.get_Options +M:Microsoft.CodeAnalysis.SyntaxTree.get_OptionsCore +T:Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider +M:Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider.#ctor +M:Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider.IsGenerated(Microsoft.CodeAnalysis.SyntaxTree,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider.TryGetDiagnosticValue(Microsoft.CodeAnalysis.SyntaxTree,System.String,System.Threading.CancellationToken,Microsoft.CodeAnalysis.ReportDiagnostic@) +M:Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider.TryGetGlobalDiagnosticValue(System.String,System.Threading.CancellationToken,Microsoft.CodeAnalysis.ReportDiagnostic@) +T:Microsoft.CodeAnalysis.SyntaxTrivia +M:Microsoft.CodeAnalysis.SyntaxTrivia.CopyAnnotationsTo(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTrivia.Equals(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTrivia.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetAnnotations(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetDiagnostics +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetLocation +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetStructure +M:Microsoft.CodeAnalysis.SyntaxTrivia.HasAnnotation(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxTrivia.HasAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxTrivia.HasAnnotations(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxTrivia.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTrivia.IsPartOfStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxTrivia.ToFullString +M:Microsoft.CodeAnalysis.SyntaxTrivia.ToString +M:Microsoft.CodeAnalysis.SyntaxTrivia.WithAdditionalAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxTrivia.WithAdditionalAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxTrivia.WithoutAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxTrivia.WithoutAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxTrivia.WithoutAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxTrivia.WriteTo(System.IO.TextWriter) +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_ContainsDiagnostics +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_HasStructure +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_IsDirective +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_Language +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_RawKind +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_Span +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_SpanStart +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_SyntaxTree +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_Token +M:Microsoft.CodeAnalysis.SyntaxTrivia.op_Equality(Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTrivia.op_Inequality(Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia) +T:Microsoft.CodeAnalysis.SyntaxTriviaList +M:Microsoft.CodeAnalysis.SyntaxTriviaList.#ctor(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.#ctor(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.#ctor(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Add(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.AddRange(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Any +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Create(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Create(System.ReadOnlySpan{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.ElementAt(System.Int32) +T:Microsoft.CodeAnalysis.SyntaxTriviaList.Enumerator +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Equals(Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.First +M:Microsoft.CodeAnalysis.SyntaxTriviaList.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxTriviaList.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTriviaList.IndexOf(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Insert(System.Int32,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Last +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Remove(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.RemoveAt(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Replace(Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.ReplaceRange(Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reverse +T:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.#ctor(Microsoft.CodeAnalysis.SyntaxTriviaList) +T:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.Enumerator +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.Equals(Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTriviaList.ToFullString +M:Microsoft.CodeAnalysis.SyntaxTriviaList.ToString +M:Microsoft.CodeAnalysis.SyntaxTriviaList.get_Count +M:Microsoft.CodeAnalysis.SyntaxTriviaList.get_Empty +M:Microsoft.CodeAnalysis.SyntaxTriviaList.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxTriviaList.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.get_Span +M:Microsoft.CodeAnalysis.SyntaxTriviaList.op_Equality(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.op_Inequality(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.SyntaxTriviaList) +T:Microsoft.CodeAnalysis.SyntaxValueProvider +M:Microsoft.CodeAnalysis.SyntaxValueProvider.CreateSyntaxProvider``1(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken,System.Boolean},System.Func{Microsoft.CodeAnalysis.GeneratorSyntaxContext,System.Threading.CancellationToken,``0}) +M:Microsoft.CodeAnalysis.SyntaxValueProvider.ForAttributeWithMetadataName``1(System.String,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken,System.Boolean},System.Func{Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext,System.Threading.CancellationToken,``0}) +T:Microsoft.CodeAnalysis.SyntaxWalker +M:Microsoft.CodeAnalysis.SyntaxWalker.#ctor(Microsoft.CodeAnalysis.SyntaxWalkerDepth) +M:Microsoft.CodeAnalysis.SyntaxWalker.Visit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxWalker.VisitToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxWalker.VisitTrivia(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxWalker.get_Depth +T:Microsoft.CodeAnalysis.SyntaxWalkerDepth +F:Microsoft.CodeAnalysis.SyntaxWalkerDepth.Node +F:Microsoft.CodeAnalysis.SyntaxWalkerDepth.StructuredTrivia +F:Microsoft.CodeAnalysis.SyntaxWalkerDepth.Token +F:Microsoft.CodeAnalysis.SyntaxWalkerDepth.Trivia +F:Microsoft.CodeAnalysis.SyntaxWalkerDepth.value__ +T:Microsoft.CodeAnalysis.Text.LinePosition +M:Microsoft.CodeAnalysis.Text.LinePosition.#ctor(System.Int32,System.Int32) +M:Microsoft.CodeAnalysis.Text.LinePosition.CompareTo(Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.Equals(Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.LinePosition.GetHashCode +M:Microsoft.CodeAnalysis.Text.LinePosition.ToString +M:Microsoft.CodeAnalysis.Text.LinePosition.get_Character +M:Microsoft.CodeAnalysis.Text.LinePosition.get_Line +M:Microsoft.CodeAnalysis.Text.LinePosition.get_Zero +M:Microsoft.CodeAnalysis.Text.LinePosition.op_Equality(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.op_GreaterThan(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.op_GreaterThanOrEqual(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.op_Inequality(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.op_LessThan(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.op_LessThanOrEqual(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +T:Microsoft.CodeAnalysis.Text.LinePositionSpan +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.#ctor(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.Equals(Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.GetHashCode +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.ToString +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.get_End +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.get_Start +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.op_Equality(Microsoft.CodeAnalysis.Text.LinePositionSpan,Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.op_Inequality(Microsoft.CodeAnalysis.Text.LinePositionSpan,Microsoft.CodeAnalysis.Text.LinePositionSpan) +T:Microsoft.CodeAnalysis.Text.SourceHashAlgorithm +F:Microsoft.CodeAnalysis.Text.SourceHashAlgorithm.None +F:Microsoft.CodeAnalysis.Text.SourceHashAlgorithm.Sha1 +F:Microsoft.CodeAnalysis.Text.SourceHashAlgorithm.Sha256 +F:Microsoft.CodeAnalysis.Text.SourceHashAlgorithm.value__ +T:Microsoft.CodeAnalysis.Text.SourceText +M:Microsoft.CodeAnalysis.Text.SourceText.#ctor(System.Collections.Immutable.ImmutableArray{System.Byte},Microsoft.CodeAnalysis.Text.SourceHashAlgorithm,Microsoft.CodeAnalysis.Text.SourceTextContainer) +M:Microsoft.CodeAnalysis.Text.SourceText.ContentEquals(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.Text.SourceText.ContentEqualsImpl(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.Text.SourceText.CopyTo(System.Int32,System.Char[],System.Int32,System.Int32) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.Byte[],System.Int32,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm,System.Boolean) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.Byte[],System.Int32,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.IO.Stream,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm,System.Boolean) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.IO.Stream,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.IO.TextReader,System.Int32,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.String,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm) +M:Microsoft.CodeAnalysis.Text.SourceText.GetChangeRanges(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.Text.SourceText.GetChecksum +M:Microsoft.CodeAnalysis.Text.SourceText.GetContentHash +M:Microsoft.CodeAnalysis.Text.SourceText.GetLinesCore +M:Microsoft.CodeAnalysis.Text.SourceText.GetSubText(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.SourceText.GetSubText(System.Int32) +M:Microsoft.CodeAnalysis.Text.SourceText.GetTextChanges(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.Text.SourceText.Replace(Microsoft.CodeAnalysis.Text.TextSpan,System.String) +M:Microsoft.CodeAnalysis.Text.SourceText.Replace(System.Int32,System.Int32,System.String) +M:Microsoft.CodeAnalysis.Text.SourceText.ToString +M:Microsoft.CodeAnalysis.Text.SourceText.ToString(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.SourceText.WithChanges(Microsoft.CodeAnalysis.Text.TextChange[]) +M:Microsoft.CodeAnalysis.Text.SourceText.WithChanges(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Text.TextChange}) +M:Microsoft.CodeAnalysis.Text.SourceText.Write(System.IO.TextWriter,Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Text.SourceText.Write(System.IO.TextWriter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Text.SourceText.get_CanBeEmbedded +M:Microsoft.CodeAnalysis.Text.SourceText.get_ChecksumAlgorithm +M:Microsoft.CodeAnalysis.Text.SourceText.get_Container +M:Microsoft.CodeAnalysis.Text.SourceText.get_Encoding +M:Microsoft.CodeAnalysis.Text.SourceText.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.Text.SourceText.get_Length +M:Microsoft.CodeAnalysis.Text.SourceText.get_Lines +T:Microsoft.CodeAnalysis.Text.SourceTextContainer +M:Microsoft.CodeAnalysis.Text.SourceTextContainer.#ctor +M:Microsoft.CodeAnalysis.Text.SourceTextContainer.add_TextChanged(System.EventHandler{Microsoft.CodeAnalysis.Text.TextChangeEventArgs}) +M:Microsoft.CodeAnalysis.Text.SourceTextContainer.get_CurrentText +M:Microsoft.CodeAnalysis.Text.SourceTextContainer.remove_TextChanged(System.EventHandler{Microsoft.CodeAnalysis.Text.TextChangeEventArgs}) +T:Microsoft.CodeAnalysis.Text.TextChange +M:Microsoft.CodeAnalysis.Text.TextChange.#ctor(Microsoft.CodeAnalysis.Text.TextSpan,System.String) +M:Microsoft.CodeAnalysis.Text.TextChange.Equals(Microsoft.CodeAnalysis.Text.TextChange) +M:Microsoft.CodeAnalysis.Text.TextChange.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.TextChange.GetHashCode +M:Microsoft.CodeAnalysis.Text.TextChange.ToString +M:Microsoft.CodeAnalysis.Text.TextChange.get_NewText +M:Microsoft.CodeAnalysis.Text.TextChange.get_NoChanges +M:Microsoft.CodeAnalysis.Text.TextChange.get_Span +M:Microsoft.CodeAnalysis.Text.TextChange.op_Equality(Microsoft.CodeAnalysis.Text.TextChange,Microsoft.CodeAnalysis.Text.TextChange) +M:Microsoft.CodeAnalysis.Text.TextChange.op_Implicit(Microsoft.CodeAnalysis.Text.TextChange)~Microsoft.CodeAnalysis.Text.TextChangeRange +M:Microsoft.CodeAnalysis.Text.TextChange.op_Inequality(Microsoft.CodeAnalysis.Text.TextChange,Microsoft.CodeAnalysis.Text.TextChange) +T:Microsoft.CodeAnalysis.Text.TextChangeEventArgs +M:Microsoft.CodeAnalysis.Text.TextChangeEventArgs.#ctor(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Text.TextChangeRange[]) +M:Microsoft.CodeAnalysis.Text.TextChangeEventArgs.#ctor(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Text.SourceText,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Text.TextChangeRange}) +M:Microsoft.CodeAnalysis.Text.TextChangeEventArgs.get_Changes +M:Microsoft.CodeAnalysis.Text.TextChangeEventArgs.get_NewText +M:Microsoft.CodeAnalysis.Text.TextChangeEventArgs.get_OldText +T:Microsoft.CodeAnalysis.Text.TextChangeRange +M:Microsoft.CodeAnalysis.Text.TextChangeRange.#ctor(Microsoft.CodeAnalysis.Text.TextSpan,System.Int32) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.Collapse(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Text.TextChangeRange}) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.Equals(Microsoft.CodeAnalysis.Text.TextChangeRange) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.GetHashCode +M:Microsoft.CodeAnalysis.Text.TextChangeRange.ToString +M:Microsoft.CodeAnalysis.Text.TextChangeRange.get_NewLength +M:Microsoft.CodeAnalysis.Text.TextChangeRange.get_NoChanges +M:Microsoft.CodeAnalysis.Text.TextChangeRange.get_Span +M:Microsoft.CodeAnalysis.Text.TextChangeRange.op_Equality(Microsoft.CodeAnalysis.Text.TextChangeRange,Microsoft.CodeAnalysis.Text.TextChangeRange) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.op_Inequality(Microsoft.CodeAnalysis.Text.TextChangeRange,Microsoft.CodeAnalysis.Text.TextChangeRange) +T:Microsoft.CodeAnalysis.Text.TextLine +M:Microsoft.CodeAnalysis.Text.TextLine.Equals(Microsoft.CodeAnalysis.Text.TextLine) +M:Microsoft.CodeAnalysis.Text.TextLine.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.TextLine.FromSpan(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextLine.GetHashCode +M:Microsoft.CodeAnalysis.Text.TextLine.ToString +M:Microsoft.CodeAnalysis.Text.TextLine.get_End +M:Microsoft.CodeAnalysis.Text.TextLine.get_EndIncludingLineBreak +M:Microsoft.CodeAnalysis.Text.TextLine.get_LineNumber +M:Microsoft.CodeAnalysis.Text.TextLine.get_Span +M:Microsoft.CodeAnalysis.Text.TextLine.get_SpanIncludingLineBreak +M:Microsoft.CodeAnalysis.Text.TextLine.get_Start +M:Microsoft.CodeAnalysis.Text.TextLine.get_Text +M:Microsoft.CodeAnalysis.Text.TextLine.op_Equality(Microsoft.CodeAnalysis.Text.TextLine,Microsoft.CodeAnalysis.Text.TextLine) +M:Microsoft.CodeAnalysis.Text.TextLine.op_Inequality(Microsoft.CodeAnalysis.Text.TextLine,Microsoft.CodeAnalysis.Text.TextLine) +T:Microsoft.CodeAnalysis.Text.TextLineCollection +M:Microsoft.CodeAnalysis.Text.TextLineCollection.#ctor +T:Microsoft.CodeAnalysis.Text.TextLineCollection.Enumerator +M:Microsoft.CodeAnalysis.Text.TextLineCollection.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.Text.TextLineCollection.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.Text.TextLineCollection.Enumerator.get_Current +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetEnumerator +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetLineFromPosition(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetLinePosition(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetLinePositionSpan(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetPosition(Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetTextSpan(Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.IndexOf(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.get_Count +M:Microsoft.CodeAnalysis.Text.TextLineCollection.get_Item(System.Int32) +T:Microsoft.CodeAnalysis.Text.TextSpan +M:Microsoft.CodeAnalysis.Text.TextSpan.#ctor(System.Int32,System.Int32) +M:Microsoft.CodeAnalysis.Text.TextSpan.CompareTo(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.Contains(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.Contains(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextSpan.Equals(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.TextSpan.FromBounds(System.Int32,System.Int32) +M:Microsoft.CodeAnalysis.Text.TextSpan.GetHashCode +M:Microsoft.CodeAnalysis.Text.TextSpan.Intersection(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.IntersectsWith(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.IntersectsWith(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextSpan.Overlap(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.OverlapsWith(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.ToString +M:Microsoft.CodeAnalysis.Text.TextSpan.get_End +M:Microsoft.CodeAnalysis.Text.TextSpan.get_IsEmpty +M:Microsoft.CodeAnalysis.Text.TextSpan.get_Length +M:Microsoft.CodeAnalysis.Text.TextSpan.get_Start +M:Microsoft.CodeAnalysis.Text.TextSpan.op_Equality(Microsoft.CodeAnalysis.Text.TextSpan,Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.op_Inequality(Microsoft.CodeAnalysis.Text.TextSpan,Microsoft.CodeAnalysis.Text.TextSpan) +T:Microsoft.CodeAnalysis.TypeInfo +M:Microsoft.CodeAnalysis.TypeInfo.Equals(Microsoft.CodeAnalysis.TypeInfo) +M:Microsoft.CodeAnalysis.TypeInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.TypeInfo.GetHashCode +M:Microsoft.CodeAnalysis.TypeInfo.get_ConvertedNullability +M:Microsoft.CodeAnalysis.TypeInfo.get_ConvertedType +M:Microsoft.CodeAnalysis.TypeInfo.get_Nullability +M:Microsoft.CodeAnalysis.TypeInfo.get_Type +T:Microsoft.CodeAnalysis.TypeKind +F:Microsoft.CodeAnalysis.TypeKind.Array +F:Microsoft.CodeAnalysis.TypeKind.Class +F:Microsoft.CodeAnalysis.TypeKind.Delegate +F:Microsoft.CodeAnalysis.TypeKind.Dynamic +F:Microsoft.CodeAnalysis.TypeKind.Enum +F:Microsoft.CodeAnalysis.TypeKind.Error +F:Microsoft.CodeAnalysis.TypeKind.FunctionPointer +F:Microsoft.CodeAnalysis.TypeKind.Interface +F:Microsoft.CodeAnalysis.TypeKind.Module +F:Microsoft.CodeAnalysis.TypeKind.Pointer +F:Microsoft.CodeAnalysis.TypeKind.Struct +F:Microsoft.CodeAnalysis.TypeKind.Structure +F:Microsoft.CodeAnalysis.TypeKind.Submission +F:Microsoft.CodeAnalysis.TypeKind.TypeParameter +F:Microsoft.CodeAnalysis.TypeKind.Unknown +F:Microsoft.CodeAnalysis.TypeKind.value__ +T:Microsoft.CodeAnalysis.TypeParameterKind +F:Microsoft.CodeAnalysis.TypeParameterKind.Cref +F:Microsoft.CodeAnalysis.TypeParameterKind.Method +F:Microsoft.CodeAnalysis.TypeParameterKind.Type +F:Microsoft.CodeAnalysis.TypeParameterKind.value__ +T:Microsoft.CodeAnalysis.TypedConstant +M:Microsoft.CodeAnalysis.TypedConstant.Equals(Microsoft.CodeAnalysis.TypedConstant) +M:Microsoft.CodeAnalysis.TypedConstant.Equals(System.Object) +M:Microsoft.CodeAnalysis.TypedConstant.GetHashCode +M:Microsoft.CodeAnalysis.TypedConstant.get_IsNull +M:Microsoft.CodeAnalysis.TypedConstant.get_Kind +M:Microsoft.CodeAnalysis.TypedConstant.get_Type +M:Microsoft.CodeAnalysis.TypedConstant.get_Value +M:Microsoft.CodeAnalysis.TypedConstant.get_Values +T:Microsoft.CodeAnalysis.TypedConstantKind +F:Microsoft.CodeAnalysis.TypedConstantKind.Array +F:Microsoft.CodeAnalysis.TypedConstantKind.Enum +F:Microsoft.CodeAnalysis.TypedConstantKind.Error +F:Microsoft.CodeAnalysis.TypedConstantKind.Primitive +F:Microsoft.CodeAnalysis.TypedConstantKind.Type +F:Microsoft.CodeAnalysis.TypedConstantKind.value__ +T:Microsoft.CodeAnalysis.UnresolvedMetadataReference +M:Microsoft.CodeAnalysis.UnresolvedMetadataReference.get_Display +M:Microsoft.CodeAnalysis.UnresolvedMetadataReference.get_Reference +T:Microsoft.CodeAnalysis.VarianceKind +F:Microsoft.CodeAnalysis.VarianceKind.In +F:Microsoft.CodeAnalysis.VarianceKind.None +F:Microsoft.CodeAnalysis.VarianceKind.Out +F:Microsoft.CodeAnalysis.VarianceKind.value__ +T:Microsoft.CodeAnalysis.WellKnownDiagnosticTags +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.AnalyzerException +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.Build +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.CompilationEnd +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.Compiler +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.CustomObsolete +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.CustomSeverityConfigurable +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.EditAndContinue +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.NotConfigurable +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.Telemetry +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.Unnecessary +T:Microsoft.CodeAnalysis.WellKnownGeneratorInputs +F:Microsoft.CodeAnalysis.WellKnownGeneratorInputs.AdditionalTexts +F:Microsoft.CodeAnalysis.WellKnownGeneratorInputs.AnalyzerConfigOptions +F:Microsoft.CodeAnalysis.WellKnownGeneratorInputs.Compilation +F:Microsoft.CodeAnalysis.WellKnownGeneratorInputs.MetadataReferences +F:Microsoft.CodeAnalysis.WellKnownGeneratorInputs.ParseOptions +T:Microsoft.CodeAnalysis.WellKnownGeneratorOutputs +F:Microsoft.CodeAnalysis.WellKnownGeneratorOutputs.ImplementationSourceOutput +F:Microsoft.CodeAnalysis.WellKnownGeneratorOutputs.SourceOutput +T:Microsoft.CodeAnalysis.WellKnownMemberNames +F:Microsoft.CodeAnalysis.WellKnownMemberNames.AdditionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.BitwiseAndOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.BitwiseOrOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedAdditionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedDecrementOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedDivisionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedExplicitConversionName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedIncrementOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedMultiplyOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedSubtractionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedUnaryNegationOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CollectionInitializerAddMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ConcatenateOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CountPropertyName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CurrentPropertyName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DeconstructMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DecrementOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DefaultScriptClassName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DelegateBeginInvokeName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DelegateEndInvokeName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DelegateInvokeName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DestructorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DisposeAsyncMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DisposeMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DivisionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.EntryPointMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.EnumBackingFieldName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.EqualityOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ExclusiveOrOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ExplicitConversionName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ExponentOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.FalseOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GetAsyncEnumeratorMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GetAwaiter +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GetEnumeratorMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GetResult +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GreaterThanOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GreaterThanOrEqualOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ImplicitConversionName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.IncrementOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.Indexer +F:Microsoft.CodeAnalysis.WellKnownMemberNames.InequalityOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.InstanceConstructorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.IntegerDivisionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.IsCompleted +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LeftShiftOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LengthPropertyName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LessThanOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LessThanOrEqualOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LikeOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LogicalAndOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LogicalNotOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LogicalOrOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ModulusOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.MoveNextAsyncMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.MoveNextMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.MultiplyOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ObjectEquals +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ObjectGetHashCode +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ObjectToString +F:Microsoft.CodeAnalysis.WellKnownMemberNames.OnCompleted +F:Microsoft.CodeAnalysis.WellKnownMemberNames.OnesComplementOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.PrintMembersMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.RightShiftOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.SliceMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.StaticConstructorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.SubtractionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.TopLevelStatementsEntryPointMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.TopLevelStatementsEntryPointTypeName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.TrueOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.UnaryNegationOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.UnaryPlusOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.UnsignedLeftShiftOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.UnsignedRightShiftOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ValuePropertyName +T:Microsoft.CodeAnalysis.XmlFileResolver +M:Microsoft.CodeAnalysis.XmlFileResolver.#ctor(System.String) +M:Microsoft.CodeAnalysis.XmlFileResolver.Equals(System.Object) +M:Microsoft.CodeAnalysis.XmlFileResolver.FileExists(System.String) +M:Microsoft.CodeAnalysis.XmlFileResolver.GetHashCode +M:Microsoft.CodeAnalysis.XmlFileResolver.OpenRead(System.String) +M:Microsoft.CodeAnalysis.XmlFileResolver.ResolveReference(System.String,System.String) +M:Microsoft.CodeAnalysis.XmlFileResolver.get_BaseDirectory +M:Microsoft.CodeAnalysis.XmlFileResolver.get_Default +T:Microsoft.CodeAnalysis.XmlReferenceResolver \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Collections.Immutable.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Collections.Immutable.txt new file mode 100644 index 0000000000000..509027a2b32b4 --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Collections.Immutable.txt @@ -0,0 +1,783 @@ +T:System.Collections.Frozen.FrozenDictionary +M:System.Collections.Frozen.FrozenDictionary.ToFrozenDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Frozen.FrozenDictionary.ToFrozenDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Frozen.FrozenDictionary.ToFrozenDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1}) +T:System.Collections.Frozen.FrozenDictionary`2 +M:System.Collections.Frozen.FrozenDictionary`2.ContainsKey(`0) +M:System.Collections.Frozen.FrozenDictionary`2.CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32) +M:System.Collections.Frozen.FrozenDictionary`2.CopyTo(System.Span{System.Collections.Generic.KeyValuePair{`0,`1}}) +T:System.Collections.Frozen.FrozenDictionary`2.Enumerator +M:System.Collections.Frozen.FrozenDictionary`2.Enumerator.MoveNext +M:System.Collections.Frozen.FrozenDictionary`2.Enumerator.get_Current +M:System.Collections.Frozen.FrozenDictionary`2.GetEnumerator +M:System.Collections.Frozen.FrozenDictionary`2.GetValueRefOrNullRef(`0) +M:System.Collections.Frozen.FrozenDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Frozen.FrozenDictionary`2.get_Comparer +M:System.Collections.Frozen.FrozenDictionary`2.get_Count +M:System.Collections.Frozen.FrozenDictionary`2.get_Empty +M:System.Collections.Frozen.FrozenDictionary`2.get_Item(`0) +M:System.Collections.Frozen.FrozenDictionary`2.get_Keys +M:System.Collections.Frozen.FrozenDictionary`2.get_Values +T:System.Collections.Frozen.FrozenSet +M:System.Collections.Frozen.FrozenSet.ToFrozenSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +T:System.Collections.Frozen.FrozenSet`1 +M:System.Collections.Frozen.FrozenSet`1.Contains(`0) +M:System.Collections.Frozen.FrozenSet`1.CopyTo(System.Span{`0}) +M:System.Collections.Frozen.FrozenSet`1.CopyTo(`0[],System.Int32) +T:System.Collections.Frozen.FrozenSet`1.Enumerator +M:System.Collections.Frozen.FrozenSet`1.Enumerator.MoveNext +M:System.Collections.Frozen.FrozenSet`1.Enumerator.get_Current +M:System.Collections.Frozen.FrozenSet`1.GetEnumerator +M:System.Collections.Frozen.FrozenSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.TryGetValue(`0,`0@) +M:System.Collections.Frozen.FrozenSet`1.get_Comparer +M:System.Collections.Frozen.FrozenSet`1.get_Count +M:System.Collections.Frozen.FrozenSet`1.get_Empty +M:System.Collections.Frozen.FrozenSet`1.get_Items +T:System.Collections.Immutable.IImmutableDictionary`2 +M:System.Collections.Immutable.IImmutableDictionary`2.Add(`0,`1) +M:System.Collections.Immutable.IImmutableDictionary`2.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.IImmutableDictionary`2.Clear +M:System.Collections.Immutable.IImmutableDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.IImmutableDictionary`2.Remove(`0) +M:System.Collections.Immutable.IImmutableDictionary`2.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableDictionary`2.SetItem(`0,`1) +M:System.Collections.Immutable.IImmutableDictionary`2.SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.IImmutableDictionary`2.TryGetKey(`0,`0@) +T:System.Collections.Immutable.IImmutableList`1 +M:System.Collections.Immutable.IImmutableList`1.Add(`0) +M:System.Collections.Immutable.IImmutableList`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableList`1.Clear +M:System.Collections.Immutable.IImmutableList`1.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.IImmutableList`1.Insert(System.Int32,`0) +M:System.Collections.Immutable.IImmutableList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableList`1.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.IImmutableList`1.Remove(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.IImmutableList`1.RemoveAll(System.Predicate{`0}) +M:System.Collections.Immutable.IImmutableList`1.RemoveAt(System.Int32) +M:System.Collections.Immutable.IImmutableList`1.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.IImmutableList`1.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Immutable.IImmutableList`1.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.IImmutableList`1.SetItem(System.Int32,`0) +T:System.Collections.Immutable.IImmutableQueue`1 +M:System.Collections.Immutable.IImmutableQueue`1.Clear +M:System.Collections.Immutable.IImmutableQueue`1.Dequeue +M:System.Collections.Immutable.IImmutableQueue`1.Enqueue(`0) +M:System.Collections.Immutable.IImmutableQueue`1.Peek +M:System.Collections.Immutable.IImmutableQueue`1.get_IsEmpty +T:System.Collections.Immutable.IImmutableSet`1 +M:System.Collections.Immutable.IImmutableSet`1.Add(`0) +M:System.Collections.Immutable.IImmutableSet`1.Clear +M:System.Collections.Immutable.IImmutableSet`1.Contains(`0) +M:System.Collections.Immutable.IImmutableSet`1.Except(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.Intersect(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.Remove(`0) +M:System.Collections.Immutable.IImmutableSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.SymmetricExcept(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.TryGetValue(`0,`0@) +M:System.Collections.Immutable.IImmutableSet`1.Union(System.Collections.Generic.IEnumerable{`0}) +T:System.Collections.Immutable.IImmutableStack`1 +M:System.Collections.Immutable.IImmutableStack`1.Clear +M:System.Collections.Immutable.IImmutableStack`1.Peek +M:System.Collections.Immutable.IImmutableStack`1.Pop +M:System.Collections.Immutable.IImmutableStack`1.Push(`0) +M:System.Collections.Immutable.IImmutableStack`1.get_IsEmpty +T:System.Collections.Immutable.ImmutableArray +M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,``0) +M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,``0,System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},``0) +M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},``0,System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableArray.CreateBuilder``1 +M:System.Collections.Immutable.ImmutableArray.CreateBuilder``1(System.Int32) +M:System.Collections.Immutable.ImmutableArray.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableArray.CreateRange``2(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``1}) +M:System.Collections.Immutable.ImmutableArray.CreateRange``2(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,System.Func{``0,``1}) +M:System.Collections.Immutable.ImmutableArray.CreateRange``3(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``1,``2},``1) +M:System.Collections.Immutable.ImmutableArray.CreateRange``3(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,System.Func{``0,``1,``2},``1) +M:System.Collections.Immutable.ImmutableArray.Create``1 +M:System.Collections.Immutable.ImmutableArray.Create``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableArray.Create``1(System.Span{``0}) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0,``0) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0,``0,``0) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0,``0,``0,``0) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0[],System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray.ToImmutableArray``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableArray.ToImmutableArray``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Collections.Immutable.ImmutableArray.ToImmutableArray``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableArray.ToImmutableArray``1(System.Span{``0}) +T:System.Collections.Immutable.ImmutableArray`1 +M:System.Collections.Immutable.ImmutableArray`1.Add(`0) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(System.Collections.Immutable.ImmutableArray{`0},System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(System.ReadOnlySpan{`0}) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(`0[]) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(`0[],System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.AddRange``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableArray`1.AddRange``1(``0[]) +M:System.Collections.Immutable.ImmutableArray`1.AsMemory +M:System.Collections.Immutable.ImmutableArray`1.AsSpan +M:System.Collections.Immutable.ImmutableArray`1.AsSpan(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.AsSpan(System.Range) +M:System.Collections.Immutable.ImmutableArray`1.As``1 +T:System.Collections.Immutable.ImmutableArray`1.Builder +M:System.Collections.Immutable.ImmutableArray`1.Builder.Add(`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Immutable.ImmutableArray{`0},System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Immutable.ImmutableArray{`0}.Builder) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.ReadOnlySpan{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(`0[]) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(`0[],System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(``0[]) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Clear +M:System.Collections.Immutable.ImmutableArray`1.Builder.Contains(`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.CopyTo(System.Int32,`0[],System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.CopyTo(System.Span{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.CopyTo(`0[]) +M:System.Collections.Immutable.ImmutableArray`1.Builder.CopyTo(`0[],System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.DrainToImmutable +M:System.Collections.Immutable.ImmutableArray`1.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Insert(System.Int32,`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.InsertRange(System.Int32,System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.MoveToImmutable +M:System.Collections.Immutable.ImmutableArray`1.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Remove(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveAt(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Replace(`0,`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Reverse +M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort +M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort(System.Comparison{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.ToArray +M:System.Collections.Immutable.ImmutableArray`1.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableArray`1.Builder.get_Capacity +M:System.Collections.Immutable.ImmutableArray`1.Builder.get_Count +M:System.Collections.Immutable.ImmutableArray`1.Builder.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.set_Capacity(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.set_Count(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.set_Item(System.Int32,`0) +M:System.Collections.Immutable.ImmutableArray`1.CastArray``1 +M:System.Collections.Immutable.ImmutableArray`1.CastUp``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableArray`1.Clear +M:System.Collections.Immutable.ImmutableArray`1.Contains(`0) +M:System.Collections.Immutable.ImmutableArray`1.Contains(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.CopyTo(System.Span{`0}) +M:System.Collections.Immutable.ImmutableArray`1.CopyTo(`0[]) +M:System.Collections.Immutable.ImmutableArray`1.CopyTo(`0[],System.Int32) +F:System.Collections.Immutable.ImmutableArray`1.Empty +T:System.Collections.Immutable.ImmutableArray`1.Enumerator +M:System.Collections.Immutable.ImmutableArray`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableArray`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableArray`1.Equals(System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Equals(System.Object) +M:System.Collections.Immutable.ImmutableArray`1.GetEnumerator +M:System.Collections.Immutable.ImmutableArray`1.GetHashCode +M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0) +M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Insert(System.Int32,`0) +M:System.Collections.Immutable.ImmutableArray`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.InsertRange(System.Int32,System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.InsertRange(System.Int32,System.ReadOnlySpan{`0}) +M:System.Collections.Immutable.ImmutableArray`1.InsertRange(System.Int32,`0[]) +M:System.Collections.Immutable.ImmutableArray`1.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0) +M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.OfType``1 +M:System.Collections.Immutable.ImmutableArray`1.Remove(`0) +M:System.Collections.Immutable.ImmutableArray`1.Remove(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveAt(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Immutable.ImmutableArray{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.ReadOnlySpan{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(`0[],System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Replace(`0,`0) +M:System.Collections.Immutable.ImmutableArray`1.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.SetItem(System.Int32,`0) +M:System.Collections.Immutable.ImmutableArray`1.Slice(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Sort +M:System.Collections.Immutable.ImmutableArray`1.Sort(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Sort(System.Comparison{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.ToBuilder +M:System.Collections.Immutable.ImmutableArray`1.get_IsDefault +M:System.Collections.Immutable.ImmutableArray`1.get_IsDefaultOrEmpty +M:System.Collections.Immutable.ImmutableArray`1.get_IsEmpty +M:System.Collections.Immutable.ImmutableArray`1.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.get_Length +M:System.Collections.Immutable.ImmutableArray`1.op_Equality(System.Collections.Immutable.ImmutableArray{`0},System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.op_Equality(System.Nullable{System.Collections.Immutable.ImmutableArray{`0}},System.Nullable{System.Collections.Immutable.ImmutableArray{`0}}) +M:System.Collections.Immutable.ImmutableArray`1.op_Inequality(System.Collections.Immutable.ImmutableArray{`0},System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.op_Inequality(System.Nullable{System.Collections.Immutable.ImmutableArray{`0}},System.Nullable{System.Collections.Immutable.ImmutableArray{`0}}) +T:System.Collections.Immutable.ImmutableDictionary +M:System.Collections.Immutable.ImmutableDictionary.Contains``2(System.Collections.Immutable.IImmutableDictionary{``0,``1},``0,``1) +M:System.Collections.Immutable.ImmutableDictionary.CreateBuilder``2 +M:System.Collections.Immutable.ImmutableDictionary.CreateBuilder``2(System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableDictionary.CreateBuilder``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableDictionary.CreateRange``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableDictionary.CreateRange``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableDictionary.CreateRange``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableDictionary.Create``2 +M:System.Collections.Immutable.ImmutableDictionary.Create``2(System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableDictionary.Create``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableDictionary.GetValueOrDefault``2(System.Collections.Immutable.IImmutableDictionary{``0,``1},``0) +M:System.Collections.Immutable.ImmutableDictionary.GetValueOrDefault``2(System.Collections.Immutable.IImmutableDictionary{``0,``1},``0,``1) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}.Builder) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1},System.Collections.Generic.IEqualityComparer{``2}) +T:System.Collections.Immutable.ImmutableDictionary`2 +M:System.Collections.Immutable.ImmutableDictionary`2.Add(`0,`1) +M:System.Collections.Immutable.ImmutableDictionary`2.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +T:System.Collections.Immutable.ImmutableDictionary`2.Builder +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Add(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Add(`0,`1) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Clear +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Contains(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.ContainsKey(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.ContainsValue(`1) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.GetValueOrDefault(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.GetValueOrDefault(`0,`1) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Remove(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.TryGetKey(`0,`0@) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.TryGetValue(`0,`1@) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_Count +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_Item(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_KeyComparer +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_Keys +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_ValueComparer +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_Values +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.set_Item(`0,`1) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.set_KeyComparer(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.set_ValueComparer(System.Collections.Generic.IEqualityComparer{`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.Clear +M:System.Collections.Immutable.ImmutableDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.ContainsKey(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.ContainsValue(`1) +F:System.Collections.Immutable.ImmutableDictionary`2.Empty +T:System.Collections.Immutable.ImmutableDictionary`2.Enumerator +M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.Dispose +M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.Reset +M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableDictionary`2.GetEnumerator +M:System.Collections.Immutable.ImmutableDictionary`2.Remove(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableDictionary`2.SetItem(`0,`1) +M:System.Collections.Immutable.ImmutableDictionary`2.SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.ImmutableDictionary`2.ToBuilder +M:System.Collections.Immutable.ImmutableDictionary`2.TryGetKey(`0,`0@) +M:System.Collections.Immutable.ImmutableDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Immutable.ImmutableDictionary`2.WithComparers(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableDictionary`2.WithComparers(System.Collections.Generic.IEqualityComparer{`0},System.Collections.Generic.IEqualityComparer{`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.get_Count +M:System.Collections.Immutable.ImmutableDictionary`2.get_IsEmpty +M:System.Collections.Immutable.ImmutableDictionary`2.get_Item(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.get_KeyComparer +M:System.Collections.Immutable.ImmutableDictionary`2.get_Keys +M:System.Collections.Immutable.ImmutableDictionary`2.get_ValueComparer +M:System.Collections.Immutable.ImmutableDictionary`2.get_Values +T:System.Collections.Immutable.ImmutableHashSet +M:System.Collections.Immutable.ImmutableHashSet.CreateBuilder``1 +M:System.Collections.Immutable.ImmutableHashSet.CreateBuilder``1(System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableHashSet.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableHashSet.CreateRange``1(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableHashSet.Create``1 +M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0},System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0},``0) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0},``0[]) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(``0) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableHashSet.ToImmutableHashSet``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableHashSet.ToImmutableHashSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableHashSet.ToImmutableHashSet``1(System.Collections.Immutable.ImmutableHashSet{``0}.Builder) +T:System.Collections.Immutable.ImmutableHashSet`1 +M:System.Collections.Immutable.ImmutableHashSet`1.Add(`0) +T:System.Collections.Immutable.ImmutableHashSet`1.Builder +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Add(`0) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Clear +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Contains(`0) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.ExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IntersectWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.TryGetValue(`0,`0@) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.UnionWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.get_Count +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.get_KeyComparer +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.set_KeyComparer(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Clear +M:System.Collections.Immutable.ImmutableHashSet`1.Contains(`0) +F:System.Collections.Immutable.ImmutableHashSet`1.Empty +T:System.Collections.Immutable.ImmutableHashSet`1.Enumerator +M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.Dispose +M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.Reset +M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableHashSet`1.Except(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.GetEnumerator +M:System.Collections.Immutable.ImmutableHashSet`1.Intersect(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Remove(`0) +M:System.Collections.Immutable.ImmutableHashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.SymmetricExcept(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.ToBuilder +M:System.Collections.Immutable.ImmutableHashSet`1.TryGetValue(`0,`0@) +M:System.Collections.Immutable.ImmutableHashSet`1.Union(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.WithComparer(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.get_Count +M:System.Collections.Immutable.ImmutableHashSet`1.get_IsEmpty +M:System.Collections.Immutable.ImmutableHashSet`1.get_KeyComparer +T:System.Collections.Immutable.ImmutableInterlocked +M:System.Collections.Immutable.ImmutableInterlocked.AddOrUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``1},System.Func{``0,``1,``1}) +M:System.Collections.Immutable.ImmutableInterlocked.AddOrUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1,System.Func{``0,``1,``1}) +M:System.Collections.Immutable.ImmutableInterlocked.Enqueue``1(System.Collections.Immutable.ImmutableQueue{``0}@,``0) +M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``1}) +M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1) +M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``3(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``2,``1},``2) +M:System.Collections.Immutable.ImmutableInterlocked.InterlockedCompareExchange``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0},System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableInterlocked.InterlockedExchange``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableInterlocked.InterlockedInitialize``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableInterlocked.Push``1(System.Collections.Immutable.ImmutableStack{``0}@,``0) +M:System.Collections.Immutable.ImmutableInterlocked.TryAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1) +M:System.Collections.Immutable.ImmutableInterlocked.TryDequeue``1(System.Collections.Immutable.ImmutableQueue{``0}@,``0@) +M:System.Collections.Immutable.ImmutableInterlocked.TryPop``1(System.Collections.Immutable.ImmutableStack{``0}@,``0@) +M:System.Collections.Immutable.ImmutableInterlocked.TryRemove``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1@) +M:System.Collections.Immutable.ImmutableInterlocked.TryUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1,``1) +M:System.Collections.Immutable.ImmutableInterlocked.Update``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Func{System.Collections.Immutable.ImmutableArray{``0},System.Collections.Immutable.ImmutableArray{``0}}) +M:System.Collections.Immutable.ImmutableInterlocked.Update``1(``0@,System.Func{``0,``0}) +M:System.Collections.Immutable.ImmutableInterlocked.Update``2(System.Collections.Immutable.ImmutableArray{``0}@,System.Func{System.Collections.Immutable.ImmutableArray{``0},``1,System.Collections.Immutable.ImmutableArray{``0}},``1) +M:System.Collections.Immutable.ImmutableInterlocked.Update``2(``0@,System.Func{``0,``1,``0},``1) +T:System.Collections.Immutable.ImmutableList +M:System.Collections.Immutable.ImmutableList.CreateBuilder``1 +M:System.Collections.Immutable.ImmutableList.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableList.Create``1 +M:System.Collections.Immutable.ImmutableList.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableList.Create``1(``0) +M:System.Collections.Immutable.ImmutableList.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0) +M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32) +M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0) +M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32) +M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList.RemoveRange``1(System.Collections.Immutable.IImmutableList{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableList.Remove``1(System.Collections.Immutable.IImmutableList{``0},``0) +M:System.Collections.Immutable.ImmutableList.Replace``1(System.Collections.Immutable.IImmutableList{``0},``0,``0) +M:System.Collections.Immutable.ImmutableList.ToImmutableList``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableList.ToImmutableList``1(System.Collections.Immutable.ImmutableList{``0}.Builder) +T:System.Collections.Immutable.ImmutableList`1 +M:System.Collections.Immutable.ImmutableList`1.Add(`0) +M:System.Collections.Immutable.ImmutableList`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.BinarySearch(`0) +M:System.Collections.Immutable.ImmutableList`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0}) +T:System.Collections.Immutable.ImmutableList`1.Builder +M:System.Collections.Immutable.ImmutableList`1.Builder.Add(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.BinarySearch(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.BinarySearch(`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Clear +M:System.Collections.Immutable.ImmutableList`1.Builder.Contains(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.ConvertAll``1(System.Func{`0,``0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.CopyTo(System.Int32,`0[],System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.CopyTo(`0[]) +M:System.Collections.Immutable.ImmutableList`1.Builder.CopyTo(`0[],System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.Exists(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Find(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindIndex(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindLast(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindLastIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindLastIndex(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.ForEach(System.Action{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableList`1.Builder.GetRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Insert(System.Int32,`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.Remove(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveAt(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.Replace(`0,`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Reverse +M:System.Collections.Immutable.ImmutableList`1.Builder.Reverse(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.Sort +M:System.Collections.Immutable.ImmutableList`1.Builder.Sort(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Sort(System.Comparison{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableList`1.Builder.TrueForAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.get_Count +M:System.Collections.Immutable.ImmutableList`1.Builder.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.set_Item(System.Int32,`0) +M:System.Collections.Immutable.ImmutableList`1.Clear +M:System.Collections.Immutable.ImmutableList`1.Contains(`0) +M:System.Collections.Immutable.ImmutableList`1.ConvertAll``1(System.Func{`0,``0}) +M:System.Collections.Immutable.ImmutableList`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.CopyTo(`0[]) +M:System.Collections.Immutable.ImmutableList`1.CopyTo(`0[],System.Int32) +F:System.Collections.Immutable.ImmutableList`1.Empty +T:System.Collections.Immutable.ImmutableList`1.Enumerator +M:System.Collections.Immutable.ImmutableList`1.Enumerator.Dispose +M:System.Collections.Immutable.ImmutableList`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableList`1.Enumerator.Reset +M:System.Collections.Immutable.ImmutableList`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableList`1.Exists(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Find(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindIndex(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindLast(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindLastIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindLastIndex(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.ForEach(System.Action{`0}) +M:System.Collections.Immutable.ImmutableList`1.GetEnumerator +M:System.Collections.Immutable.ImmutableList`1.GetRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.IndexOf(`0) +M:System.Collections.Immutable.ImmutableList`1.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Insert(System.Int32,`0) +M:System.Collections.Immutable.ImmutableList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Remove(`0) +M:System.Collections.Immutable.ImmutableList`1.Remove(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.RemoveAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.RemoveAt(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Replace(`0,`0) +M:System.Collections.Immutable.ImmutableList`1.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Reverse +M:System.Collections.Immutable.ImmutableList`1.Reverse(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.SetItem(System.Int32,`0) +M:System.Collections.Immutable.ImmutableList`1.Sort +M:System.Collections.Immutable.ImmutableList`1.Sort(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Sort(System.Comparison{`0}) +M:System.Collections.Immutable.ImmutableList`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.ToBuilder +M:System.Collections.Immutable.ImmutableList`1.TrueForAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.get_Count +M:System.Collections.Immutable.ImmutableList`1.get_IsEmpty +M:System.Collections.Immutable.ImmutableList`1.get_Item(System.Int32) +T:System.Collections.Immutable.ImmutableQueue +M:System.Collections.Immutable.ImmutableQueue.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableQueue.Create``1 +M:System.Collections.Immutable.ImmutableQueue.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableQueue.Create``1(``0) +M:System.Collections.Immutable.ImmutableQueue.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableQueue.Dequeue``1(System.Collections.Immutable.IImmutableQueue{``0},``0@) +T:System.Collections.Immutable.ImmutableQueue`1 +M:System.Collections.Immutable.ImmutableQueue`1.Clear +M:System.Collections.Immutable.ImmutableQueue`1.Dequeue +M:System.Collections.Immutable.ImmutableQueue`1.Dequeue(`0@) +M:System.Collections.Immutable.ImmutableQueue`1.Enqueue(`0) +T:System.Collections.Immutable.ImmutableQueue`1.Enumerator +M:System.Collections.Immutable.ImmutableQueue`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableQueue`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableQueue`1.GetEnumerator +M:System.Collections.Immutable.ImmutableQueue`1.Peek +M:System.Collections.Immutable.ImmutableQueue`1.PeekRef +M:System.Collections.Immutable.ImmutableQueue`1.get_Empty +M:System.Collections.Immutable.ImmutableQueue`1.get_IsEmpty +T:System.Collections.Immutable.ImmutableSortedDictionary +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateBuilder``2 +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateBuilder``2(System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateBuilder``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateRange``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateRange``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateRange``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary.Create``2 +M:System.Collections.Immutable.ImmutableSortedDictionary.Create``2(System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedDictionary.Create``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Immutable.ImmutableSortedDictionary{``0,``1}.Builder) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IComparer{``1}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IComparer{``1},System.Collections.Generic.IEqualityComparer{``2}) +T:System.Collections.Immutable.ImmutableSortedDictionary`2 +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Add(`0,`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +T:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Add(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Add(`0,`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Clear +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Contains(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ContainsKey(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ContainsValue(`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.GetValueOrDefault(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.GetValueOrDefault(`0,`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Remove(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.TryGetKey(`0,`0@) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.TryGetValue(`0,`1@) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ValueRef(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_Count +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_Item(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_KeyComparer +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_Keys +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_ValueComparer +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_Values +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.set_Item(`0,`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.set_KeyComparer(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.set_ValueComparer(System.Collections.Generic.IEqualityComparer{`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Clear +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.ContainsKey(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.ContainsValue(`1) +F:System.Collections.Immutable.ImmutableSortedDictionary`2.Empty +T:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.Dispose +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.Reset +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableSortedDictionary`2.GetEnumerator +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Remove(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.SetItem(`0,`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.ToBuilder +M:System.Collections.Immutable.ImmutableSortedDictionary`2.TryGetKey(`0,`0@) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.ValueRef(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.WithComparers(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.WithComparers(System.Collections.Generic.IComparer{`0},System.Collections.Generic.IEqualityComparer{`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_Count +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_IsEmpty +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_Item(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_KeyComparer +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_Keys +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_ValueComparer +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_Values +T:System.Collections.Immutable.ImmutableSortedSet +M:System.Collections.Immutable.ImmutableSortedSet.CreateBuilder``1 +M:System.Collections.Immutable.ImmutableSortedSet.CreateBuilder``1(System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.CreateRange``1(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1 +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0},System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0},``0) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0},``0[]) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(``0) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableSortedSet.ToImmutableSortedSet``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.ToImmutableSortedSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.ToImmutableSortedSet``1(System.Collections.Immutable.ImmutableSortedSet{``0}.Builder) +T:System.Collections.Immutable.ImmutableSortedSet`1 +M:System.Collections.Immutable.ImmutableSortedSet`1.Add(`0) +T:System.Collections.Immutable.ImmutableSortedSet`1.Builder +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Add(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Clear +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Contains(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.ExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IndexOf(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IntersectWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Reverse +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.TryGetValue(`0,`0@) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.UnionWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.get_Count +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.get_KeyComparer +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.get_Max +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.get_Min +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.set_KeyComparer(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Clear +M:System.Collections.Immutable.ImmutableSortedSet`1.Contains(`0) +F:System.Collections.Immutable.ImmutableSortedSet`1.Empty +T:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator +M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.Dispose +M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.Reset +M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableSortedSet`1.Except(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.GetEnumerator +M:System.Collections.Immutable.ImmutableSortedSet`1.IndexOf(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Intersect(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableSortedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Remove(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Reverse +M:System.Collections.Immutable.ImmutableSortedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.SymmetricExcept(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.ToBuilder +M:System.Collections.Immutable.ImmutableSortedSet`1.TryGetValue(`0,`0@) +M:System.Collections.Immutable.ImmutableSortedSet`1.Union(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.WithComparer(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.get_Count +M:System.Collections.Immutable.ImmutableSortedSet`1.get_IsEmpty +M:System.Collections.Immutable.ImmutableSortedSet`1.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableSortedSet`1.get_KeyComparer +M:System.Collections.Immutable.ImmutableSortedSet`1.get_Max +M:System.Collections.Immutable.ImmutableSortedSet`1.get_Min +T:System.Collections.Immutable.ImmutableStack +M:System.Collections.Immutable.ImmutableStack.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableStack.Create``1 +M:System.Collections.Immutable.ImmutableStack.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableStack.Create``1(``0) +M:System.Collections.Immutable.ImmutableStack.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableStack.Pop``1(System.Collections.Immutable.IImmutableStack{``0},``0@) +T:System.Collections.Immutable.ImmutableStack`1 +M:System.Collections.Immutable.ImmutableStack`1.Clear +T:System.Collections.Immutable.ImmutableStack`1.Enumerator +M:System.Collections.Immutable.ImmutableStack`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableStack`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableStack`1.GetEnumerator +M:System.Collections.Immutable.ImmutableStack`1.Peek +M:System.Collections.Immutable.ImmutableStack`1.PeekRef +M:System.Collections.Immutable.ImmutableStack`1.Pop +M:System.Collections.Immutable.ImmutableStack`1.Pop(`0@) +M:System.Collections.Immutable.ImmutableStack`1.Push(`0) +M:System.Collections.Immutable.ImmutableStack`1.get_Empty +M:System.Collections.Immutable.ImmutableStack`1.get_IsEmpty +T:System.Linq.ImmutableArrayExtensions +M:System.Linq.ImmutableArrayExtensions.Aggregate``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``0,``0}) +M:System.Linq.ImmutableArrayExtensions.Aggregate``2(System.Collections.Immutable.ImmutableArray{``1},``0,System.Func{``0,``1,``0}) +M:System.Linq.ImmutableArrayExtensions.Aggregate``3(System.Collections.Immutable.ImmutableArray{``2},``0,System.Func{``0,``2,``0},System.Func{``0,``1}) +M:System.Linq.ImmutableArrayExtensions.All``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.Any``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.Any``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.Any``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Linq.ImmutableArrayExtensions.ElementAtOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32) +M:System.Linq.ImmutableArrayExtensions.ElementAt``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32) +M:System.Linq.ImmutableArrayExtensions.FirstOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.FirstOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.FirstOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Linq.ImmutableArrayExtensions.First``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.First``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.First``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Linq.ImmutableArrayExtensions.LastOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.LastOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.LastOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Linq.ImmutableArrayExtensions.Last``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.Last``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.Last``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Linq.ImmutableArrayExtensions.SelectMany``3(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2}) +M:System.Linq.ImmutableArrayExtensions.Select``2(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``1}) +M:System.Linq.ImmutableArrayExtensions.SequenceEqual``2(System.Collections.Immutable.ImmutableArray{``1},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.ImmutableArrayExtensions.SequenceEqual``2(System.Collections.Immutable.ImmutableArray{``1},System.Collections.Immutable.ImmutableArray{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.ImmutableArrayExtensions.SequenceEqual``2(System.Collections.Immutable.ImmutableArray{``1},System.Collections.Immutable.ImmutableArray{``0},System.Func{``1,``1,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.SingleOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.SingleOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.Single``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.Single``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.ToArray``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.ToDictionary``2(System.Collections.Immutable.ImmutableArray{``1},System.Func{``1,``0}) +M:System.Linq.ImmutableArrayExtensions.ToDictionary``2(System.Collections.Immutable.ImmutableArray{``1},System.Func{``1,``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.ImmutableArrayExtensions.ToDictionary``3(System.Collections.Immutable.ImmutableArray{``2},System.Func{``2,``0},System.Func{``2,``1}) +M:System.Linq.ImmutableArrayExtensions.ToDictionary``3(System.Collections.Immutable.ImmutableArray{``2},System.Func{``2,``0},System.Func{``2,``1},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.ImmutableArrayExtensions.Where``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +T:System.Runtime.InteropServices.ImmutableCollectionsMarshal +M:System.Runtime.InteropServices.ImmutableCollectionsMarshal.AsArray``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Runtime.InteropServices.ImmutableCollectionsMarshal.AsImmutableArray``1(``0[]) \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Collections.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Collections.txt new file mode 100644 index 0000000000000..416ba22b35870 --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Collections.txt @@ -0,0 +1,431 @@ +T:System.Collections.BitArray +M:System.Collections.BitArray.#ctor(System.Boolean[]) +M:System.Collections.BitArray.#ctor(System.Byte[]) +M:System.Collections.BitArray.#ctor(System.Collections.BitArray) +M:System.Collections.BitArray.#ctor(System.Int32) +M:System.Collections.BitArray.#ctor(System.Int32,System.Boolean) +M:System.Collections.BitArray.#ctor(System.Int32[]) +M:System.Collections.BitArray.And(System.Collections.BitArray) +M:System.Collections.BitArray.Clone +M:System.Collections.BitArray.CopyTo(System.Array,System.Int32) +M:System.Collections.BitArray.Get(System.Int32) +M:System.Collections.BitArray.GetEnumerator +M:System.Collections.BitArray.HasAllSet +M:System.Collections.BitArray.HasAnySet +M:System.Collections.BitArray.LeftShift(System.Int32) +M:System.Collections.BitArray.Not +M:System.Collections.BitArray.Or(System.Collections.BitArray) +M:System.Collections.BitArray.RightShift(System.Int32) +M:System.Collections.BitArray.Set(System.Int32,System.Boolean) +M:System.Collections.BitArray.SetAll(System.Boolean) +M:System.Collections.BitArray.Xor(System.Collections.BitArray) +M:System.Collections.BitArray.get_Count +M:System.Collections.BitArray.get_IsReadOnly +M:System.Collections.BitArray.get_IsSynchronized +M:System.Collections.BitArray.get_Item(System.Int32) +M:System.Collections.BitArray.get_Length +M:System.Collections.BitArray.get_SyncRoot +M:System.Collections.BitArray.set_Item(System.Int32,System.Boolean) +M:System.Collections.BitArray.set_Length(System.Int32) +T:System.Collections.Generic.CollectionExtensions +M:System.Collections.Generic.CollectionExtensions.AddRange``1(System.Collections.Generic.List{``0},System.ReadOnlySpan{``0}) +M:System.Collections.Generic.CollectionExtensions.AsReadOnly``1(System.Collections.Generic.IList{``0}) +M:System.Collections.Generic.CollectionExtensions.AsReadOnly``2(System.Collections.Generic.IDictionary{``0,``1}) +M:System.Collections.Generic.CollectionExtensions.CopyTo``1(System.Collections.Generic.List{``0},System.Span{``0}) +M:System.Collections.Generic.CollectionExtensions.GetValueOrDefault``2(System.Collections.Generic.IReadOnlyDictionary{``0,``1},``0) +M:System.Collections.Generic.CollectionExtensions.GetValueOrDefault``2(System.Collections.Generic.IReadOnlyDictionary{``0,``1},``0,``1) +M:System.Collections.Generic.CollectionExtensions.InsertRange``1(System.Collections.Generic.List{``0},System.Int32,System.ReadOnlySpan{``0}) +M:System.Collections.Generic.CollectionExtensions.Remove``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1@) +M:System.Collections.Generic.CollectionExtensions.TryAdd``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1) +T:System.Collections.Generic.Comparer`1 +M:System.Collections.Generic.Comparer`1.#ctor +M:System.Collections.Generic.Comparer`1.Compare(`0,`0) +M:System.Collections.Generic.Comparer`1.Create(System.Comparison{`0}) +M:System.Collections.Generic.Comparer`1.get_Default +T:System.Collections.Generic.Dictionary`2 +M:System.Collections.Generic.Dictionary`2.#ctor +M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.Dictionary`2.Add(`0,`1) +M:System.Collections.Generic.Dictionary`2.Clear +M:System.Collections.Generic.Dictionary`2.ContainsKey(`0) +M:System.Collections.Generic.Dictionary`2.ContainsValue(`1) +M:System.Collections.Generic.Dictionary`2.EnsureCapacity(System.Int32) +T:System.Collections.Generic.Dictionary`2.Enumerator +M:System.Collections.Generic.Dictionary`2.Enumerator.Dispose +M:System.Collections.Generic.Dictionary`2.Enumerator.MoveNext +M:System.Collections.Generic.Dictionary`2.Enumerator.get_Current +M:System.Collections.Generic.Dictionary`2.GetEnumerator +M:System.Collections.Generic.Dictionary`2.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +T:System.Collections.Generic.Dictionary`2.KeyCollection +M:System.Collections.Generic.Dictionary`2.KeyCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1}) +M:System.Collections.Generic.Dictionary`2.KeyCollection.Contains(`0) +M:System.Collections.Generic.Dictionary`2.KeyCollection.CopyTo(`0[],System.Int32) +T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator +M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Dispose +M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.MoveNext +M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.get_Current +M:System.Collections.Generic.Dictionary`2.KeyCollection.GetEnumerator +M:System.Collections.Generic.Dictionary`2.KeyCollection.get_Count +M:System.Collections.Generic.Dictionary`2.OnDeserialization(System.Object) +M:System.Collections.Generic.Dictionary`2.Remove(`0) +M:System.Collections.Generic.Dictionary`2.Remove(`0,`1@) +M:System.Collections.Generic.Dictionary`2.TrimExcess +M:System.Collections.Generic.Dictionary`2.TrimExcess(System.Int32) +M:System.Collections.Generic.Dictionary`2.TryAdd(`0,`1) +M:System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@) +T:System.Collections.Generic.Dictionary`2.ValueCollection +M:System.Collections.Generic.Dictionary`2.ValueCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1}) +M:System.Collections.Generic.Dictionary`2.ValueCollection.CopyTo(`1[],System.Int32) +T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator +M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Dispose +M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.MoveNext +M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.get_Current +M:System.Collections.Generic.Dictionary`2.ValueCollection.GetEnumerator +M:System.Collections.Generic.Dictionary`2.ValueCollection.get_Count +M:System.Collections.Generic.Dictionary`2.get_Comparer +M:System.Collections.Generic.Dictionary`2.get_Count +M:System.Collections.Generic.Dictionary`2.get_Item(`0) +M:System.Collections.Generic.Dictionary`2.get_Keys +M:System.Collections.Generic.Dictionary`2.get_Values +M:System.Collections.Generic.Dictionary`2.set_Item(`0,`1) +T:System.Collections.Generic.EqualityComparer`1 +M:System.Collections.Generic.EqualityComparer`1.#ctor +M:System.Collections.Generic.EqualityComparer`1.Create(System.Func{`0,`0,System.Boolean},System.Func{`0,System.Int32}) +M:System.Collections.Generic.EqualityComparer`1.Equals(`0,`0) +M:System.Collections.Generic.EqualityComparer`1.GetHashCode(`0) +M:System.Collections.Generic.EqualityComparer`1.get_Default +T:System.Collections.Generic.HashSet`1 +M:System.Collections.Generic.HashSet`1.#ctor +M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.HashSet`1.#ctor(System.Int32) +M:System.Collections.Generic.HashSet`1.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.HashSet`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.HashSet`1.Add(`0) +M:System.Collections.Generic.HashSet`1.Clear +M:System.Collections.Generic.HashSet`1.Contains(`0) +M:System.Collections.Generic.HashSet`1.CopyTo(`0[]) +M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32,System.Int32) +M:System.Collections.Generic.HashSet`1.CreateSetComparer +M:System.Collections.Generic.HashSet`1.EnsureCapacity(System.Int32) +T:System.Collections.Generic.HashSet`1.Enumerator +M:System.Collections.Generic.HashSet`1.Enumerator.Dispose +M:System.Collections.Generic.HashSet`1.Enumerator.MoveNext +M:System.Collections.Generic.HashSet`1.Enumerator.get_Current +M:System.Collections.Generic.HashSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.GetEnumerator +M:System.Collections.Generic.HashSet`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.HashSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.OnDeserialization(System.Object) +M:System.Collections.Generic.HashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.Remove(`0) +M:System.Collections.Generic.HashSet`1.RemoveWhere(System.Predicate{`0}) +M:System.Collections.Generic.HashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.TrimExcess +M:System.Collections.Generic.HashSet`1.TryGetValue(`0,`0@) +M:System.Collections.Generic.HashSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.get_Comparer +M:System.Collections.Generic.HashSet`1.get_Count +T:System.Collections.Generic.LinkedListNode`1 +M:System.Collections.Generic.LinkedListNode`1.#ctor(`0) +M:System.Collections.Generic.LinkedListNode`1.get_List +M:System.Collections.Generic.LinkedListNode`1.get_Next +M:System.Collections.Generic.LinkedListNode`1.get_Previous +M:System.Collections.Generic.LinkedListNode`1.get_Value +M:System.Collections.Generic.LinkedListNode`1.get_ValueRef +M:System.Collections.Generic.LinkedListNode`1.set_Value(`0) +T:System.Collections.Generic.LinkedList`1 +M:System.Collections.Generic.LinkedList`1.#ctor +M:System.Collections.Generic.LinkedList`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.LinkedList`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0}) +M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},`0) +M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0}) +M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},`0) +M:System.Collections.Generic.LinkedList`1.AddFirst(System.Collections.Generic.LinkedListNode{`0}) +M:System.Collections.Generic.LinkedList`1.AddFirst(`0) +M:System.Collections.Generic.LinkedList`1.AddLast(System.Collections.Generic.LinkedListNode{`0}) +M:System.Collections.Generic.LinkedList`1.AddLast(`0) +M:System.Collections.Generic.LinkedList`1.Clear +M:System.Collections.Generic.LinkedList`1.Contains(`0) +M:System.Collections.Generic.LinkedList`1.CopyTo(`0[],System.Int32) +T:System.Collections.Generic.LinkedList`1.Enumerator +M:System.Collections.Generic.LinkedList`1.Enumerator.Dispose +M:System.Collections.Generic.LinkedList`1.Enumerator.MoveNext +M:System.Collections.Generic.LinkedList`1.Enumerator.get_Current +M:System.Collections.Generic.LinkedList`1.Find(`0) +M:System.Collections.Generic.LinkedList`1.FindLast(`0) +M:System.Collections.Generic.LinkedList`1.GetEnumerator +M:System.Collections.Generic.LinkedList`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.LinkedList`1.OnDeserialization(System.Object) +M:System.Collections.Generic.LinkedList`1.Remove(System.Collections.Generic.LinkedListNode{`0}) +M:System.Collections.Generic.LinkedList`1.Remove(`0) +M:System.Collections.Generic.LinkedList`1.RemoveFirst +M:System.Collections.Generic.LinkedList`1.RemoveLast +M:System.Collections.Generic.LinkedList`1.get_Count +M:System.Collections.Generic.LinkedList`1.get_First +M:System.Collections.Generic.LinkedList`1.get_Last +T:System.Collections.Generic.List`1 +M:System.Collections.Generic.List`1.#ctor +M:System.Collections.Generic.List`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.List`1.#ctor(System.Int32) +M:System.Collections.Generic.List`1.Add(`0) +M:System.Collections.Generic.List`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.List`1.AsReadOnly +M:System.Collections.Generic.List`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.List`1.BinarySearch(`0) +M:System.Collections.Generic.List`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.List`1.Clear +M:System.Collections.Generic.List`1.Contains(`0) +M:System.Collections.Generic.List`1.ConvertAll``1(System.Converter{`0,``0}) +M:System.Collections.Generic.List`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32) +M:System.Collections.Generic.List`1.CopyTo(`0[]) +M:System.Collections.Generic.List`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.List`1.EnsureCapacity(System.Int32) +T:System.Collections.Generic.List`1.Enumerator +M:System.Collections.Generic.List`1.Enumerator.Dispose +M:System.Collections.Generic.List`1.Enumerator.MoveNext +M:System.Collections.Generic.List`1.Enumerator.get_Current +M:System.Collections.Generic.List`1.Exists(System.Predicate{`0}) +M:System.Collections.Generic.List`1.Find(System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindAll(System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindIndex(System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindLast(System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindLastIndex(System.Predicate{`0}) +M:System.Collections.Generic.List`1.ForEach(System.Action{`0}) +M:System.Collections.Generic.List`1.GetEnumerator +M:System.Collections.Generic.List`1.GetRange(System.Int32,System.Int32) +M:System.Collections.Generic.List`1.IndexOf(`0) +M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32) +M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Generic.List`1.Insert(System.Int32,`0) +M:System.Collections.Generic.List`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.List`1.LastIndexOf(`0) +M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32) +M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Generic.List`1.Remove(`0) +M:System.Collections.Generic.List`1.RemoveAll(System.Predicate{`0}) +M:System.Collections.Generic.List`1.RemoveAt(System.Int32) +M:System.Collections.Generic.List`1.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Generic.List`1.Reverse +M:System.Collections.Generic.List`1.Reverse(System.Int32,System.Int32) +M:System.Collections.Generic.List`1.Slice(System.Int32,System.Int32) +M:System.Collections.Generic.List`1.Sort +M:System.Collections.Generic.List`1.Sort(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.List`1.Sort(System.Comparison{`0}) +M:System.Collections.Generic.List`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.List`1.ToArray +M:System.Collections.Generic.List`1.TrimExcess +M:System.Collections.Generic.List`1.TrueForAll(System.Predicate{`0}) +M:System.Collections.Generic.List`1.get_Capacity +M:System.Collections.Generic.List`1.get_Count +M:System.Collections.Generic.List`1.get_Item(System.Int32) +M:System.Collections.Generic.List`1.set_Capacity(System.Int32) +M:System.Collections.Generic.List`1.set_Item(System.Int32,`0) +T:System.Collections.Generic.PriorityQueue`2 +M:System.Collections.Generic.PriorityQueue`2.#ctor +M:System.Collections.Generic.PriorityQueue`2.#ctor(System.Collections.Generic.IComparer{`1}) +M:System.Collections.Generic.PriorityQueue`2.#ctor(System.Collections.Generic.IEnumerable{System.ValueTuple{`0,`1}}) +M:System.Collections.Generic.PriorityQueue`2.#ctor(System.Collections.Generic.IEnumerable{System.ValueTuple{`0,`1}},System.Collections.Generic.IComparer{`1}) +M:System.Collections.Generic.PriorityQueue`2.#ctor(System.Int32) +M:System.Collections.Generic.PriorityQueue`2.#ctor(System.Int32,System.Collections.Generic.IComparer{`1}) +M:System.Collections.Generic.PriorityQueue`2.Clear +M:System.Collections.Generic.PriorityQueue`2.Dequeue +M:System.Collections.Generic.PriorityQueue`2.DequeueEnqueue(`0,`1) +M:System.Collections.Generic.PriorityQueue`2.Enqueue(`0,`1) +M:System.Collections.Generic.PriorityQueue`2.EnqueueDequeue(`0,`1) +M:System.Collections.Generic.PriorityQueue`2.EnqueueRange(System.Collections.Generic.IEnumerable{System.ValueTuple{`0,`1}}) +M:System.Collections.Generic.PriorityQueue`2.EnqueueRange(System.Collections.Generic.IEnumerable{`0},`1) +M:System.Collections.Generic.PriorityQueue`2.EnsureCapacity(System.Int32) +M:System.Collections.Generic.PriorityQueue`2.Peek +M:System.Collections.Generic.PriorityQueue`2.TrimExcess +M:System.Collections.Generic.PriorityQueue`2.TryDequeue(`0@,`1@) +M:System.Collections.Generic.PriorityQueue`2.TryPeek(`0@,`1@) +T:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection +T:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.Enumerator +M:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.Enumerator.Dispose +M:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.Enumerator.MoveNext +M:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.Enumerator.get_Current +M:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.GetEnumerator +M:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.get_Count +M:System.Collections.Generic.PriorityQueue`2.get_Comparer +M:System.Collections.Generic.PriorityQueue`2.get_Count +M:System.Collections.Generic.PriorityQueue`2.get_UnorderedItems +T:System.Collections.Generic.Queue`1 +M:System.Collections.Generic.Queue`1.#ctor +M:System.Collections.Generic.Queue`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.Queue`1.#ctor(System.Int32) +M:System.Collections.Generic.Queue`1.Clear +M:System.Collections.Generic.Queue`1.Contains(`0) +M:System.Collections.Generic.Queue`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.Queue`1.Dequeue +M:System.Collections.Generic.Queue`1.Enqueue(`0) +M:System.Collections.Generic.Queue`1.EnsureCapacity(System.Int32) +T:System.Collections.Generic.Queue`1.Enumerator +M:System.Collections.Generic.Queue`1.Enumerator.Dispose +M:System.Collections.Generic.Queue`1.Enumerator.MoveNext +M:System.Collections.Generic.Queue`1.Enumerator.get_Current +M:System.Collections.Generic.Queue`1.GetEnumerator +M:System.Collections.Generic.Queue`1.Peek +M:System.Collections.Generic.Queue`1.ToArray +M:System.Collections.Generic.Queue`1.TrimExcess +M:System.Collections.Generic.Queue`1.TryDequeue(`0@) +M:System.Collections.Generic.Queue`1.TryPeek(`0@) +M:System.Collections.Generic.Queue`1.get_Count +T:System.Collections.Generic.ReferenceEqualityComparer +M:System.Collections.Generic.ReferenceEqualityComparer.Equals(System.Object,System.Object) +M:System.Collections.Generic.ReferenceEqualityComparer.GetHashCode(System.Object) +M:System.Collections.Generic.ReferenceEqualityComparer.get_Instance +T:System.Collections.Generic.SortedDictionary`2 +M:System.Collections.Generic.SortedDictionary`2.#ctor +M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1}) +M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedDictionary`2.Add(`0,`1) +M:System.Collections.Generic.SortedDictionary`2.Clear +M:System.Collections.Generic.SortedDictionary`2.ContainsKey(`0) +M:System.Collections.Generic.SortedDictionary`2.ContainsValue(`1) +M:System.Collections.Generic.SortedDictionary`2.CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32) +T:System.Collections.Generic.SortedDictionary`2.Enumerator +M:System.Collections.Generic.SortedDictionary`2.Enumerator.Dispose +M:System.Collections.Generic.SortedDictionary`2.Enumerator.MoveNext +M:System.Collections.Generic.SortedDictionary`2.Enumerator.get_Current +M:System.Collections.Generic.SortedDictionary`2.GetEnumerator +T:System.Collections.Generic.SortedDictionary`2.KeyCollection +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1}) +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Contains(`0) +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.CopyTo(`0[],System.Int32) +T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Dispose +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.MoveNext +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.get_Current +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.GetEnumerator +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.get_Count +M:System.Collections.Generic.SortedDictionary`2.Remove(`0) +M:System.Collections.Generic.SortedDictionary`2.TryGetValue(`0,`1@) +T:System.Collections.Generic.SortedDictionary`2.ValueCollection +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1}) +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.CopyTo(`1[],System.Int32) +T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Dispose +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.MoveNext +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.get_Current +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.GetEnumerator +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.get_Count +M:System.Collections.Generic.SortedDictionary`2.get_Comparer +M:System.Collections.Generic.SortedDictionary`2.get_Count +M:System.Collections.Generic.SortedDictionary`2.get_Item(`0) +M:System.Collections.Generic.SortedDictionary`2.get_Keys +M:System.Collections.Generic.SortedDictionary`2.get_Values +M:System.Collections.Generic.SortedDictionary`2.set_Item(`0,`1) +T:System.Collections.Generic.SortedList`2 +M:System.Collections.Generic.SortedList`2.#ctor +M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1}) +M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedList`2.#ctor(System.Int32) +M:System.Collections.Generic.SortedList`2.#ctor(System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedList`2.Add(`0,`1) +M:System.Collections.Generic.SortedList`2.Clear +M:System.Collections.Generic.SortedList`2.ContainsKey(`0) +M:System.Collections.Generic.SortedList`2.ContainsValue(`1) +M:System.Collections.Generic.SortedList`2.GetEnumerator +M:System.Collections.Generic.SortedList`2.GetKeyAtIndex(System.Int32) +M:System.Collections.Generic.SortedList`2.GetValueAtIndex(System.Int32) +M:System.Collections.Generic.SortedList`2.IndexOfKey(`0) +M:System.Collections.Generic.SortedList`2.IndexOfValue(`1) +M:System.Collections.Generic.SortedList`2.Remove(`0) +M:System.Collections.Generic.SortedList`2.RemoveAt(System.Int32) +M:System.Collections.Generic.SortedList`2.SetValueAtIndex(System.Int32,`1) +M:System.Collections.Generic.SortedList`2.TrimExcess +M:System.Collections.Generic.SortedList`2.TryGetValue(`0,`1@) +M:System.Collections.Generic.SortedList`2.get_Capacity +M:System.Collections.Generic.SortedList`2.get_Comparer +M:System.Collections.Generic.SortedList`2.get_Count +M:System.Collections.Generic.SortedList`2.get_Item(`0) +M:System.Collections.Generic.SortedList`2.get_Keys +M:System.Collections.Generic.SortedList`2.get_Values +M:System.Collections.Generic.SortedList`2.set_Capacity(System.Int32) +M:System.Collections.Generic.SortedList`2.set_Item(`0,`1) +T:System.Collections.Generic.SortedSet`1 +M:System.Collections.Generic.SortedSet`1.#ctor +M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedSet`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.SortedSet`1.Add(`0) +M:System.Collections.Generic.SortedSet`1.Clear +M:System.Collections.Generic.SortedSet`1.Contains(`0) +M:System.Collections.Generic.SortedSet`1.CopyTo(`0[]) +M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32,System.Int32) +M:System.Collections.Generic.SortedSet`1.CreateSetComparer +M:System.Collections.Generic.SortedSet`1.CreateSetComparer(System.Collections.Generic.IEqualityComparer{`0}) +T:System.Collections.Generic.SortedSet`1.Enumerator +M:System.Collections.Generic.SortedSet`1.Enumerator.Dispose +M:System.Collections.Generic.SortedSet`1.Enumerator.MoveNext +M:System.Collections.Generic.SortedSet`1.Enumerator.get_Current +M:System.Collections.Generic.SortedSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.GetEnumerator +M:System.Collections.Generic.SortedSet`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.SortedSet`1.GetViewBetween(`0,`0) +M:System.Collections.Generic.SortedSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.OnDeserialization(System.Object) +M:System.Collections.Generic.SortedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.Remove(`0) +M:System.Collections.Generic.SortedSet`1.RemoveWhere(System.Predicate{`0}) +M:System.Collections.Generic.SortedSet`1.Reverse +M:System.Collections.Generic.SortedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.TryGetValue(`0,`0@) +M:System.Collections.Generic.SortedSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.get_Comparer +M:System.Collections.Generic.SortedSet`1.get_Count +M:System.Collections.Generic.SortedSet`1.get_Max +M:System.Collections.Generic.SortedSet`1.get_Min +T:System.Collections.Generic.Stack`1 +M:System.Collections.Generic.Stack`1.#ctor +M:System.Collections.Generic.Stack`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.Stack`1.#ctor(System.Int32) +M:System.Collections.Generic.Stack`1.Clear +M:System.Collections.Generic.Stack`1.Contains(`0) +M:System.Collections.Generic.Stack`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.Stack`1.EnsureCapacity(System.Int32) +T:System.Collections.Generic.Stack`1.Enumerator +M:System.Collections.Generic.Stack`1.Enumerator.Dispose +M:System.Collections.Generic.Stack`1.Enumerator.MoveNext +M:System.Collections.Generic.Stack`1.Enumerator.get_Current +M:System.Collections.Generic.Stack`1.GetEnumerator +M:System.Collections.Generic.Stack`1.Peek +M:System.Collections.Generic.Stack`1.Pop +M:System.Collections.Generic.Stack`1.Push(`0) +M:System.Collections.Generic.Stack`1.ToArray +M:System.Collections.Generic.Stack`1.TrimExcess +M:System.Collections.Generic.Stack`1.TryPeek(`0@) +M:System.Collections.Generic.Stack`1.TryPop(`0@) +M:System.Collections.Generic.Stack`1.get_Count +T:System.Collections.StructuralComparisons +M:System.Collections.StructuralComparisons.get_StructuralComparer +M:System.Collections.StructuralComparisons.get_StructuralEqualityComparer \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Linq.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Linq.txt new file mode 100644 index 0000000000000..7298bf6e8bebe --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Linq.txt @@ -0,0 +1,231 @@ +T:System.Linq.Enumerable +M:System.Linq.Enumerable.Aggregate``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``0,``0}) +M:System.Linq.Enumerable.Aggregate``2(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1}) +M:System.Linq.Enumerable.Aggregate``3(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1},System.Func{``1,``2}) +M:System.Linq.Enumerable.All``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.Append``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.AsEnumerable``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Decimal}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Double}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int32}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int64}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Single}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single}) +M:System.Linq.Enumerable.Cast``1(System.Collections.IEnumerable) +M:System.Linq.Enumerable.Chunk``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.Concat``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.DistinctBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.DistinctBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Index) +M:System.Linq.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Index) +M:System.Linq.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.Empty``1 +M:System.Linq.Enumerable.ExceptBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1}) +M:System.Linq.Enumerable.ExceptBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean},``0) +M:System.Linq.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2}) +M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``1,System.Collections.Generic.IEnumerable{``0},``2}) +M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``1,System.Collections.Generic.IEnumerable{``0},``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``1,System.Collections.Generic.IEnumerable{``2},``3}) +M:System.Linq.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``1,System.Collections.Generic.IEnumerable{``2},``3},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3}) +M:System.Linq.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3},System.Collections.Generic.IEqualityComparer{``2}) +M:System.Linq.Enumerable.IntersectBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1}) +M:System.Linq.Enumerable.IntersectBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3}) +M:System.Linq.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3},System.Collections.Generic.IEqualityComparer{``2}) +M:System.Linq.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean},``0) +M:System.Linq.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Decimal}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Double}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Int32}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Int64}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Single}) +M:System.Linq.Enumerable.MaxBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.MaxBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single}) +M:System.Linq.Enumerable.Max``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Decimal}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Double}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Int32}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Int64}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Single}) +M:System.Linq.Enumerable.MinBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.MinBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single}) +M:System.Linq.Enumerable.Min``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.OfType``1(System.Collections.IEnumerable) +M:System.Linq.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.OrderDescending``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.OrderDescending``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) +M:System.Linq.Enumerable.Order``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Order``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) +M:System.Linq.Enumerable.Prepend``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.Range(System.Int32,System.Int32) +M:System.Linq.Enumerable.Repeat``1(``0,System.Int32) +M:System.Linq.Enumerable.Reverse``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}}) +M:System.Linq.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}}) +M:System.Linq.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2}) +M:System.Linq.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2}) +M:System.Linq.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,``1}) +M:System.Linq.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean},``0) +M:System.Linq.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.SkipLast``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Boolean}) +M:System.Linq.Enumerable.Skip``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Decimal}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Double}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int32}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int64}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Single}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single}) +M:System.Linq.Enumerable.TakeLast``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Boolean}) +M:System.Linq.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Range) +M:System.Linq.Enumerable.ThenByDescending``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.ThenByDescending``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.ThenBy``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.ThenBy``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.ToArray``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.ValueTuple{``0,``1}}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.ValueTuple{``0,``1}},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2}) +M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.ToHashSet``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.ToHashSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.ToList``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2}) +M:System.Linq.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.TryGetNonEnumeratedCount``1(System.Collections.Generic.IEnumerable{``0},System.Int32@) +M:System.Linq.Enumerable.UnionBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.UnionBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Boolean}) +M:System.Linq.Enumerable.Zip``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1}) +M:System.Linq.Enumerable.Zip``3(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Collections.Generic.IEnumerable{``2}) +M:System.Linq.Enumerable.Zip``3(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1,``2}) +T:System.Linq.IGrouping`2 +M:System.Linq.IGrouping`2.get_Key +T:System.Linq.ILookup`2 +M:System.Linq.ILookup`2.Contains(`0) +M:System.Linq.ILookup`2.get_Count +M:System.Linq.ILookup`2.get_Item(`0) +T:System.Linq.IOrderedEnumerable`1 +M:System.Linq.IOrderedEnumerable`1.CreateOrderedEnumerable``1(System.Func{`0,``0},System.Collections.Generic.IComparer{``0},System.Boolean) +T:System.Linq.Lookup`2 +M:System.Linq.Lookup`2.ApplyResultSelector``1(System.Func{`0,System.Collections.Generic.IEnumerable{`1},``0}) +M:System.Linq.Lookup`2.Contains(`0) +M:System.Linq.Lookup`2.GetEnumerator +M:System.Linq.Lookup`2.get_Count +M:System.Linq.Lookup`2.get_Item(`0) \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Runtime.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Runtime.txt new file mode 100644 index 0000000000000..dab4baf8f5d6c --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Apis/System.Runtime.txt @@ -0,0 +1,7530 @@ +T:System.AccessViolationException +M:System.AccessViolationException.#ctor +M:System.AccessViolationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.AccessViolationException.#ctor(System.String) +M:System.AccessViolationException.#ctor(System.String,System.Exception) +T:System.Action +M:System.Action.#ctor(System.Object,System.IntPtr) +M:System.Action.BeginInvoke(System.AsyncCallback,System.Object) +M:System.Action.EndInvoke(System.IAsyncResult) +M:System.Action.Invoke +T:System.Action`1 +M:System.Action`1.#ctor(System.Object,System.IntPtr) +M:System.Action`1.BeginInvoke(`0,System.AsyncCallback,System.Object) +M:System.Action`1.EndInvoke(System.IAsyncResult) +M:System.Action`1.Invoke(`0) +T:System.Action`10 +M:System.Action`10.#ctor(System.Object,System.IntPtr) +M:System.Action`10.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,System.AsyncCallback,System.Object) +M:System.Action`10.EndInvoke(System.IAsyncResult) +M:System.Action`10.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9) +T:System.Action`11 +M:System.Action`11.#ctor(System.Object,System.IntPtr) +M:System.Action`11.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,System.AsyncCallback,System.Object) +M:System.Action`11.EndInvoke(System.IAsyncResult) +M:System.Action`11.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10) +T:System.Action`12 +M:System.Action`12.#ctor(System.Object,System.IntPtr) +M:System.Action`12.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,System.AsyncCallback,System.Object) +M:System.Action`12.EndInvoke(System.IAsyncResult) +M:System.Action`12.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11) +T:System.Action`13 +M:System.Action`13.#ctor(System.Object,System.IntPtr) +M:System.Action`13.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,System.AsyncCallback,System.Object) +M:System.Action`13.EndInvoke(System.IAsyncResult) +M:System.Action`13.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12) +T:System.Action`14 +M:System.Action`14.#ctor(System.Object,System.IntPtr) +M:System.Action`14.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,System.AsyncCallback,System.Object) +M:System.Action`14.EndInvoke(System.IAsyncResult) +M:System.Action`14.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13) +T:System.Action`15 +M:System.Action`15.#ctor(System.Object,System.IntPtr) +M:System.Action`15.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,System.AsyncCallback,System.Object) +M:System.Action`15.EndInvoke(System.IAsyncResult) +M:System.Action`15.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14) +T:System.Action`16 +M:System.Action`16.#ctor(System.Object,System.IntPtr) +M:System.Action`16.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,`15,System.AsyncCallback,System.Object) +M:System.Action`16.EndInvoke(System.IAsyncResult) +M:System.Action`16.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,`15) +T:System.Action`2 +M:System.Action`2.#ctor(System.Object,System.IntPtr) +M:System.Action`2.BeginInvoke(`0,`1,System.AsyncCallback,System.Object) +M:System.Action`2.EndInvoke(System.IAsyncResult) +M:System.Action`2.Invoke(`0,`1) +T:System.Action`3 +M:System.Action`3.#ctor(System.Object,System.IntPtr) +M:System.Action`3.BeginInvoke(`0,`1,`2,System.AsyncCallback,System.Object) +M:System.Action`3.EndInvoke(System.IAsyncResult) +M:System.Action`3.Invoke(`0,`1,`2) +T:System.Action`4 +M:System.Action`4.#ctor(System.Object,System.IntPtr) +M:System.Action`4.BeginInvoke(`0,`1,`2,`3,System.AsyncCallback,System.Object) +M:System.Action`4.EndInvoke(System.IAsyncResult) +M:System.Action`4.Invoke(`0,`1,`2,`3) +T:System.Action`5 +M:System.Action`5.#ctor(System.Object,System.IntPtr) +M:System.Action`5.BeginInvoke(`0,`1,`2,`3,`4,System.AsyncCallback,System.Object) +M:System.Action`5.EndInvoke(System.IAsyncResult) +M:System.Action`5.Invoke(`0,`1,`2,`3,`4) +T:System.Action`6 +M:System.Action`6.#ctor(System.Object,System.IntPtr) +M:System.Action`6.BeginInvoke(`0,`1,`2,`3,`4,`5,System.AsyncCallback,System.Object) +M:System.Action`6.EndInvoke(System.IAsyncResult) +M:System.Action`6.Invoke(`0,`1,`2,`3,`4,`5) +T:System.Action`7 +M:System.Action`7.#ctor(System.Object,System.IntPtr) +M:System.Action`7.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,System.AsyncCallback,System.Object) +M:System.Action`7.EndInvoke(System.IAsyncResult) +M:System.Action`7.Invoke(`0,`1,`2,`3,`4,`5,`6) +T:System.Action`8 +M:System.Action`8.#ctor(System.Object,System.IntPtr) +M:System.Action`8.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,System.AsyncCallback,System.Object) +M:System.Action`8.EndInvoke(System.IAsyncResult) +M:System.Action`8.Invoke(`0,`1,`2,`3,`4,`5,`6,`7) +T:System.Action`9 +M:System.Action`9.#ctor(System.Object,System.IntPtr) +M:System.Action`9.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,System.AsyncCallback,System.Object) +M:System.Action`9.EndInvoke(System.IAsyncResult) +M:System.Action`9.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8) +T:System.AggregateException +M:System.AggregateException.#ctor +M:System.AggregateException.#ctor(System.Collections.Generic.IEnumerable{System.Exception}) +M:System.AggregateException.#ctor(System.Exception[]) +M:System.AggregateException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.AggregateException.#ctor(System.String) +M:System.AggregateException.#ctor(System.String,System.Collections.Generic.IEnumerable{System.Exception}) +M:System.AggregateException.#ctor(System.String,System.Exception) +M:System.AggregateException.#ctor(System.String,System.Exception[]) +M:System.AggregateException.Flatten +M:System.AggregateException.GetBaseException +M:System.AggregateException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.AggregateException.Handle(System.Func{System.Exception,System.Boolean}) +M:System.AggregateException.ToString +M:System.AggregateException.get_InnerExceptions +M:System.AggregateException.get_Message +T:System.ApplicationException +M:System.ApplicationException.#ctor +M:System.ApplicationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ApplicationException.#ctor(System.String) +M:System.ApplicationException.#ctor(System.String,System.Exception) +T:System.ApplicationId +M:System.ApplicationId.#ctor(System.Byte[],System.String,System.Version,System.String,System.String) +M:System.ApplicationId.Copy +M:System.ApplicationId.Equals(System.Object) +M:System.ApplicationId.GetHashCode +M:System.ApplicationId.ToString +M:System.ApplicationId.get_Culture +M:System.ApplicationId.get_Name +M:System.ApplicationId.get_ProcessorArchitecture +M:System.ApplicationId.get_PublicKeyToken +M:System.ApplicationId.get_Version +T:System.ArgIterator +M:System.ArgIterator.#ctor(System.RuntimeArgumentHandle) +M:System.ArgIterator.#ctor(System.RuntimeArgumentHandle,System.Void*) +M:System.ArgIterator.End +M:System.ArgIterator.Equals(System.Object) +M:System.ArgIterator.GetHashCode +M:System.ArgIterator.GetNextArg +M:System.ArgIterator.GetNextArg(System.RuntimeTypeHandle) +M:System.ArgIterator.GetNextArgType +M:System.ArgIterator.GetRemainingCount +T:System.ArgumentException +M:System.ArgumentException.#ctor +M:System.ArgumentException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArgumentException.#ctor(System.String) +M:System.ArgumentException.#ctor(System.String,System.Exception) +M:System.ArgumentException.#ctor(System.String,System.String) +M:System.ArgumentException.#ctor(System.String,System.String,System.Exception) +M:System.ArgumentException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArgumentException.ThrowIfNullOrEmpty(System.String,System.String) +M:System.ArgumentException.ThrowIfNullOrWhiteSpace(System.String,System.String) +M:System.ArgumentException.get_Message +M:System.ArgumentException.get_ParamName +T:System.ArgumentNullException +M:System.ArgumentNullException.#ctor +M:System.ArgumentNullException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArgumentNullException.#ctor(System.String) +M:System.ArgumentNullException.#ctor(System.String,System.Exception) +M:System.ArgumentNullException.#ctor(System.String,System.String) +M:System.ArgumentNullException.ThrowIfNull(System.Object,System.String) +M:System.ArgumentNullException.ThrowIfNull(System.Void*,System.String) +T:System.ArgumentOutOfRangeException +M:System.ArgumentOutOfRangeException.#ctor +M:System.ArgumentOutOfRangeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArgumentOutOfRangeException.#ctor(System.String) +M:System.ArgumentOutOfRangeException.#ctor(System.String,System.Exception) +M:System.ArgumentOutOfRangeException.#ctor(System.String,System.Object,System.String) +M:System.ArgumentOutOfRangeException.#ctor(System.String,System.String) +M:System.ArgumentOutOfRangeException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArgumentOutOfRangeException.ThrowIfEqual``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfGreaterThan``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfLessThanOrEqual``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfLessThan``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfNegativeOrZero``1(``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfNegative``1(``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfNotEqual``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfZero``1(``0,System.String) +M:System.ArgumentOutOfRangeException.get_ActualValue +M:System.ArgumentOutOfRangeException.get_Message +T:System.ArithmeticException +M:System.ArithmeticException.#ctor +M:System.ArithmeticException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArithmeticException.#ctor(System.String) +M:System.ArithmeticException.#ctor(System.String,System.Exception) +T:System.Array +M:System.Array.AsReadOnly``1(``0[]) +M:System.Array.BinarySearch(System.Array,System.Int32,System.Int32,System.Object) +M:System.Array.BinarySearch(System.Array,System.Int32,System.Int32,System.Object,System.Collections.IComparer) +M:System.Array.BinarySearch(System.Array,System.Object) +M:System.Array.BinarySearch(System.Array,System.Object,System.Collections.IComparer) +M:System.Array.BinarySearch``1(``0[],System.Int32,System.Int32,``0) +M:System.Array.BinarySearch``1(``0[],System.Int32,System.Int32,``0,System.Collections.Generic.IComparer{``0}) +M:System.Array.BinarySearch``1(``0[],``0) +M:System.Array.BinarySearch``1(``0[],``0,System.Collections.Generic.IComparer{``0}) +M:System.Array.Clear(System.Array) +M:System.Array.Clear(System.Array,System.Int32,System.Int32) +M:System.Array.Clone +M:System.Array.ConstrainedCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) +M:System.Array.ConvertAll``2(``0[],System.Converter{``0,``1}) +M:System.Array.Copy(System.Array,System.Array,System.Int32) +M:System.Array.Copy(System.Array,System.Array,System.Int64) +M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) +M:System.Array.Copy(System.Array,System.Int64,System.Array,System.Int64,System.Int64) +M:System.Array.CopyTo(System.Array,System.Int32) +M:System.Array.CopyTo(System.Array,System.Int64) +M:System.Array.CreateInstance(System.Type,System.Int32) +M:System.Array.CreateInstance(System.Type,System.Int32,System.Int32) +M:System.Array.CreateInstance(System.Type,System.Int32,System.Int32,System.Int32) +M:System.Array.CreateInstance(System.Type,System.Int32[]) +M:System.Array.CreateInstance(System.Type,System.Int32[],System.Int32[]) +M:System.Array.CreateInstance(System.Type,System.Int64[]) +M:System.Array.Empty``1 +M:System.Array.Exists``1(``0[],System.Predicate{``0}) +M:System.Array.Fill``1(``0[],``0) +M:System.Array.Fill``1(``0[],``0,System.Int32,System.Int32) +M:System.Array.FindAll``1(``0[],System.Predicate{``0}) +M:System.Array.FindIndex``1(``0[],System.Int32,System.Int32,System.Predicate{``0}) +M:System.Array.FindIndex``1(``0[],System.Int32,System.Predicate{``0}) +M:System.Array.FindIndex``1(``0[],System.Predicate{``0}) +M:System.Array.FindLastIndex``1(``0[],System.Int32,System.Int32,System.Predicate{``0}) +M:System.Array.FindLastIndex``1(``0[],System.Int32,System.Predicate{``0}) +M:System.Array.FindLastIndex``1(``0[],System.Predicate{``0}) +M:System.Array.FindLast``1(``0[],System.Predicate{``0}) +M:System.Array.Find``1(``0[],System.Predicate{``0}) +M:System.Array.ForEach``1(``0[],System.Action{``0}) +M:System.Array.GetEnumerator +M:System.Array.GetLength(System.Int32) +M:System.Array.GetLongLength(System.Int32) +M:System.Array.GetLowerBound(System.Int32) +M:System.Array.GetUpperBound(System.Int32) +M:System.Array.GetValue(System.Int32) +M:System.Array.GetValue(System.Int32,System.Int32) +M:System.Array.GetValue(System.Int32,System.Int32,System.Int32) +M:System.Array.GetValue(System.Int32[]) +M:System.Array.GetValue(System.Int64) +M:System.Array.GetValue(System.Int64,System.Int64) +M:System.Array.GetValue(System.Int64,System.Int64,System.Int64) +M:System.Array.GetValue(System.Int64[]) +M:System.Array.IndexOf(System.Array,System.Object) +M:System.Array.IndexOf(System.Array,System.Object,System.Int32) +M:System.Array.IndexOf(System.Array,System.Object,System.Int32,System.Int32) +M:System.Array.IndexOf``1(``0[],``0) +M:System.Array.IndexOf``1(``0[],``0,System.Int32) +M:System.Array.IndexOf``1(``0[],``0,System.Int32,System.Int32) +M:System.Array.Initialize +M:System.Array.LastIndexOf(System.Array,System.Object) +M:System.Array.LastIndexOf(System.Array,System.Object,System.Int32) +M:System.Array.LastIndexOf(System.Array,System.Object,System.Int32,System.Int32) +M:System.Array.LastIndexOf``1(``0[],``0) +M:System.Array.LastIndexOf``1(``0[],``0,System.Int32) +M:System.Array.LastIndexOf``1(``0[],``0,System.Int32,System.Int32) +M:System.Array.Resize``1(``0[]@,System.Int32) +M:System.Array.Reverse(System.Array) +M:System.Array.Reverse(System.Array,System.Int32,System.Int32) +M:System.Array.Reverse``1(``0[]) +M:System.Array.Reverse``1(``0[],System.Int32,System.Int32) +M:System.Array.SetValue(System.Object,System.Int32) +M:System.Array.SetValue(System.Object,System.Int32,System.Int32) +M:System.Array.SetValue(System.Object,System.Int32,System.Int32,System.Int32) +M:System.Array.SetValue(System.Object,System.Int32[]) +M:System.Array.SetValue(System.Object,System.Int64) +M:System.Array.SetValue(System.Object,System.Int64,System.Int64) +M:System.Array.SetValue(System.Object,System.Int64,System.Int64,System.Int64) +M:System.Array.SetValue(System.Object,System.Int64[]) +M:System.Array.Sort(System.Array) +M:System.Array.Sort(System.Array,System.Array) +M:System.Array.Sort(System.Array,System.Array,System.Collections.IComparer) +M:System.Array.Sort(System.Array,System.Array,System.Int32,System.Int32) +M:System.Array.Sort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer) +M:System.Array.Sort(System.Array,System.Collections.IComparer) +M:System.Array.Sort(System.Array,System.Int32,System.Int32) +M:System.Array.Sort(System.Array,System.Int32,System.Int32,System.Collections.IComparer) +M:System.Array.Sort``1(``0[]) +M:System.Array.Sort``1(``0[],System.Collections.Generic.IComparer{``0}) +M:System.Array.Sort``1(``0[],System.Comparison{``0}) +M:System.Array.Sort``1(``0[],System.Int32,System.Int32) +M:System.Array.Sort``1(``0[],System.Int32,System.Int32,System.Collections.Generic.IComparer{``0}) +M:System.Array.Sort``2(``0[],``1[]) +M:System.Array.Sort``2(``0[],``1[],System.Collections.Generic.IComparer{``0}) +M:System.Array.Sort``2(``0[],``1[],System.Int32,System.Int32) +M:System.Array.Sort``2(``0[],``1[],System.Int32,System.Int32,System.Collections.Generic.IComparer{``0}) +M:System.Array.TrueForAll``1(``0[],System.Predicate{``0}) +M:System.Array.get_IsFixedSize +M:System.Array.get_IsReadOnly +M:System.Array.get_IsSynchronized +M:System.Array.get_Length +M:System.Array.get_LongLength +M:System.Array.get_MaxLength +M:System.Array.get_Rank +M:System.Array.get_SyncRoot +T:System.ArraySegment`1 +M:System.ArraySegment`1.#ctor(`0[]) +M:System.ArraySegment`1.#ctor(`0[],System.Int32,System.Int32) +M:System.ArraySegment`1.CopyTo(System.ArraySegment{`0}) +M:System.ArraySegment`1.CopyTo(`0[]) +M:System.ArraySegment`1.CopyTo(`0[],System.Int32) +T:System.ArraySegment`1.Enumerator +M:System.ArraySegment`1.Enumerator.Dispose +M:System.ArraySegment`1.Enumerator.MoveNext +M:System.ArraySegment`1.Enumerator.get_Current +M:System.ArraySegment`1.Equals(System.ArraySegment{`0}) +M:System.ArraySegment`1.Equals(System.Object) +M:System.ArraySegment`1.GetEnumerator +M:System.ArraySegment`1.GetHashCode +M:System.ArraySegment`1.Slice(System.Int32) +M:System.ArraySegment`1.Slice(System.Int32,System.Int32) +M:System.ArraySegment`1.ToArray +M:System.ArraySegment`1.get_Array +M:System.ArraySegment`1.get_Count +M:System.ArraySegment`1.get_Empty +M:System.ArraySegment`1.get_Item(System.Int32) +M:System.ArraySegment`1.get_Offset +M:System.ArraySegment`1.op_Equality(System.ArraySegment{`0},System.ArraySegment{`0}) +M:System.ArraySegment`1.op_Implicit(`0[])~System.ArraySegment{`0} +M:System.ArraySegment`1.op_Inequality(System.ArraySegment{`0},System.ArraySegment{`0}) +M:System.ArraySegment`1.set_Item(System.Int32,`0) +T:System.ArrayTypeMismatchException +M:System.ArrayTypeMismatchException.#ctor +M:System.ArrayTypeMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArrayTypeMismatchException.#ctor(System.String) +M:System.ArrayTypeMismatchException.#ctor(System.String,System.Exception) +T:System.AsyncCallback +M:System.AsyncCallback.#ctor(System.Object,System.IntPtr) +M:System.AsyncCallback.BeginInvoke(System.IAsyncResult,System.AsyncCallback,System.Object) +M:System.AsyncCallback.EndInvoke(System.IAsyncResult) +M:System.AsyncCallback.Invoke(System.IAsyncResult) +T:System.Attribute +M:System.Attribute.#ctor +M:System.Attribute.Equals(System.Object) +M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) +M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) +M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) +M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) +M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly) +M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) +M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) +M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) +M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.Module) +M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) +M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) +M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) +M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) +M:System.Attribute.GetHashCode +M:System.Attribute.IsDefaultAttribute +M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) +M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) +M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) +M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) +M:System.Attribute.IsDefined(System.Reflection.Module,System.Type) +M:System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) +M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) +M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) +M:System.Attribute.Match(System.Object) +M:System.Attribute.get_TypeId +T:System.AttributeTargets +F:System.AttributeTargets.All +F:System.AttributeTargets.Assembly +F:System.AttributeTargets.Class +F:System.AttributeTargets.Constructor +F:System.AttributeTargets.Delegate +F:System.AttributeTargets.Enum +F:System.AttributeTargets.Event +F:System.AttributeTargets.Field +F:System.AttributeTargets.GenericParameter +F:System.AttributeTargets.Interface +F:System.AttributeTargets.Method +F:System.AttributeTargets.Module +F:System.AttributeTargets.Parameter +F:System.AttributeTargets.Property +F:System.AttributeTargets.ReturnValue +F:System.AttributeTargets.Struct +T:System.AttributeUsageAttribute +M:System.AttributeUsageAttribute.#ctor(System.AttributeTargets) +M:System.AttributeUsageAttribute.get_AllowMultiple +M:System.AttributeUsageAttribute.get_Inherited +M:System.AttributeUsageAttribute.get_ValidOn +M:System.AttributeUsageAttribute.set_AllowMultiple(System.Boolean) +M:System.AttributeUsageAttribute.set_Inherited(System.Boolean) +T:System.BadImageFormatException +M:System.BadImageFormatException.#ctor +M:System.BadImageFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.BadImageFormatException.#ctor(System.String) +M:System.BadImageFormatException.#ctor(System.String,System.Exception) +M:System.BadImageFormatException.#ctor(System.String,System.String) +M:System.BadImageFormatException.#ctor(System.String,System.String,System.Exception) +M:System.BadImageFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.BadImageFormatException.ToString +M:System.BadImageFormatException.get_FileName +M:System.BadImageFormatException.get_FusionLog +M:System.BadImageFormatException.get_Message +T:System.Base64FormattingOptions +F:System.Base64FormattingOptions.InsertLineBreaks +F:System.Base64FormattingOptions.None +T:System.BitConverter +M:System.BitConverter.DoubleToInt64Bits(System.Double) +M:System.BitConverter.DoubleToUInt64Bits(System.Double) +M:System.BitConverter.GetBytes(System.Boolean) +M:System.BitConverter.GetBytes(System.Char) +M:System.BitConverter.GetBytes(System.Double) +M:System.BitConverter.GetBytes(System.Half) +M:System.BitConverter.GetBytes(System.Int16) +M:System.BitConverter.GetBytes(System.Int32) +M:System.BitConverter.GetBytes(System.Int64) +M:System.BitConverter.GetBytes(System.Single) +M:System.BitConverter.GetBytes(System.UInt16) +M:System.BitConverter.GetBytes(System.UInt32) +M:System.BitConverter.GetBytes(System.UInt64) +M:System.BitConverter.HalfToInt16Bits(System.Half) +M:System.BitConverter.HalfToUInt16Bits(System.Half) +M:System.BitConverter.Int16BitsToHalf(System.Int16) +M:System.BitConverter.Int32BitsToSingle(System.Int32) +M:System.BitConverter.Int64BitsToDouble(System.Int64) +F:System.BitConverter.IsLittleEndian +M:System.BitConverter.SingleToInt32Bits(System.Single) +M:System.BitConverter.SingleToUInt32Bits(System.Single) +M:System.BitConverter.ToBoolean(System.Byte[],System.Int32) +M:System.BitConverter.ToBoolean(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToChar(System.Byte[],System.Int32) +M:System.BitConverter.ToChar(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToDouble(System.Byte[],System.Int32) +M:System.BitConverter.ToDouble(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToHalf(System.Byte[],System.Int32) +M:System.BitConverter.ToHalf(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToInt16(System.Byte[],System.Int32) +M:System.BitConverter.ToInt16(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToInt32(System.Byte[],System.Int32) +M:System.BitConverter.ToInt32(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToInt64(System.Byte[],System.Int32) +M:System.BitConverter.ToInt64(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToSingle(System.Byte[],System.Int32) +M:System.BitConverter.ToSingle(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToString(System.Byte[]) +M:System.BitConverter.ToString(System.Byte[],System.Int32) +M:System.BitConverter.ToString(System.Byte[],System.Int32,System.Int32) +M:System.BitConverter.ToUInt16(System.Byte[],System.Int32) +M:System.BitConverter.ToUInt16(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToUInt32(System.Byte[],System.Int32) +M:System.BitConverter.ToUInt32(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToUInt64(System.Byte[],System.Int32) +M:System.BitConverter.ToUInt64(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Boolean) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Char) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Double) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Half) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Int16) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Int32) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Int64) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Single) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.UInt16) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.UInt32) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.UInt64) +M:System.BitConverter.UInt16BitsToHalf(System.UInt16) +M:System.BitConverter.UInt32BitsToSingle(System.UInt32) +M:System.BitConverter.UInt64BitsToDouble(System.UInt64) +T:System.Boolean +M:System.Boolean.CompareTo(System.Boolean) +M:System.Boolean.CompareTo(System.Object) +M:System.Boolean.Equals(System.Boolean) +M:System.Boolean.Equals(System.Object) +F:System.Boolean.FalseString +M:System.Boolean.GetHashCode +M:System.Boolean.GetTypeCode +M:System.Boolean.Parse(System.ReadOnlySpan{System.Char}) +M:System.Boolean.Parse(System.String) +M:System.Boolean.ToString +M:System.Boolean.ToString(System.IFormatProvider) +F:System.Boolean.TrueString +M:System.Boolean.TryFormat(System.Span{System.Char},System.Int32@) +M:System.Boolean.TryParse(System.ReadOnlySpan{System.Char},System.Boolean@) +M:System.Boolean.TryParse(System.String,System.Boolean@) +T:System.Buffer +M:System.Buffer.BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) +M:System.Buffer.ByteLength(System.Array) +M:System.Buffer.GetByte(System.Array,System.Int32) +M:System.Buffer.MemoryCopy(System.Void*,System.Void*,System.Int64,System.Int64) +M:System.Buffer.MemoryCopy(System.Void*,System.Void*,System.UInt64,System.UInt64) +M:System.Buffer.SetByte(System.Array,System.Int32,System.Byte) +T:System.Buffers.ArrayPool`1 +M:System.Buffers.ArrayPool`1.#ctor +M:System.Buffers.ArrayPool`1.Create +M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32) +M:System.Buffers.ArrayPool`1.Rent(System.Int32) +M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean) +M:System.Buffers.ArrayPool`1.get_Shared +T:System.Buffers.IMemoryOwner`1 +M:System.Buffers.IMemoryOwner`1.get_Memory +T:System.Buffers.IPinnable +M:System.Buffers.IPinnable.Pin(System.Int32) +M:System.Buffers.IPinnable.Unpin +T:System.Buffers.MemoryHandle +M:System.Buffers.MemoryHandle.#ctor(System.Void*,System.Runtime.InteropServices.GCHandle,System.Buffers.IPinnable) +M:System.Buffers.MemoryHandle.Dispose +M:System.Buffers.MemoryHandle.get_Pointer +T:System.Buffers.MemoryManager`1 +M:System.Buffers.MemoryManager`1.#ctor +M:System.Buffers.MemoryManager`1.CreateMemory(System.Int32) +M:System.Buffers.MemoryManager`1.CreateMemory(System.Int32,System.Int32) +M:System.Buffers.MemoryManager`1.Dispose(System.Boolean) +M:System.Buffers.MemoryManager`1.GetSpan +M:System.Buffers.MemoryManager`1.Pin(System.Int32) +M:System.Buffers.MemoryManager`1.TryGetArray(System.ArraySegment{`0}@) +M:System.Buffers.MemoryManager`1.Unpin +M:System.Buffers.MemoryManager`1.get_Memory +T:System.Buffers.OperationStatus +F:System.Buffers.OperationStatus.DestinationTooSmall +F:System.Buffers.OperationStatus.Done +F:System.Buffers.OperationStatus.InvalidData +F:System.Buffers.OperationStatus.NeedMoreData +T:System.Buffers.ReadOnlySpanAction`2 +M:System.Buffers.ReadOnlySpanAction`2.#ctor(System.Object,System.IntPtr) +M:System.Buffers.ReadOnlySpanAction`2.BeginInvoke(System.ReadOnlySpan{`0},`1,System.AsyncCallback,System.Object) +M:System.Buffers.ReadOnlySpanAction`2.EndInvoke(System.IAsyncResult) +M:System.Buffers.ReadOnlySpanAction`2.Invoke(System.ReadOnlySpan{`0},`1) +T:System.Buffers.SearchValues +M:System.Buffers.SearchValues.Create(System.ReadOnlySpan{System.Byte}) +M:System.Buffers.SearchValues.Create(System.ReadOnlySpan{System.Char}) +T:System.Buffers.SearchValues`1 +M:System.Buffers.SearchValues`1.Contains(`0) +T:System.Buffers.SpanAction`2 +M:System.Buffers.SpanAction`2.#ctor(System.Object,System.IntPtr) +M:System.Buffers.SpanAction`2.BeginInvoke(System.Span{`0},`1,System.AsyncCallback,System.Object) +M:System.Buffers.SpanAction`2.EndInvoke(System.IAsyncResult) +M:System.Buffers.SpanAction`2.Invoke(System.Span{`0},`1) +T:System.Buffers.Text.Base64 +M:System.Buffers.Text.Base64.DecodeFromUtf8(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int32@,System.Boolean) +M:System.Buffers.Text.Base64.DecodeFromUtf8InPlace(System.Span{System.Byte},System.Int32@) +M:System.Buffers.Text.Base64.EncodeToUtf8(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int32@,System.Boolean) +M:System.Buffers.Text.Base64.EncodeToUtf8InPlace(System.Span{System.Byte},System.Int32,System.Int32@) +M:System.Buffers.Text.Base64.GetMaxDecodedFromUtf8Length(System.Int32) +M:System.Buffers.Text.Base64.GetMaxEncodedToUtf8Length(System.Int32) +M:System.Buffers.Text.Base64.IsValid(System.ReadOnlySpan{System.Byte}) +M:System.Buffers.Text.Base64.IsValid(System.ReadOnlySpan{System.Byte},System.Int32@) +M:System.Buffers.Text.Base64.IsValid(System.ReadOnlySpan{System.Char}) +M:System.Buffers.Text.Base64.IsValid(System.ReadOnlySpan{System.Char},System.Int32@) +T:System.Byte +M:System.Byte.Clamp(System.Byte,System.Byte,System.Byte) +M:System.Byte.CompareTo(System.Byte) +M:System.Byte.CompareTo(System.Object) +M:System.Byte.CreateChecked``1(``0) +M:System.Byte.CreateSaturating``1(``0) +M:System.Byte.CreateTruncating``1(``0) +M:System.Byte.DivRem(System.Byte,System.Byte) +M:System.Byte.Equals(System.Byte) +M:System.Byte.Equals(System.Object) +M:System.Byte.GetHashCode +M:System.Byte.GetTypeCode +M:System.Byte.IsEvenInteger(System.Byte) +M:System.Byte.IsOddInteger(System.Byte) +M:System.Byte.IsPow2(System.Byte) +M:System.Byte.LeadingZeroCount(System.Byte) +M:System.Byte.Log2(System.Byte) +M:System.Byte.Max(System.Byte,System.Byte) +F:System.Byte.MaxValue +M:System.Byte.Min(System.Byte,System.Byte) +F:System.Byte.MinValue +M:System.Byte.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Byte.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Byte.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Byte.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Byte.Parse(System.String) +M:System.Byte.Parse(System.String,System.Globalization.NumberStyles) +M:System.Byte.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Byte.Parse(System.String,System.IFormatProvider) +M:System.Byte.PopCount(System.Byte) +M:System.Byte.RotateLeft(System.Byte,System.Int32) +M:System.Byte.RotateRight(System.Byte,System.Int32) +M:System.Byte.Sign(System.Byte) +M:System.Byte.ToString +M:System.Byte.ToString(System.IFormatProvider) +M:System.Byte.ToString(System.String) +M:System.Byte.ToString(System.String,System.IFormatProvider) +M:System.Byte.TrailingZeroCount(System.Byte) +M:System.Byte.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Byte.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Byte},System.Byte@) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Byte@) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Byte@) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Char},System.Byte@) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Byte@) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Byte@) +M:System.Byte.TryParse(System.String,System.Byte@) +M:System.Byte.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Byte@) +M:System.Byte.TryParse(System.String,System.IFormatProvider,System.Byte@) +T:System.CLSCompliantAttribute +M:System.CLSCompliantAttribute.#ctor(System.Boolean) +M:System.CLSCompliantAttribute.get_IsCompliant +T:System.CannotUnloadAppDomainException +M:System.CannotUnloadAppDomainException.#ctor +M:System.CannotUnloadAppDomainException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.CannotUnloadAppDomainException.#ctor(System.String) +M:System.CannotUnloadAppDomainException.#ctor(System.String,System.Exception) +T:System.Char +M:System.Char.CompareTo(System.Char) +M:System.Char.CompareTo(System.Object) +M:System.Char.ConvertFromUtf32(System.Int32) +M:System.Char.ConvertToUtf32(System.Char,System.Char) +M:System.Char.ConvertToUtf32(System.String,System.Int32) +M:System.Char.Equals(System.Char) +M:System.Char.Equals(System.Object) +M:System.Char.GetHashCode +M:System.Char.GetNumericValue(System.Char) +M:System.Char.GetNumericValue(System.String,System.Int32) +M:System.Char.GetTypeCode +M:System.Char.GetUnicodeCategory(System.Char) +M:System.Char.GetUnicodeCategory(System.String,System.Int32) +M:System.Char.IsAscii(System.Char) +M:System.Char.IsAsciiDigit(System.Char) +M:System.Char.IsAsciiHexDigit(System.Char) +M:System.Char.IsAsciiHexDigitLower(System.Char) +M:System.Char.IsAsciiHexDigitUpper(System.Char) +M:System.Char.IsAsciiLetter(System.Char) +M:System.Char.IsAsciiLetterLower(System.Char) +M:System.Char.IsAsciiLetterOrDigit(System.Char) +M:System.Char.IsAsciiLetterUpper(System.Char) +M:System.Char.IsBetween(System.Char,System.Char,System.Char) +M:System.Char.IsControl(System.Char) +M:System.Char.IsControl(System.String,System.Int32) +M:System.Char.IsDigit(System.Char) +M:System.Char.IsDigit(System.String,System.Int32) +M:System.Char.IsHighSurrogate(System.Char) +M:System.Char.IsHighSurrogate(System.String,System.Int32) +M:System.Char.IsLetter(System.Char) +M:System.Char.IsLetter(System.String,System.Int32) +M:System.Char.IsLetterOrDigit(System.Char) +M:System.Char.IsLetterOrDigit(System.String,System.Int32) +M:System.Char.IsLowSurrogate(System.Char) +M:System.Char.IsLowSurrogate(System.String,System.Int32) +M:System.Char.IsLower(System.Char) +M:System.Char.IsLower(System.String,System.Int32) +M:System.Char.IsNumber(System.Char) +M:System.Char.IsNumber(System.String,System.Int32) +M:System.Char.IsPunctuation(System.Char) +M:System.Char.IsPunctuation(System.String,System.Int32) +M:System.Char.IsSeparator(System.Char) +M:System.Char.IsSeparator(System.String,System.Int32) +M:System.Char.IsSurrogate(System.Char) +M:System.Char.IsSurrogate(System.String,System.Int32) +M:System.Char.IsSurrogatePair(System.Char,System.Char) +M:System.Char.IsSurrogatePair(System.String,System.Int32) +M:System.Char.IsSymbol(System.Char) +M:System.Char.IsSymbol(System.String,System.Int32) +M:System.Char.IsUpper(System.Char) +M:System.Char.IsUpper(System.String,System.Int32) +M:System.Char.IsWhiteSpace(System.Char) +M:System.Char.IsWhiteSpace(System.String,System.Int32) +F:System.Char.MaxValue +F:System.Char.MinValue +M:System.Char.Parse(System.String) +M:System.Char.ToLower(System.Char) +M:System.Char.ToLower(System.Char,System.Globalization.CultureInfo) +M:System.Char.ToLowerInvariant(System.Char) +M:System.Char.ToString +M:System.Char.ToString(System.Char) +M:System.Char.ToString(System.IFormatProvider) +M:System.Char.ToUpper(System.Char) +M:System.Char.ToUpper(System.Char,System.Globalization.CultureInfo) +M:System.Char.ToUpperInvariant(System.Char) +M:System.Char.TryParse(System.String,System.Char@) +T:System.CharEnumerator +M:System.CharEnumerator.Clone +M:System.CharEnumerator.Dispose +M:System.CharEnumerator.MoveNext +M:System.CharEnumerator.Reset +M:System.CharEnumerator.get_Current +T:System.Collections.ArrayList +M:System.Collections.ArrayList.#ctor +M:System.Collections.ArrayList.#ctor(System.Collections.ICollection) +M:System.Collections.ArrayList.#ctor(System.Int32) +M:System.Collections.ArrayList.Adapter(System.Collections.IList) +M:System.Collections.ArrayList.Add(System.Object) +M:System.Collections.ArrayList.AddRange(System.Collections.ICollection) +M:System.Collections.ArrayList.BinarySearch(System.Int32,System.Int32,System.Object,System.Collections.IComparer) +M:System.Collections.ArrayList.BinarySearch(System.Object) +M:System.Collections.ArrayList.BinarySearch(System.Object,System.Collections.IComparer) +M:System.Collections.ArrayList.Clear +M:System.Collections.ArrayList.Clone +M:System.Collections.ArrayList.Contains(System.Object) +M:System.Collections.ArrayList.CopyTo(System.Array) +M:System.Collections.ArrayList.CopyTo(System.Array,System.Int32) +M:System.Collections.ArrayList.CopyTo(System.Int32,System.Array,System.Int32,System.Int32) +M:System.Collections.ArrayList.FixedSize(System.Collections.ArrayList) +M:System.Collections.ArrayList.FixedSize(System.Collections.IList) +M:System.Collections.ArrayList.GetEnumerator +M:System.Collections.ArrayList.GetEnumerator(System.Int32,System.Int32) +M:System.Collections.ArrayList.GetRange(System.Int32,System.Int32) +M:System.Collections.ArrayList.IndexOf(System.Object) +M:System.Collections.ArrayList.IndexOf(System.Object,System.Int32) +M:System.Collections.ArrayList.IndexOf(System.Object,System.Int32,System.Int32) +M:System.Collections.ArrayList.Insert(System.Int32,System.Object) +M:System.Collections.ArrayList.InsertRange(System.Int32,System.Collections.ICollection) +M:System.Collections.ArrayList.LastIndexOf(System.Object) +M:System.Collections.ArrayList.LastIndexOf(System.Object,System.Int32) +M:System.Collections.ArrayList.LastIndexOf(System.Object,System.Int32,System.Int32) +M:System.Collections.ArrayList.ReadOnly(System.Collections.ArrayList) +M:System.Collections.ArrayList.ReadOnly(System.Collections.IList) +M:System.Collections.ArrayList.Remove(System.Object) +M:System.Collections.ArrayList.RemoveAt(System.Int32) +M:System.Collections.ArrayList.RemoveRange(System.Int32,System.Int32) +M:System.Collections.ArrayList.Repeat(System.Object,System.Int32) +M:System.Collections.ArrayList.Reverse +M:System.Collections.ArrayList.Reverse(System.Int32,System.Int32) +M:System.Collections.ArrayList.SetRange(System.Int32,System.Collections.ICollection) +M:System.Collections.ArrayList.Sort +M:System.Collections.ArrayList.Sort(System.Collections.IComparer) +M:System.Collections.ArrayList.Sort(System.Int32,System.Int32,System.Collections.IComparer) +M:System.Collections.ArrayList.Synchronized(System.Collections.ArrayList) +M:System.Collections.ArrayList.Synchronized(System.Collections.IList) +M:System.Collections.ArrayList.ToArray +M:System.Collections.ArrayList.ToArray(System.Type) +M:System.Collections.ArrayList.TrimToSize +M:System.Collections.ArrayList.get_Capacity +M:System.Collections.ArrayList.get_Count +M:System.Collections.ArrayList.get_IsFixedSize +M:System.Collections.ArrayList.get_IsReadOnly +M:System.Collections.ArrayList.get_IsSynchronized +M:System.Collections.ArrayList.get_Item(System.Int32) +M:System.Collections.ArrayList.get_SyncRoot +M:System.Collections.ArrayList.set_Capacity(System.Int32) +M:System.Collections.ArrayList.set_Item(System.Int32,System.Object) +T:System.Collections.Comparer +M:System.Collections.Comparer.#ctor(System.Globalization.CultureInfo) +M:System.Collections.Comparer.Compare(System.Object,System.Object) +F:System.Collections.Comparer.Default +F:System.Collections.Comparer.DefaultInvariant +M:System.Collections.Comparer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +T:System.Collections.DictionaryEntry +M:System.Collections.DictionaryEntry.#ctor(System.Object,System.Object) +M:System.Collections.DictionaryEntry.Deconstruct(System.Object@,System.Object@) +M:System.Collections.DictionaryEntry.get_Key +M:System.Collections.DictionaryEntry.get_Value +M:System.Collections.DictionaryEntry.set_Key(System.Object) +M:System.Collections.DictionaryEntry.set_Value(System.Object) +T:System.Collections.Generic.IAsyncEnumerable`1 +M:System.Collections.Generic.IAsyncEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken) +T:System.Collections.Generic.IAsyncEnumerator`1 +M:System.Collections.Generic.IAsyncEnumerator`1.MoveNextAsync +M:System.Collections.Generic.IAsyncEnumerator`1.get_Current +T:System.Collections.Generic.ICollection`1 +M:System.Collections.Generic.ICollection`1.Add(`0) +M:System.Collections.Generic.ICollection`1.Clear +M:System.Collections.Generic.ICollection`1.Contains(`0) +M:System.Collections.Generic.ICollection`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.ICollection`1.Remove(`0) +M:System.Collections.Generic.ICollection`1.get_Count +M:System.Collections.Generic.ICollection`1.get_IsReadOnly +T:System.Collections.Generic.IComparer`1 +M:System.Collections.Generic.IComparer`1.Compare(`0,`0) +T:System.Collections.Generic.IDictionary`2 +M:System.Collections.Generic.IDictionary`2.Add(`0,`1) +M:System.Collections.Generic.IDictionary`2.ContainsKey(`0) +M:System.Collections.Generic.IDictionary`2.Remove(`0) +M:System.Collections.Generic.IDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Generic.IDictionary`2.get_Item(`0) +M:System.Collections.Generic.IDictionary`2.get_Keys +M:System.Collections.Generic.IDictionary`2.get_Values +M:System.Collections.Generic.IDictionary`2.set_Item(`0,`1) +T:System.Collections.Generic.IEnumerable`1 +M:System.Collections.Generic.IEnumerable`1.GetEnumerator +T:System.Collections.Generic.IEnumerator`1 +M:System.Collections.Generic.IEnumerator`1.get_Current +T:System.Collections.Generic.IEqualityComparer`1 +M:System.Collections.Generic.IEqualityComparer`1.Equals(`0,`0) +M:System.Collections.Generic.IEqualityComparer`1.GetHashCode(`0) +T:System.Collections.Generic.IList`1 +M:System.Collections.Generic.IList`1.IndexOf(`0) +M:System.Collections.Generic.IList`1.Insert(System.Int32,`0) +M:System.Collections.Generic.IList`1.RemoveAt(System.Int32) +M:System.Collections.Generic.IList`1.get_Item(System.Int32) +M:System.Collections.Generic.IList`1.set_Item(System.Int32,`0) +T:System.Collections.Generic.IReadOnlyCollection`1 +M:System.Collections.Generic.IReadOnlyCollection`1.get_Count +T:System.Collections.Generic.IReadOnlyDictionary`2 +M:System.Collections.Generic.IReadOnlyDictionary`2.ContainsKey(`0) +M:System.Collections.Generic.IReadOnlyDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Generic.IReadOnlyDictionary`2.get_Item(`0) +M:System.Collections.Generic.IReadOnlyDictionary`2.get_Keys +M:System.Collections.Generic.IReadOnlyDictionary`2.get_Values +T:System.Collections.Generic.IReadOnlyList`1 +M:System.Collections.Generic.IReadOnlyList`1.get_Item(System.Int32) +T:System.Collections.Generic.IReadOnlySet`1 +M:System.Collections.Generic.IReadOnlySet`1.Contains(`0) +M:System.Collections.Generic.IReadOnlySet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.IReadOnlySet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.IReadOnlySet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.IReadOnlySet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.IReadOnlySet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.IReadOnlySet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +T:System.Collections.Generic.ISet`1 +M:System.Collections.Generic.ISet`1.Add(`0) +M:System.Collections.Generic.ISet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.UnionWith(System.Collections.Generic.IEnumerable{`0}) +T:System.Collections.Generic.KeyNotFoundException +M:System.Collections.Generic.KeyNotFoundException.#ctor +M:System.Collections.Generic.KeyNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.KeyNotFoundException.#ctor(System.String) +M:System.Collections.Generic.KeyNotFoundException.#ctor(System.String,System.Exception) +T:System.Collections.Generic.KeyValuePair +M:System.Collections.Generic.KeyValuePair.Create``2(``0,``1) +T:System.Collections.Generic.KeyValuePair`2 +M:System.Collections.Generic.KeyValuePair`2.#ctor(`0,`1) +M:System.Collections.Generic.KeyValuePair`2.Deconstruct(`0@,`1@) +M:System.Collections.Generic.KeyValuePair`2.ToString +M:System.Collections.Generic.KeyValuePair`2.get_Key +M:System.Collections.Generic.KeyValuePair`2.get_Value +T:System.Collections.Hashtable +M:System.Collections.Hashtable.#ctor +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary) +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Collections.IEqualityComparer) +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Collections.IHashCodeProvider,System.Collections.IComparer) +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single) +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single,System.Collections.IEqualityComparer) +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer) +M:System.Collections.Hashtable.#ctor(System.Collections.IEqualityComparer) +M:System.Collections.Hashtable.#ctor(System.Collections.IHashCodeProvider,System.Collections.IComparer) +M:System.Collections.Hashtable.#ctor(System.Int32) +M:System.Collections.Hashtable.#ctor(System.Int32,System.Collections.IEqualityComparer) +M:System.Collections.Hashtable.#ctor(System.Int32,System.Collections.IHashCodeProvider,System.Collections.IComparer) +M:System.Collections.Hashtable.#ctor(System.Int32,System.Single) +M:System.Collections.Hashtable.#ctor(System.Int32,System.Single,System.Collections.IEqualityComparer) +M:System.Collections.Hashtable.#ctor(System.Int32,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer) +M:System.Collections.Hashtable.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Hashtable.Add(System.Object,System.Object) +M:System.Collections.Hashtable.Clear +M:System.Collections.Hashtable.Clone +M:System.Collections.Hashtable.Contains(System.Object) +M:System.Collections.Hashtable.ContainsKey(System.Object) +M:System.Collections.Hashtable.ContainsValue(System.Object) +M:System.Collections.Hashtable.CopyTo(System.Array,System.Int32) +M:System.Collections.Hashtable.GetEnumerator +M:System.Collections.Hashtable.GetHash(System.Object) +M:System.Collections.Hashtable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Hashtable.KeyEquals(System.Object,System.Object) +M:System.Collections.Hashtable.OnDeserialization(System.Object) +M:System.Collections.Hashtable.Remove(System.Object) +M:System.Collections.Hashtable.Synchronized(System.Collections.Hashtable) +M:System.Collections.Hashtable.get_Count +M:System.Collections.Hashtable.get_EqualityComparer +M:System.Collections.Hashtable.get_IsFixedSize +M:System.Collections.Hashtable.get_IsReadOnly +M:System.Collections.Hashtable.get_IsSynchronized +M:System.Collections.Hashtable.get_Item(System.Object) +M:System.Collections.Hashtable.get_Keys +M:System.Collections.Hashtable.get_SyncRoot +M:System.Collections.Hashtable.get_Values +M:System.Collections.Hashtable.get_comparer +M:System.Collections.Hashtable.get_hcp +M:System.Collections.Hashtable.set_Item(System.Object,System.Object) +M:System.Collections.Hashtable.set_comparer(System.Collections.IComparer) +M:System.Collections.Hashtable.set_hcp(System.Collections.IHashCodeProvider) +T:System.Collections.ICollection +M:System.Collections.ICollection.CopyTo(System.Array,System.Int32) +M:System.Collections.ICollection.get_Count +M:System.Collections.ICollection.get_IsSynchronized +M:System.Collections.ICollection.get_SyncRoot +T:System.Collections.IComparer +M:System.Collections.IComparer.Compare(System.Object,System.Object) +T:System.Collections.IDictionary +M:System.Collections.IDictionary.Add(System.Object,System.Object) +M:System.Collections.IDictionary.Clear +M:System.Collections.IDictionary.Contains(System.Object) +M:System.Collections.IDictionary.GetEnumerator +M:System.Collections.IDictionary.Remove(System.Object) +M:System.Collections.IDictionary.get_IsFixedSize +M:System.Collections.IDictionary.get_IsReadOnly +M:System.Collections.IDictionary.get_Item(System.Object) +M:System.Collections.IDictionary.get_Keys +M:System.Collections.IDictionary.get_Values +M:System.Collections.IDictionary.set_Item(System.Object,System.Object) +T:System.Collections.IDictionaryEnumerator +M:System.Collections.IDictionaryEnumerator.get_Entry +M:System.Collections.IDictionaryEnumerator.get_Key +M:System.Collections.IDictionaryEnumerator.get_Value +T:System.Collections.IEnumerable +M:System.Collections.IEnumerable.GetEnumerator +T:System.Collections.IEnumerator +M:System.Collections.IEnumerator.MoveNext +M:System.Collections.IEnumerator.Reset +M:System.Collections.IEnumerator.get_Current +T:System.Collections.IEqualityComparer +M:System.Collections.IEqualityComparer.Equals(System.Object,System.Object) +M:System.Collections.IEqualityComparer.GetHashCode(System.Object) +T:System.Collections.IHashCodeProvider +M:System.Collections.IHashCodeProvider.GetHashCode(System.Object) +T:System.Collections.IList +M:System.Collections.IList.Add(System.Object) +M:System.Collections.IList.Clear +M:System.Collections.IList.Contains(System.Object) +M:System.Collections.IList.IndexOf(System.Object) +M:System.Collections.IList.Insert(System.Int32,System.Object) +M:System.Collections.IList.Remove(System.Object) +M:System.Collections.IList.RemoveAt(System.Int32) +M:System.Collections.IList.get_IsFixedSize +M:System.Collections.IList.get_IsReadOnly +M:System.Collections.IList.get_Item(System.Int32) +M:System.Collections.IList.set_Item(System.Int32,System.Object) +T:System.Collections.IStructuralComparable +M:System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) +T:System.Collections.IStructuralEquatable +M:System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) +M:System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) +T:System.Collections.ObjectModel.Collection`1 +M:System.Collections.ObjectModel.Collection`1.#ctor +M:System.Collections.ObjectModel.Collection`1.#ctor(System.Collections.Generic.IList{`0}) +M:System.Collections.ObjectModel.Collection`1.Add(`0) +M:System.Collections.ObjectModel.Collection`1.Clear +M:System.Collections.ObjectModel.Collection`1.ClearItems +M:System.Collections.ObjectModel.Collection`1.Contains(`0) +M:System.Collections.ObjectModel.Collection`1.CopyTo(`0[],System.Int32) +M:System.Collections.ObjectModel.Collection`1.GetEnumerator +M:System.Collections.ObjectModel.Collection`1.IndexOf(`0) +M:System.Collections.ObjectModel.Collection`1.Insert(System.Int32,`0) +M:System.Collections.ObjectModel.Collection`1.InsertItem(System.Int32,`0) +M:System.Collections.ObjectModel.Collection`1.Remove(`0) +M:System.Collections.ObjectModel.Collection`1.RemoveAt(System.Int32) +M:System.Collections.ObjectModel.Collection`1.RemoveItem(System.Int32) +M:System.Collections.ObjectModel.Collection`1.SetItem(System.Int32,`0) +M:System.Collections.ObjectModel.Collection`1.get_Count +M:System.Collections.ObjectModel.Collection`1.get_Item(System.Int32) +M:System.Collections.ObjectModel.Collection`1.get_Items +M:System.Collections.ObjectModel.Collection`1.set_Item(System.Int32,`0) +T:System.Collections.ObjectModel.ReadOnlyCollection`1 +M:System.Collections.ObjectModel.ReadOnlyCollection`1.#ctor(System.Collections.Generic.IList{`0}) +M:System.Collections.ObjectModel.ReadOnlyCollection`1.Contains(`0) +M:System.Collections.ObjectModel.ReadOnlyCollection`1.CopyTo(`0[],System.Int32) +M:System.Collections.ObjectModel.ReadOnlyCollection`1.GetEnumerator +M:System.Collections.ObjectModel.ReadOnlyCollection`1.IndexOf(`0) +M:System.Collections.ObjectModel.ReadOnlyCollection`1.get_Count +M:System.Collections.ObjectModel.ReadOnlyCollection`1.get_Empty +M:System.Collections.ObjectModel.ReadOnlyCollection`1.get_Item(System.Int32) +M:System.Collections.ObjectModel.ReadOnlyCollection`1.get_Items +T:System.Collections.ObjectModel.ReadOnlyDictionary`2 +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1}) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ContainsKey(`0) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.GetEnumerator +T:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.Contains(`0) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.CopyTo(`0[],System.Int32) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.GetEnumerator +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.get_Count +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.TryGetValue(`0,`1@) +T:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.CopyTo(`1[],System.Int32) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.GetEnumerator +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.get_Count +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Count +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Dictionary +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Empty +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Item(`0) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Keys +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Values +T:System.Comparison`1 +M:System.Comparison`1.#ctor(System.Object,System.IntPtr) +M:System.Comparison`1.BeginInvoke(`0,`0,System.AsyncCallback,System.Object) +M:System.Comparison`1.EndInvoke(System.IAsyncResult) +M:System.Comparison`1.Invoke(`0,`0) +T:System.ComponentModel.DefaultValueAttribute +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Boolean) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Byte) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Char) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Double) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Int16) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Int32) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Int64) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Object) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.SByte) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Single) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.String) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Type,System.String) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.UInt16) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.UInt32) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.UInt64) +M:System.ComponentModel.DefaultValueAttribute.Equals(System.Object) +M:System.ComponentModel.DefaultValueAttribute.GetHashCode +M:System.ComponentModel.DefaultValueAttribute.SetValue(System.Object) +M:System.ComponentModel.DefaultValueAttribute.get_Value +T:System.ComponentModel.EditorBrowsableAttribute +M:System.ComponentModel.EditorBrowsableAttribute.#ctor +M:System.ComponentModel.EditorBrowsableAttribute.#ctor(System.ComponentModel.EditorBrowsableState) +M:System.ComponentModel.EditorBrowsableAttribute.Equals(System.Object) +M:System.ComponentModel.EditorBrowsableAttribute.GetHashCode +M:System.ComponentModel.EditorBrowsableAttribute.get_State +T:System.ComponentModel.EditorBrowsableState +F:System.ComponentModel.EditorBrowsableState.Advanced +F:System.ComponentModel.EditorBrowsableState.Always +F:System.ComponentModel.EditorBrowsableState.Never +T:System.Configuration.Assemblies.AssemblyHashAlgorithm +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5 +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.None +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA1 +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA256 +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA384 +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA512 +T:System.Configuration.Assemblies.AssemblyVersionCompatibility +F:System.Configuration.Assemblies.AssemblyVersionCompatibility.SameDomain +F:System.Configuration.Assemblies.AssemblyVersionCompatibility.SameMachine +F:System.Configuration.Assemblies.AssemblyVersionCompatibility.SameProcess +T:System.ContextBoundObject +M:System.ContextBoundObject.#ctor +T:System.ContextMarshalException +M:System.ContextMarshalException.#ctor +M:System.ContextMarshalException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ContextMarshalException.#ctor(System.String) +M:System.ContextMarshalException.#ctor(System.String,System.Exception) +T:System.ContextStaticAttribute +M:System.ContextStaticAttribute.#ctor +T:System.Convert +M:System.Convert.ChangeType(System.Object,System.Type) +M:System.Convert.ChangeType(System.Object,System.Type,System.IFormatProvider) +M:System.Convert.ChangeType(System.Object,System.TypeCode) +M:System.Convert.ChangeType(System.Object,System.TypeCode,System.IFormatProvider) +F:System.Convert.DBNull +M:System.Convert.FromBase64CharArray(System.Char[],System.Int32,System.Int32) +M:System.Convert.FromBase64String(System.String) +M:System.Convert.FromHexString(System.ReadOnlySpan{System.Char}) +M:System.Convert.FromHexString(System.String) +M:System.Convert.GetTypeCode(System.Object) +M:System.Convert.IsDBNull(System.Object) +M:System.Convert.ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) +M:System.Convert.ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Base64FormattingOptions) +M:System.Convert.ToBase64String(System.Byte[]) +M:System.Convert.ToBase64String(System.Byte[],System.Base64FormattingOptions) +M:System.Convert.ToBase64String(System.Byte[],System.Int32,System.Int32) +M:System.Convert.ToBase64String(System.Byte[],System.Int32,System.Int32,System.Base64FormattingOptions) +M:System.Convert.ToBase64String(System.ReadOnlySpan{System.Byte},System.Base64FormattingOptions) +M:System.Convert.ToBoolean(System.Boolean) +M:System.Convert.ToBoolean(System.Byte) +M:System.Convert.ToBoolean(System.Char) +M:System.Convert.ToBoolean(System.DateTime) +M:System.Convert.ToBoolean(System.Decimal) +M:System.Convert.ToBoolean(System.Double) +M:System.Convert.ToBoolean(System.Int16) +M:System.Convert.ToBoolean(System.Int32) +M:System.Convert.ToBoolean(System.Int64) +M:System.Convert.ToBoolean(System.Object) +M:System.Convert.ToBoolean(System.Object,System.IFormatProvider) +M:System.Convert.ToBoolean(System.SByte) +M:System.Convert.ToBoolean(System.Single) +M:System.Convert.ToBoolean(System.String) +M:System.Convert.ToBoolean(System.String,System.IFormatProvider) +M:System.Convert.ToBoolean(System.UInt16) +M:System.Convert.ToBoolean(System.UInt32) +M:System.Convert.ToBoolean(System.UInt64) +M:System.Convert.ToByte(System.Boolean) +M:System.Convert.ToByte(System.Byte) +M:System.Convert.ToByte(System.Char) +M:System.Convert.ToByte(System.DateTime) +M:System.Convert.ToByte(System.Decimal) +M:System.Convert.ToByte(System.Double) +M:System.Convert.ToByte(System.Int16) +M:System.Convert.ToByte(System.Int32) +M:System.Convert.ToByte(System.Int64) +M:System.Convert.ToByte(System.Object) +M:System.Convert.ToByte(System.Object,System.IFormatProvider) +M:System.Convert.ToByte(System.SByte) +M:System.Convert.ToByte(System.Single) +M:System.Convert.ToByte(System.String) +M:System.Convert.ToByte(System.String,System.IFormatProvider) +M:System.Convert.ToByte(System.String,System.Int32) +M:System.Convert.ToByte(System.UInt16) +M:System.Convert.ToByte(System.UInt32) +M:System.Convert.ToByte(System.UInt64) +M:System.Convert.ToChar(System.Boolean) +M:System.Convert.ToChar(System.Byte) +M:System.Convert.ToChar(System.Char) +M:System.Convert.ToChar(System.DateTime) +M:System.Convert.ToChar(System.Decimal) +M:System.Convert.ToChar(System.Double) +M:System.Convert.ToChar(System.Int16) +M:System.Convert.ToChar(System.Int32) +M:System.Convert.ToChar(System.Int64) +M:System.Convert.ToChar(System.Object) +M:System.Convert.ToChar(System.Object,System.IFormatProvider) +M:System.Convert.ToChar(System.SByte) +M:System.Convert.ToChar(System.Single) +M:System.Convert.ToChar(System.String) +M:System.Convert.ToChar(System.String,System.IFormatProvider) +M:System.Convert.ToChar(System.UInt16) +M:System.Convert.ToChar(System.UInt32) +M:System.Convert.ToChar(System.UInt64) +M:System.Convert.ToDateTime(System.Boolean) +M:System.Convert.ToDateTime(System.Byte) +M:System.Convert.ToDateTime(System.Char) +M:System.Convert.ToDateTime(System.DateTime) +M:System.Convert.ToDateTime(System.Decimal) +M:System.Convert.ToDateTime(System.Double) +M:System.Convert.ToDateTime(System.Int16) +M:System.Convert.ToDateTime(System.Int32) +M:System.Convert.ToDateTime(System.Int64) +M:System.Convert.ToDateTime(System.Object) +M:System.Convert.ToDateTime(System.Object,System.IFormatProvider) +M:System.Convert.ToDateTime(System.SByte) +M:System.Convert.ToDateTime(System.Single) +M:System.Convert.ToDateTime(System.String) +M:System.Convert.ToDateTime(System.String,System.IFormatProvider) +M:System.Convert.ToDateTime(System.UInt16) +M:System.Convert.ToDateTime(System.UInt32) +M:System.Convert.ToDateTime(System.UInt64) +M:System.Convert.ToDecimal(System.Boolean) +M:System.Convert.ToDecimal(System.Byte) +M:System.Convert.ToDecimal(System.Char) +M:System.Convert.ToDecimal(System.DateTime) +M:System.Convert.ToDecimal(System.Decimal) +M:System.Convert.ToDecimal(System.Double) +M:System.Convert.ToDecimal(System.Int16) +M:System.Convert.ToDecimal(System.Int32) +M:System.Convert.ToDecimal(System.Int64) +M:System.Convert.ToDecimal(System.Object) +M:System.Convert.ToDecimal(System.Object,System.IFormatProvider) +M:System.Convert.ToDecimal(System.SByte) +M:System.Convert.ToDecimal(System.Single) +M:System.Convert.ToDecimal(System.String) +M:System.Convert.ToDecimal(System.String,System.IFormatProvider) +M:System.Convert.ToDecimal(System.UInt16) +M:System.Convert.ToDecimal(System.UInt32) +M:System.Convert.ToDecimal(System.UInt64) +M:System.Convert.ToDouble(System.Boolean) +M:System.Convert.ToDouble(System.Byte) +M:System.Convert.ToDouble(System.Char) +M:System.Convert.ToDouble(System.DateTime) +M:System.Convert.ToDouble(System.Decimal) +M:System.Convert.ToDouble(System.Double) +M:System.Convert.ToDouble(System.Int16) +M:System.Convert.ToDouble(System.Int32) +M:System.Convert.ToDouble(System.Int64) +M:System.Convert.ToDouble(System.Object) +M:System.Convert.ToDouble(System.Object,System.IFormatProvider) +M:System.Convert.ToDouble(System.SByte) +M:System.Convert.ToDouble(System.Single) +M:System.Convert.ToDouble(System.String) +M:System.Convert.ToDouble(System.String,System.IFormatProvider) +M:System.Convert.ToDouble(System.UInt16) +M:System.Convert.ToDouble(System.UInt32) +M:System.Convert.ToDouble(System.UInt64) +M:System.Convert.ToHexString(System.Byte[]) +M:System.Convert.ToHexString(System.Byte[],System.Int32,System.Int32) +M:System.Convert.ToHexString(System.ReadOnlySpan{System.Byte}) +M:System.Convert.ToInt16(System.Boolean) +M:System.Convert.ToInt16(System.Byte) +M:System.Convert.ToInt16(System.Char) +M:System.Convert.ToInt16(System.DateTime) +M:System.Convert.ToInt16(System.Decimal) +M:System.Convert.ToInt16(System.Double) +M:System.Convert.ToInt16(System.Int16) +M:System.Convert.ToInt16(System.Int32) +M:System.Convert.ToInt16(System.Int64) +M:System.Convert.ToInt16(System.Object) +M:System.Convert.ToInt16(System.Object,System.IFormatProvider) +M:System.Convert.ToInt16(System.SByte) +M:System.Convert.ToInt16(System.Single) +M:System.Convert.ToInt16(System.String) +M:System.Convert.ToInt16(System.String,System.IFormatProvider) +M:System.Convert.ToInt16(System.String,System.Int32) +M:System.Convert.ToInt16(System.UInt16) +M:System.Convert.ToInt16(System.UInt32) +M:System.Convert.ToInt16(System.UInt64) +M:System.Convert.ToInt32(System.Boolean) +M:System.Convert.ToInt32(System.Byte) +M:System.Convert.ToInt32(System.Char) +M:System.Convert.ToInt32(System.DateTime) +M:System.Convert.ToInt32(System.Decimal) +M:System.Convert.ToInt32(System.Double) +M:System.Convert.ToInt32(System.Int16) +M:System.Convert.ToInt32(System.Int32) +M:System.Convert.ToInt32(System.Int64) +M:System.Convert.ToInt32(System.Object) +M:System.Convert.ToInt32(System.Object,System.IFormatProvider) +M:System.Convert.ToInt32(System.SByte) +M:System.Convert.ToInt32(System.Single) +M:System.Convert.ToInt32(System.String) +M:System.Convert.ToInt32(System.String,System.IFormatProvider) +M:System.Convert.ToInt32(System.String,System.Int32) +M:System.Convert.ToInt32(System.UInt16) +M:System.Convert.ToInt32(System.UInt32) +M:System.Convert.ToInt32(System.UInt64) +M:System.Convert.ToInt64(System.Boolean) +M:System.Convert.ToInt64(System.Byte) +M:System.Convert.ToInt64(System.Char) +M:System.Convert.ToInt64(System.DateTime) +M:System.Convert.ToInt64(System.Decimal) +M:System.Convert.ToInt64(System.Double) +M:System.Convert.ToInt64(System.Int16) +M:System.Convert.ToInt64(System.Int32) +M:System.Convert.ToInt64(System.Int64) +M:System.Convert.ToInt64(System.Object) +M:System.Convert.ToInt64(System.Object,System.IFormatProvider) +M:System.Convert.ToInt64(System.SByte) +M:System.Convert.ToInt64(System.Single) +M:System.Convert.ToInt64(System.String) +M:System.Convert.ToInt64(System.String,System.IFormatProvider) +M:System.Convert.ToInt64(System.String,System.Int32) +M:System.Convert.ToInt64(System.UInt16) +M:System.Convert.ToInt64(System.UInt32) +M:System.Convert.ToInt64(System.UInt64) +M:System.Convert.ToSByte(System.Boolean) +M:System.Convert.ToSByte(System.Byte) +M:System.Convert.ToSByte(System.Char) +M:System.Convert.ToSByte(System.DateTime) +M:System.Convert.ToSByte(System.Decimal) +M:System.Convert.ToSByte(System.Double) +M:System.Convert.ToSByte(System.Int16) +M:System.Convert.ToSByte(System.Int32) +M:System.Convert.ToSByte(System.Int64) +M:System.Convert.ToSByte(System.Object) +M:System.Convert.ToSByte(System.Object,System.IFormatProvider) +M:System.Convert.ToSByte(System.SByte) +M:System.Convert.ToSByte(System.Single) +M:System.Convert.ToSByte(System.String) +M:System.Convert.ToSByte(System.String,System.IFormatProvider) +M:System.Convert.ToSByte(System.String,System.Int32) +M:System.Convert.ToSByte(System.UInt16) +M:System.Convert.ToSByte(System.UInt32) +M:System.Convert.ToSByte(System.UInt64) +M:System.Convert.ToSingle(System.Boolean) +M:System.Convert.ToSingle(System.Byte) +M:System.Convert.ToSingle(System.Char) +M:System.Convert.ToSingle(System.DateTime) +M:System.Convert.ToSingle(System.Decimal) +M:System.Convert.ToSingle(System.Double) +M:System.Convert.ToSingle(System.Int16) +M:System.Convert.ToSingle(System.Int32) +M:System.Convert.ToSingle(System.Int64) +M:System.Convert.ToSingle(System.Object) +M:System.Convert.ToSingle(System.Object,System.IFormatProvider) +M:System.Convert.ToSingle(System.SByte) +M:System.Convert.ToSingle(System.Single) +M:System.Convert.ToSingle(System.String) +M:System.Convert.ToSingle(System.String,System.IFormatProvider) +M:System.Convert.ToSingle(System.UInt16) +M:System.Convert.ToSingle(System.UInt32) +M:System.Convert.ToSingle(System.UInt64) +M:System.Convert.ToString(System.Boolean) +M:System.Convert.ToString(System.Boolean,System.IFormatProvider) +M:System.Convert.ToString(System.Byte) +M:System.Convert.ToString(System.Byte,System.IFormatProvider) +M:System.Convert.ToString(System.Byte,System.Int32) +M:System.Convert.ToString(System.Char) +M:System.Convert.ToString(System.Char,System.IFormatProvider) +M:System.Convert.ToString(System.DateTime) +M:System.Convert.ToString(System.DateTime,System.IFormatProvider) +M:System.Convert.ToString(System.Decimal) +M:System.Convert.ToString(System.Decimal,System.IFormatProvider) +M:System.Convert.ToString(System.Double) +M:System.Convert.ToString(System.Double,System.IFormatProvider) +M:System.Convert.ToString(System.Int16) +M:System.Convert.ToString(System.Int16,System.IFormatProvider) +M:System.Convert.ToString(System.Int16,System.Int32) +M:System.Convert.ToString(System.Int32) +M:System.Convert.ToString(System.Int32,System.IFormatProvider) +M:System.Convert.ToString(System.Int32,System.Int32) +M:System.Convert.ToString(System.Int64) +M:System.Convert.ToString(System.Int64,System.IFormatProvider) +M:System.Convert.ToString(System.Int64,System.Int32) +M:System.Convert.ToString(System.Object) +M:System.Convert.ToString(System.Object,System.IFormatProvider) +M:System.Convert.ToString(System.SByte) +M:System.Convert.ToString(System.SByte,System.IFormatProvider) +M:System.Convert.ToString(System.Single) +M:System.Convert.ToString(System.Single,System.IFormatProvider) +M:System.Convert.ToString(System.String) +M:System.Convert.ToString(System.String,System.IFormatProvider) +M:System.Convert.ToString(System.UInt16) +M:System.Convert.ToString(System.UInt16,System.IFormatProvider) +M:System.Convert.ToString(System.UInt32) +M:System.Convert.ToString(System.UInt32,System.IFormatProvider) +M:System.Convert.ToString(System.UInt64) +M:System.Convert.ToString(System.UInt64,System.IFormatProvider) +M:System.Convert.ToUInt16(System.Boolean) +M:System.Convert.ToUInt16(System.Byte) +M:System.Convert.ToUInt16(System.Char) +M:System.Convert.ToUInt16(System.DateTime) +M:System.Convert.ToUInt16(System.Decimal) +M:System.Convert.ToUInt16(System.Double) +M:System.Convert.ToUInt16(System.Int16) +M:System.Convert.ToUInt16(System.Int32) +M:System.Convert.ToUInt16(System.Int64) +M:System.Convert.ToUInt16(System.Object) +M:System.Convert.ToUInt16(System.Object,System.IFormatProvider) +M:System.Convert.ToUInt16(System.SByte) +M:System.Convert.ToUInt16(System.Single) +M:System.Convert.ToUInt16(System.String) +M:System.Convert.ToUInt16(System.String,System.IFormatProvider) +M:System.Convert.ToUInt16(System.String,System.Int32) +M:System.Convert.ToUInt16(System.UInt16) +M:System.Convert.ToUInt16(System.UInt32) +M:System.Convert.ToUInt16(System.UInt64) +M:System.Convert.ToUInt32(System.Boolean) +M:System.Convert.ToUInt32(System.Byte) +M:System.Convert.ToUInt32(System.Char) +M:System.Convert.ToUInt32(System.DateTime) +M:System.Convert.ToUInt32(System.Decimal) +M:System.Convert.ToUInt32(System.Double) +M:System.Convert.ToUInt32(System.Int16) +M:System.Convert.ToUInt32(System.Int32) +M:System.Convert.ToUInt32(System.Int64) +M:System.Convert.ToUInt32(System.Object) +M:System.Convert.ToUInt32(System.Object,System.IFormatProvider) +M:System.Convert.ToUInt32(System.SByte) +M:System.Convert.ToUInt32(System.Single) +M:System.Convert.ToUInt32(System.String) +M:System.Convert.ToUInt32(System.String,System.IFormatProvider) +M:System.Convert.ToUInt32(System.String,System.Int32) +M:System.Convert.ToUInt32(System.UInt16) +M:System.Convert.ToUInt32(System.UInt32) +M:System.Convert.ToUInt32(System.UInt64) +M:System.Convert.ToUInt64(System.Boolean) +M:System.Convert.ToUInt64(System.Byte) +M:System.Convert.ToUInt64(System.Char) +M:System.Convert.ToUInt64(System.DateTime) +M:System.Convert.ToUInt64(System.Decimal) +M:System.Convert.ToUInt64(System.Double) +M:System.Convert.ToUInt64(System.Int16) +M:System.Convert.ToUInt64(System.Int32) +M:System.Convert.ToUInt64(System.Int64) +M:System.Convert.ToUInt64(System.Object) +M:System.Convert.ToUInt64(System.Object,System.IFormatProvider) +M:System.Convert.ToUInt64(System.SByte) +M:System.Convert.ToUInt64(System.Single) +M:System.Convert.ToUInt64(System.String) +M:System.Convert.ToUInt64(System.String,System.IFormatProvider) +M:System.Convert.ToUInt64(System.String,System.Int32) +M:System.Convert.ToUInt64(System.UInt16) +M:System.Convert.ToUInt64(System.UInt32) +M:System.Convert.ToUInt64(System.UInt64) +M:System.Convert.TryFromBase64Chars(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@) +M:System.Convert.TryFromBase64String(System.String,System.Span{System.Byte},System.Int32@) +M:System.Convert.TryToBase64Chars(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@,System.Base64FormattingOptions) +T:System.Converter`2 +M:System.Converter`2.#ctor(System.Object,System.IntPtr) +M:System.Converter`2.BeginInvoke(`0,System.AsyncCallback,System.Object) +M:System.Converter`2.EndInvoke(System.IAsyncResult) +M:System.Converter`2.Invoke(`0) +T:System.DBNull +M:System.DBNull.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.DBNull.GetTypeCode +M:System.DBNull.ToString +M:System.DBNull.ToString(System.IFormatProvider) +F:System.DBNull.Value +T:System.DateOnly +M:System.DateOnly.#ctor(System.Int32,System.Int32,System.Int32) +M:System.DateOnly.#ctor(System.Int32,System.Int32,System.Int32,System.Globalization.Calendar) +M:System.DateOnly.AddDays(System.Int32) +M:System.DateOnly.AddMonths(System.Int32) +M:System.DateOnly.AddYears(System.Int32) +M:System.DateOnly.CompareTo(System.DateOnly) +M:System.DateOnly.CompareTo(System.Object) +M:System.DateOnly.Deconstruct(System.Int32@,System.Int32@,System.Int32@) +M:System.DateOnly.Equals(System.DateOnly) +M:System.DateOnly.Equals(System.Object) +M:System.DateOnly.FromDateTime(System.DateTime) +M:System.DateOnly.FromDayNumber(System.Int32) +M:System.DateOnly.GetHashCode +M:System.DateOnly.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateOnly.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.Parse(System.String) +M:System.DateOnly.Parse(System.String,System.IFormatProvider) +M:System.DateOnly.Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.ParseExact(System.ReadOnlySpan{System.Char},System.String[]) +M:System.DateOnly.ParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.ParseExact(System.String,System.String) +M:System.DateOnly.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.ParseExact(System.String,System.String[]) +M:System.DateOnly.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.ToDateTime(System.TimeOnly) +M:System.DateOnly.ToDateTime(System.TimeOnly,System.DateTimeKind) +M:System.DateOnly.ToLongDateString +M:System.DateOnly.ToShortDateString +M:System.DateOnly.ToString +M:System.DateOnly.ToString(System.IFormatProvider) +M:System.DateOnly.ToString(System.String) +M:System.DateOnly.ToString(System.String,System.IFormatProvider) +M:System.DateOnly.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateOnly.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateOnly.TryParse(System.ReadOnlySpan{System.Char},System.DateOnly@) +M:System.DateOnly.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.DateOnly@) +M:System.DateOnly.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.TryParse(System.String,System.DateOnly@) +M:System.DateOnly.TryParse(System.String,System.IFormatProvider,System.DateOnly@) +M:System.DateOnly.TryParse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.DateOnly@) +M:System.DateOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.DateOnly@) +M:System.DateOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.TryParseExact(System.String,System.String,System.DateOnly@) +M:System.DateOnly.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.TryParseExact(System.String,System.String[],System.DateOnly@) +M:System.DateOnly.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.get_Day +M:System.DateOnly.get_DayNumber +M:System.DateOnly.get_DayOfWeek +M:System.DateOnly.get_DayOfYear +M:System.DateOnly.get_MaxValue +M:System.DateOnly.get_MinValue +M:System.DateOnly.get_Month +M:System.DateOnly.get_Year +M:System.DateOnly.op_Equality(System.DateOnly,System.DateOnly) +M:System.DateOnly.op_GreaterThan(System.DateOnly,System.DateOnly) +M:System.DateOnly.op_GreaterThanOrEqual(System.DateOnly,System.DateOnly) +M:System.DateOnly.op_Inequality(System.DateOnly,System.DateOnly) +M:System.DateOnly.op_LessThan(System.DateOnly,System.DateOnly) +M:System.DateOnly.op_LessThanOrEqual(System.DateOnly,System.DateOnly) +T:System.DateTime +M:System.DateTime.#ctor(System.DateOnly,System.TimeOnly) +M:System.DateTime.#ctor(System.DateOnly,System.TimeOnly,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Globalization.Calendar) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int64) +M:System.DateTime.#ctor(System.Int64,System.DateTimeKind) +M:System.DateTime.Add(System.TimeSpan) +M:System.DateTime.AddDays(System.Double) +M:System.DateTime.AddHours(System.Double) +M:System.DateTime.AddMicroseconds(System.Double) +M:System.DateTime.AddMilliseconds(System.Double) +M:System.DateTime.AddMinutes(System.Double) +M:System.DateTime.AddMonths(System.Int32) +M:System.DateTime.AddSeconds(System.Double) +M:System.DateTime.AddTicks(System.Int64) +M:System.DateTime.AddYears(System.Int32) +M:System.DateTime.Compare(System.DateTime,System.DateTime) +M:System.DateTime.CompareTo(System.DateTime) +M:System.DateTime.CompareTo(System.Object) +M:System.DateTime.DaysInMonth(System.Int32,System.Int32) +M:System.DateTime.Deconstruct(System.DateOnly@,System.TimeOnly@) +M:System.DateTime.Deconstruct(System.Int32@,System.Int32@,System.Int32@) +M:System.DateTime.Equals(System.DateTime) +M:System.DateTime.Equals(System.DateTime,System.DateTime) +M:System.DateTime.Equals(System.Object) +M:System.DateTime.FromBinary(System.Int64) +M:System.DateTime.FromFileTime(System.Int64) +M:System.DateTime.FromFileTimeUtc(System.Int64) +M:System.DateTime.FromOADate(System.Double) +M:System.DateTime.GetDateTimeFormats +M:System.DateTime.GetDateTimeFormats(System.Char) +M:System.DateTime.GetDateTimeFormats(System.Char,System.IFormatProvider) +M:System.DateTime.GetDateTimeFormats(System.IFormatProvider) +M:System.DateTime.GetHashCode +M:System.DateTime.GetTypeCode +M:System.DateTime.IsDaylightSavingTime +M:System.DateTime.IsLeapYear(System.Int32) +F:System.DateTime.MaxValue +F:System.DateTime.MinValue +M:System.DateTime.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTime.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.Parse(System.String) +M:System.DateTime.Parse(System.String,System.IFormatProvider) +M:System.DateTime.Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.ParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.ParseExact(System.String,System.String,System.IFormatProvider) +M:System.DateTime.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.SpecifyKind(System.DateTime,System.DateTimeKind) +M:System.DateTime.Subtract(System.DateTime) +M:System.DateTime.Subtract(System.TimeSpan) +M:System.DateTime.ToBinary +M:System.DateTime.ToFileTime +M:System.DateTime.ToFileTimeUtc +M:System.DateTime.ToLocalTime +M:System.DateTime.ToLongDateString +M:System.DateTime.ToLongTimeString +M:System.DateTime.ToOADate +M:System.DateTime.ToShortDateString +M:System.DateTime.ToShortTimeString +M:System.DateTime.ToString +M:System.DateTime.ToString(System.IFormatProvider) +M:System.DateTime.ToString(System.String) +M:System.DateTime.ToString(System.String,System.IFormatProvider) +M:System.DateTime.ToUniversalTime +M:System.DateTime.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTime.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTime.TryParse(System.ReadOnlySpan{System.Char},System.DateTime@) +M:System.DateTime.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.DateTime@) +M:System.DateTime.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTime.TryParse(System.String,System.DateTime@) +M:System.DateTime.TryParse(System.String,System.IFormatProvider,System.DateTime@) +M:System.DateTime.TryParse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTime.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTime.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTime.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTime.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +F:System.DateTime.UnixEpoch +M:System.DateTime.get_Date +M:System.DateTime.get_Day +M:System.DateTime.get_DayOfWeek +M:System.DateTime.get_DayOfYear +M:System.DateTime.get_Hour +M:System.DateTime.get_Kind +M:System.DateTime.get_Microsecond +M:System.DateTime.get_Millisecond +M:System.DateTime.get_Minute +M:System.DateTime.get_Month +M:System.DateTime.get_Nanosecond +M:System.DateTime.get_Now +M:System.DateTime.get_Second +M:System.DateTime.get_Ticks +M:System.DateTime.get_TimeOfDay +M:System.DateTime.get_Today +M:System.DateTime.get_UtcNow +M:System.DateTime.get_Year +M:System.DateTime.op_Addition(System.DateTime,System.TimeSpan) +M:System.DateTime.op_Equality(System.DateTime,System.DateTime) +M:System.DateTime.op_GreaterThan(System.DateTime,System.DateTime) +M:System.DateTime.op_GreaterThanOrEqual(System.DateTime,System.DateTime) +M:System.DateTime.op_Inequality(System.DateTime,System.DateTime) +M:System.DateTime.op_LessThan(System.DateTime,System.DateTime) +M:System.DateTime.op_LessThanOrEqual(System.DateTime,System.DateTime) +M:System.DateTime.op_Subtraction(System.DateTime,System.DateTime) +M:System.DateTime.op_Subtraction(System.DateTime,System.TimeSpan) +T:System.DateTimeKind +F:System.DateTimeKind.Local +F:System.DateTimeKind.Unspecified +F:System.DateTimeKind.Utc +T:System.DateTimeOffset +M:System.DateTimeOffset.#ctor(System.DateOnly,System.TimeOnly,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.DateTime) +M:System.DateTimeOffset.#ctor(System.DateTime,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int64,System.TimeSpan) +M:System.DateTimeOffset.Add(System.TimeSpan) +M:System.DateTimeOffset.AddDays(System.Double) +M:System.DateTimeOffset.AddHours(System.Double) +M:System.DateTimeOffset.AddMicroseconds(System.Double) +M:System.DateTimeOffset.AddMilliseconds(System.Double) +M:System.DateTimeOffset.AddMinutes(System.Double) +M:System.DateTimeOffset.AddMonths(System.Int32) +M:System.DateTimeOffset.AddSeconds(System.Double) +M:System.DateTimeOffset.AddTicks(System.Int64) +M:System.DateTimeOffset.AddYears(System.Int32) +M:System.DateTimeOffset.Compare(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.CompareTo(System.DateTimeOffset) +M:System.DateTimeOffset.Deconstruct(System.DateOnly@,System.TimeOnly@,System.TimeSpan@) +M:System.DateTimeOffset.Equals(System.DateTimeOffset) +M:System.DateTimeOffset.Equals(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.Equals(System.Object) +M:System.DateTimeOffset.EqualsExact(System.DateTimeOffset) +M:System.DateTimeOffset.FromFileTime(System.Int64) +M:System.DateTimeOffset.FromUnixTimeMilliseconds(System.Int64) +M:System.DateTimeOffset.FromUnixTimeSeconds(System.Int64) +M:System.DateTimeOffset.GetHashCode +F:System.DateTimeOffset.MaxValue +F:System.DateTimeOffset.MinValue +M:System.DateTimeOffset.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTimeOffset.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.Parse(System.String) +M:System.DateTimeOffset.Parse(System.String,System.IFormatProvider) +M:System.DateTimeOffset.Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.ParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.ParseExact(System.String,System.String,System.IFormatProvider) +M:System.DateTimeOffset.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.Subtract(System.DateTimeOffset) +M:System.DateTimeOffset.Subtract(System.TimeSpan) +M:System.DateTimeOffset.ToFileTime +M:System.DateTimeOffset.ToLocalTime +M:System.DateTimeOffset.ToOffset(System.TimeSpan) +M:System.DateTimeOffset.ToString +M:System.DateTimeOffset.ToString(System.IFormatProvider) +M:System.DateTimeOffset.ToString(System.String) +M:System.DateTimeOffset.ToString(System.String,System.IFormatProvider) +M:System.DateTimeOffset.ToUniversalTime +M:System.DateTimeOffset.ToUnixTimeMilliseconds +M:System.DateTimeOffset.ToUnixTimeSeconds +M:System.DateTimeOffset.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTimeOffset.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTimeOffset.TryParse(System.ReadOnlySpan{System.Char},System.DateTimeOffset@) +M:System.DateTimeOffset.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParse(System.String,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParse(System.String,System.IFormatProvider,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +F:System.DateTimeOffset.UnixEpoch +M:System.DateTimeOffset.get_Date +M:System.DateTimeOffset.get_DateTime +M:System.DateTimeOffset.get_Day +M:System.DateTimeOffset.get_DayOfWeek +M:System.DateTimeOffset.get_DayOfYear +M:System.DateTimeOffset.get_Hour +M:System.DateTimeOffset.get_LocalDateTime +M:System.DateTimeOffset.get_Microsecond +M:System.DateTimeOffset.get_Millisecond +M:System.DateTimeOffset.get_Minute +M:System.DateTimeOffset.get_Month +M:System.DateTimeOffset.get_Nanosecond +M:System.DateTimeOffset.get_Now +M:System.DateTimeOffset.get_Offset +M:System.DateTimeOffset.get_Second +M:System.DateTimeOffset.get_Ticks +M:System.DateTimeOffset.get_TimeOfDay +M:System.DateTimeOffset.get_TotalOffsetMinutes +M:System.DateTimeOffset.get_UtcDateTime +M:System.DateTimeOffset.get_UtcNow +M:System.DateTimeOffset.get_UtcTicks +M:System.DateTimeOffset.get_Year +M:System.DateTimeOffset.op_Addition(System.DateTimeOffset,System.TimeSpan) +M:System.DateTimeOffset.op_Equality(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_GreaterThan(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_GreaterThanOrEqual(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_Implicit(System.DateTime)~System.DateTimeOffset +M:System.DateTimeOffset.op_Inequality(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_LessThan(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_LessThanOrEqual(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_Subtraction(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_Subtraction(System.DateTimeOffset,System.TimeSpan) +T:System.DayOfWeek +F:System.DayOfWeek.Friday +F:System.DayOfWeek.Monday +F:System.DayOfWeek.Saturday +F:System.DayOfWeek.Sunday +F:System.DayOfWeek.Thursday +F:System.DayOfWeek.Tuesday +F:System.DayOfWeek.Wednesday +T:System.Decimal +M:System.Decimal.#ctor(System.Double) +M:System.Decimal.#ctor(System.Int32) +M:System.Decimal.#ctor(System.Int32,System.Int32,System.Int32,System.Boolean,System.Byte) +M:System.Decimal.#ctor(System.Int32[]) +M:System.Decimal.#ctor(System.Int64) +M:System.Decimal.#ctor(System.ReadOnlySpan{System.Int32}) +M:System.Decimal.#ctor(System.Single) +M:System.Decimal.#ctor(System.UInt32) +M:System.Decimal.#ctor(System.UInt64) +M:System.Decimal.Abs(System.Decimal) +M:System.Decimal.Add(System.Decimal,System.Decimal) +M:System.Decimal.Ceiling(System.Decimal) +M:System.Decimal.Clamp(System.Decimal,System.Decimal,System.Decimal) +M:System.Decimal.Compare(System.Decimal,System.Decimal) +M:System.Decimal.CompareTo(System.Decimal) +M:System.Decimal.CompareTo(System.Object) +M:System.Decimal.CopySign(System.Decimal,System.Decimal) +M:System.Decimal.CreateChecked``1(``0) +M:System.Decimal.CreateSaturating``1(``0) +M:System.Decimal.CreateTruncating``1(``0) +M:System.Decimal.Divide(System.Decimal,System.Decimal) +M:System.Decimal.Equals(System.Decimal) +M:System.Decimal.Equals(System.Decimal,System.Decimal) +M:System.Decimal.Equals(System.Object) +M:System.Decimal.Floor(System.Decimal) +M:System.Decimal.FromOACurrency(System.Int64) +M:System.Decimal.GetBits(System.Decimal) +M:System.Decimal.GetBits(System.Decimal,System.Span{System.Int32}) +M:System.Decimal.GetHashCode +M:System.Decimal.GetTypeCode +M:System.Decimal.IsCanonical(System.Decimal) +M:System.Decimal.IsEvenInteger(System.Decimal) +M:System.Decimal.IsInteger(System.Decimal) +M:System.Decimal.IsNegative(System.Decimal) +M:System.Decimal.IsOddInteger(System.Decimal) +M:System.Decimal.IsPositive(System.Decimal) +M:System.Decimal.Max(System.Decimal,System.Decimal) +M:System.Decimal.MaxMagnitude(System.Decimal,System.Decimal) +F:System.Decimal.MaxValue +M:System.Decimal.Min(System.Decimal,System.Decimal) +M:System.Decimal.MinMagnitude(System.Decimal,System.Decimal) +F:System.Decimal.MinValue +F:System.Decimal.MinusOne +M:System.Decimal.Multiply(System.Decimal,System.Decimal) +M:System.Decimal.Negate(System.Decimal) +F:System.Decimal.One +M:System.Decimal.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Decimal.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Decimal.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Decimal.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Decimal.Parse(System.String) +M:System.Decimal.Parse(System.String,System.Globalization.NumberStyles) +M:System.Decimal.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Decimal.Parse(System.String,System.IFormatProvider) +M:System.Decimal.Remainder(System.Decimal,System.Decimal) +M:System.Decimal.Round(System.Decimal) +M:System.Decimal.Round(System.Decimal,System.Int32) +M:System.Decimal.Round(System.Decimal,System.Int32,System.MidpointRounding) +M:System.Decimal.Round(System.Decimal,System.MidpointRounding) +M:System.Decimal.Sign(System.Decimal) +M:System.Decimal.Subtract(System.Decimal,System.Decimal) +M:System.Decimal.ToByte(System.Decimal) +M:System.Decimal.ToDouble(System.Decimal) +M:System.Decimal.ToInt16(System.Decimal) +M:System.Decimal.ToInt32(System.Decimal) +M:System.Decimal.ToInt64(System.Decimal) +M:System.Decimal.ToOACurrency(System.Decimal) +M:System.Decimal.ToSByte(System.Decimal) +M:System.Decimal.ToSingle(System.Decimal) +M:System.Decimal.ToString +M:System.Decimal.ToString(System.IFormatProvider) +M:System.Decimal.ToString(System.String) +M:System.Decimal.ToString(System.String,System.IFormatProvider) +M:System.Decimal.ToUInt16(System.Decimal) +M:System.Decimal.ToUInt32(System.Decimal) +M:System.Decimal.ToUInt64(System.Decimal) +M:System.Decimal.Truncate(System.Decimal) +M:System.Decimal.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Decimal.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Decimal.TryGetBits(System.Decimal,System.Span{System.Int32},System.Int32@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Byte},System.Decimal@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Decimal@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Decimal@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Char},System.Decimal@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Decimal@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Decimal@) +M:System.Decimal.TryParse(System.String,System.Decimal@) +M:System.Decimal.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Decimal@) +M:System.Decimal.TryParse(System.String,System.IFormatProvider,System.Decimal@) +F:System.Decimal.Zero +M:System.Decimal.get_Scale +M:System.Decimal.op_Addition(System.Decimal,System.Decimal) +M:System.Decimal.op_Decrement(System.Decimal) +M:System.Decimal.op_Division(System.Decimal,System.Decimal) +M:System.Decimal.op_Equality(System.Decimal,System.Decimal) +M:System.Decimal.op_Explicit(System.Decimal)~System.Byte +M:System.Decimal.op_Explicit(System.Decimal)~System.Char +M:System.Decimal.op_Explicit(System.Decimal)~System.Double +M:System.Decimal.op_Explicit(System.Decimal)~System.Int16 +M:System.Decimal.op_Explicit(System.Decimal)~System.Int32 +M:System.Decimal.op_Explicit(System.Decimal)~System.Int64 +M:System.Decimal.op_Explicit(System.Decimal)~System.SByte +M:System.Decimal.op_Explicit(System.Decimal)~System.Single +M:System.Decimal.op_Explicit(System.Decimal)~System.UInt16 +M:System.Decimal.op_Explicit(System.Decimal)~System.UInt32 +M:System.Decimal.op_Explicit(System.Decimal)~System.UInt64 +M:System.Decimal.op_Explicit(System.Double)~System.Decimal +M:System.Decimal.op_Explicit(System.Single)~System.Decimal +M:System.Decimal.op_GreaterThan(System.Decimal,System.Decimal) +M:System.Decimal.op_GreaterThanOrEqual(System.Decimal,System.Decimal) +M:System.Decimal.op_Implicit(System.Byte)~System.Decimal +M:System.Decimal.op_Implicit(System.Char)~System.Decimal +M:System.Decimal.op_Implicit(System.Int16)~System.Decimal +M:System.Decimal.op_Implicit(System.Int32)~System.Decimal +M:System.Decimal.op_Implicit(System.Int64)~System.Decimal +M:System.Decimal.op_Implicit(System.SByte)~System.Decimal +M:System.Decimal.op_Implicit(System.UInt16)~System.Decimal +M:System.Decimal.op_Implicit(System.UInt32)~System.Decimal +M:System.Decimal.op_Implicit(System.UInt64)~System.Decimal +M:System.Decimal.op_Increment(System.Decimal) +M:System.Decimal.op_Inequality(System.Decimal,System.Decimal) +M:System.Decimal.op_LessThan(System.Decimal,System.Decimal) +M:System.Decimal.op_LessThanOrEqual(System.Decimal,System.Decimal) +M:System.Decimal.op_Modulus(System.Decimal,System.Decimal) +M:System.Decimal.op_Multiply(System.Decimal,System.Decimal) +M:System.Decimal.op_Subtraction(System.Decimal,System.Decimal) +M:System.Decimal.op_UnaryNegation(System.Decimal) +M:System.Decimal.op_UnaryPlus(System.Decimal) +T:System.Delegate +M:System.Delegate.#ctor(System.Object,System.String) +M:System.Delegate.#ctor(System.Type,System.String) +M:System.Delegate.Clone +M:System.Delegate.Combine(System.Delegate,System.Delegate) +M:System.Delegate.Combine(System.Delegate[]) +M:System.Delegate.CombineImpl(System.Delegate) +M:System.Delegate.CreateDelegate(System.Type,System.Object,System.Reflection.MethodInfo) +M:System.Delegate.CreateDelegate(System.Type,System.Object,System.Reflection.MethodInfo,System.Boolean) +M:System.Delegate.CreateDelegate(System.Type,System.Object,System.String) +M:System.Delegate.CreateDelegate(System.Type,System.Object,System.String,System.Boolean) +M:System.Delegate.CreateDelegate(System.Type,System.Object,System.String,System.Boolean,System.Boolean) +M:System.Delegate.CreateDelegate(System.Type,System.Reflection.MethodInfo) +M:System.Delegate.CreateDelegate(System.Type,System.Reflection.MethodInfo,System.Boolean) +M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String) +M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean) +M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean,System.Boolean) +M:System.Delegate.DynamicInvoke(System.Object[]) +M:System.Delegate.DynamicInvokeImpl(System.Object[]) +M:System.Delegate.Equals(System.Object) +M:System.Delegate.GetHashCode +M:System.Delegate.GetInvocationList +M:System.Delegate.GetMethodImpl +M:System.Delegate.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Delegate.Remove(System.Delegate,System.Delegate) +M:System.Delegate.RemoveAll(System.Delegate,System.Delegate) +M:System.Delegate.RemoveImpl(System.Delegate) +M:System.Delegate.get_Method +M:System.Delegate.get_Target +M:System.Delegate.op_Equality(System.Delegate,System.Delegate) +M:System.Delegate.op_Inequality(System.Delegate,System.Delegate) +T:System.Diagnostics.CodeAnalysis.AllowNullAttribute +M:System.Diagnostics.CodeAnalysis.AllowNullAttribute.#ctor +T:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute +M:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.get_Max +M:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.get_Min +M:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +M:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) +T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute +M:System.Diagnostics.CodeAnalysis.DisallowNullAttribute.#ctor +T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute +M:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute.#ctor +T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute +M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean) +M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.get_ParameterValue +T:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.#ctor(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes,System.String,System.String) +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.#ctor(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes,System.Type) +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.#ctor(System.String,System.String,System.String) +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.#ctor(System.String,System.Type) +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_AssemblyName +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_Condition +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_MemberSignature +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_MemberTypes +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_Type +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_TypeName +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.set_Condition(System.String) +T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.Interfaces +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicConstructors +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicEvents +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicFields +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicMethods +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicNestedTypes +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicProperties +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.None +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicParameterlessConstructor +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties +T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute +M:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.#ctor(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes) +M:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.get_MemberTypes +T:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute +M:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute.get_Justification +M:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute.set_Justification(System.String) +T:System.Diagnostics.CodeAnalysis.ExperimentalAttribute +M:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.get_DiagnosticId +M:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.get_UrlFormat +M:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.set_UrlFormat(System.String) +T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute +M:System.Diagnostics.CodeAnalysis.MaybeNullAttribute.#ctor +T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute +M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean) +M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.get_ReturnValue +T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute +M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[]) +M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.get_Members +T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute +M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String) +M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[]) +M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.get_Members +M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.get_ReturnValue +T:System.Diagnostics.CodeAnalysis.NotNullAttribute +M:System.Diagnostics.CodeAnalysis.NotNullAttribute.#ctor +T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute +M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.get_ParameterName +T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute +M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean) +M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.get_ReturnValue +T:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute +M:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.get_Message +M:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.get_Url +M:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.set_Url(System.String) +T:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute +M:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.get_Message +M:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.get_Url +M:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.set_Url(System.String) +T:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute +M:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.get_Message +M:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.get_Url +M:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.set_Url(System.String) +T:System.Diagnostics.CodeAnalysis.SetsRequiredMembersAttribute +M:System.Diagnostics.CodeAnalysis.SetsRequiredMembersAttribute.#ctor +T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute +M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.#ctor(System.String,System.Object[]) +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.CompositeFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.DateOnlyFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.DateTimeFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.EnumFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.GuidFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Json +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.NumericFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Regex +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.TimeOnlyFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.TimeSpanFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Uri +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Xml +M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.get_Arguments +M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.get_Syntax +T:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.#ctor(System.String,System.String) +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_Category +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_CheckId +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_Justification +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_MessageId +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_Scope +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_Target +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.set_Justification(System.String) +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.set_MessageId(System.String) +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.set_Scope(System.String) +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.set_Target(System.String) +T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.#ctor(System.String,System.String) +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_Category +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_CheckId +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_Justification +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_MessageId +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_Scope +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_Target +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.set_Justification(System.String) +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.set_MessageId(System.String) +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.set_Scope(System.String) +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.set_Target(System.String) +T:System.Diagnostics.CodeAnalysis.UnscopedRefAttribute +M:System.Diagnostics.CodeAnalysis.UnscopedRefAttribute.#ctor +T:System.Diagnostics.ConditionalAttribute +M:System.Diagnostics.ConditionalAttribute.#ctor(System.String) +M:System.Diagnostics.ConditionalAttribute.get_ConditionString +T:System.Diagnostics.Debug +M:System.Diagnostics.Debug.Assert(System.Boolean) +M:System.Diagnostics.Debug.Assert(System.Boolean,System.Diagnostics.Debug.AssertInterpolatedStringHandler@) +M:System.Diagnostics.Debug.Assert(System.Boolean,System.Diagnostics.Debug.AssertInterpolatedStringHandler@,System.Diagnostics.Debug.AssertInterpolatedStringHandler@) +M:System.Diagnostics.Debug.Assert(System.Boolean,System.String) +M:System.Diagnostics.Debug.Assert(System.Boolean,System.String,System.String) +M:System.Diagnostics.Debug.Assert(System.Boolean,System.String,System.String,System.Object[]) +M:System.Diagnostics.Debug.Close +M:System.Diagnostics.Debug.Fail(System.String) +M:System.Diagnostics.Debug.Fail(System.String,System.String) +M:System.Diagnostics.Debug.Flush +M:System.Diagnostics.Debug.Indent +M:System.Diagnostics.Debug.Print(System.String) +M:System.Diagnostics.Debug.Print(System.String,System.Object[]) +M:System.Diagnostics.Debug.Unindent +M:System.Diagnostics.Debug.Write(System.Object) +M:System.Diagnostics.Debug.Write(System.Object,System.String) +M:System.Diagnostics.Debug.Write(System.String) +M:System.Diagnostics.Debug.Write(System.String,System.String) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Diagnostics.Debug.WriteIfInterpolatedStringHandler@) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Diagnostics.Debug.WriteIfInterpolatedStringHandler@,System.String) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Object) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Object,System.String) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.String) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.String,System.String) +M:System.Diagnostics.Debug.WriteLine(System.Object) +M:System.Diagnostics.Debug.WriteLine(System.Object,System.String) +M:System.Diagnostics.Debug.WriteLine(System.String) +M:System.Diagnostics.Debug.WriteLine(System.String,System.Object[]) +M:System.Diagnostics.Debug.WriteLine(System.String,System.String) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Diagnostics.Debug.WriteIfInterpolatedStringHandler@) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Diagnostics.Debug.WriteIfInterpolatedStringHandler@,System.String) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Object) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Object,System.String) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.String) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.String,System.String) +M:System.Diagnostics.Debug.get_AutoFlush +M:System.Diagnostics.Debug.get_IndentLevel +M:System.Diagnostics.Debug.get_IndentSize +M:System.Diagnostics.Debug.set_AutoFlush(System.Boolean) +M:System.Diagnostics.Debug.set_IndentLevel(System.Int32) +M:System.Diagnostics.Debug.set_IndentSize(System.Int32) +T:System.Diagnostics.DebuggableAttribute +M:System.Diagnostics.DebuggableAttribute.#ctor(System.Boolean,System.Boolean) +M:System.Diagnostics.DebuggableAttribute.#ctor(System.Diagnostics.DebuggableAttribute.DebuggingModes) +T:System.Diagnostics.DebuggableAttribute.DebuggingModes +F:System.Diagnostics.DebuggableAttribute.DebuggingModes.Default +F:System.Diagnostics.DebuggableAttribute.DebuggingModes.DisableOptimizations +F:System.Diagnostics.DebuggableAttribute.DebuggingModes.EnableEditAndContinue +F:System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints +F:System.Diagnostics.DebuggableAttribute.DebuggingModes.None +M:System.Diagnostics.DebuggableAttribute.get_DebuggingFlags +M:System.Diagnostics.DebuggableAttribute.get_IsJITOptimizerDisabled +M:System.Diagnostics.DebuggableAttribute.get_IsJITTrackingEnabled +T:System.Diagnostics.DebuggerBrowsableAttribute +M:System.Diagnostics.DebuggerBrowsableAttribute.#ctor(System.Diagnostics.DebuggerBrowsableState) +M:System.Diagnostics.DebuggerBrowsableAttribute.get_State +T:System.Diagnostics.DebuggerBrowsableState +F:System.Diagnostics.DebuggerBrowsableState.Collapsed +F:System.Diagnostics.DebuggerBrowsableState.Never +F:System.Diagnostics.DebuggerBrowsableState.RootHidden +T:System.Diagnostics.DebuggerDisplayAttribute +M:System.Diagnostics.DebuggerDisplayAttribute.#ctor(System.String) +M:System.Diagnostics.DebuggerDisplayAttribute.get_Name +M:System.Diagnostics.DebuggerDisplayAttribute.get_Target +M:System.Diagnostics.DebuggerDisplayAttribute.get_TargetTypeName +M:System.Diagnostics.DebuggerDisplayAttribute.get_Type +M:System.Diagnostics.DebuggerDisplayAttribute.get_Value +M:System.Diagnostics.DebuggerDisplayAttribute.set_Name(System.String) +M:System.Diagnostics.DebuggerDisplayAttribute.set_Target(System.Type) +M:System.Diagnostics.DebuggerDisplayAttribute.set_TargetTypeName(System.String) +M:System.Diagnostics.DebuggerDisplayAttribute.set_Type(System.String) +T:System.Diagnostics.DebuggerHiddenAttribute +M:System.Diagnostics.DebuggerHiddenAttribute.#ctor +T:System.Diagnostics.DebuggerNonUserCodeAttribute +M:System.Diagnostics.DebuggerNonUserCodeAttribute.#ctor +T:System.Diagnostics.DebuggerStepThroughAttribute +M:System.Diagnostics.DebuggerStepThroughAttribute.#ctor +T:System.Diagnostics.DebuggerStepperBoundaryAttribute +M:System.Diagnostics.DebuggerStepperBoundaryAttribute.#ctor +T:System.Diagnostics.DebuggerTypeProxyAttribute +M:System.Diagnostics.DebuggerTypeProxyAttribute.#ctor(System.String) +M:System.Diagnostics.DebuggerTypeProxyAttribute.#ctor(System.Type) +M:System.Diagnostics.DebuggerTypeProxyAttribute.get_ProxyTypeName +M:System.Diagnostics.DebuggerTypeProxyAttribute.get_Target +M:System.Diagnostics.DebuggerTypeProxyAttribute.get_TargetTypeName +M:System.Diagnostics.DebuggerTypeProxyAttribute.set_Target(System.Type) +M:System.Diagnostics.DebuggerTypeProxyAttribute.set_TargetTypeName(System.String) +T:System.Diagnostics.DebuggerVisualizerAttribute +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String,System.String) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String,System.Type) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type,System.String) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type,System.Type) +M:System.Diagnostics.DebuggerVisualizerAttribute.get_Description +M:System.Diagnostics.DebuggerVisualizerAttribute.get_Target +M:System.Diagnostics.DebuggerVisualizerAttribute.get_TargetTypeName +M:System.Diagnostics.DebuggerVisualizerAttribute.get_VisualizerObjectSourceTypeName +M:System.Diagnostics.DebuggerVisualizerAttribute.get_VisualizerTypeName +M:System.Diagnostics.DebuggerVisualizerAttribute.set_Description(System.String) +M:System.Diagnostics.DebuggerVisualizerAttribute.set_Target(System.Type) +M:System.Diagnostics.DebuggerVisualizerAttribute.set_TargetTypeName(System.String) +T:System.Diagnostics.StackTraceHiddenAttribute +M:System.Diagnostics.StackTraceHiddenAttribute.#ctor +T:System.Diagnostics.Stopwatch +M:System.Diagnostics.Stopwatch.#ctor +F:System.Diagnostics.Stopwatch.Frequency +M:System.Diagnostics.Stopwatch.GetElapsedTime(System.Int64) +M:System.Diagnostics.Stopwatch.GetElapsedTime(System.Int64,System.Int64) +M:System.Diagnostics.Stopwatch.GetTimestamp +F:System.Diagnostics.Stopwatch.IsHighResolution +M:System.Diagnostics.Stopwatch.Reset +M:System.Diagnostics.Stopwatch.Restart +M:System.Diagnostics.Stopwatch.Start +M:System.Diagnostics.Stopwatch.StartNew +M:System.Diagnostics.Stopwatch.Stop +M:System.Diagnostics.Stopwatch.ToString +M:System.Diagnostics.Stopwatch.get_Elapsed +M:System.Diagnostics.Stopwatch.get_ElapsedMilliseconds +M:System.Diagnostics.Stopwatch.get_ElapsedTicks +M:System.Diagnostics.Stopwatch.get_IsRunning +T:System.Diagnostics.UnreachableException +M:System.Diagnostics.UnreachableException.#ctor +M:System.Diagnostics.UnreachableException.#ctor(System.String) +M:System.Diagnostics.UnreachableException.#ctor(System.String,System.Exception) +T:System.DivideByZeroException +M:System.DivideByZeroException.#ctor +M:System.DivideByZeroException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.DivideByZeroException.#ctor(System.String) +M:System.DivideByZeroException.#ctor(System.String,System.Exception) +T:System.Double +M:System.Double.Abs(System.Double) +M:System.Double.Acos(System.Double) +M:System.Double.AcosPi(System.Double) +M:System.Double.Acosh(System.Double) +M:System.Double.Asin(System.Double) +M:System.Double.AsinPi(System.Double) +M:System.Double.Asinh(System.Double) +M:System.Double.Atan(System.Double) +M:System.Double.Atan2(System.Double,System.Double) +M:System.Double.Atan2Pi(System.Double,System.Double) +M:System.Double.AtanPi(System.Double) +M:System.Double.Atanh(System.Double) +M:System.Double.BitDecrement(System.Double) +M:System.Double.BitIncrement(System.Double) +M:System.Double.Cbrt(System.Double) +M:System.Double.Ceiling(System.Double) +M:System.Double.Clamp(System.Double,System.Double,System.Double) +M:System.Double.CompareTo(System.Double) +M:System.Double.CompareTo(System.Object) +M:System.Double.CopySign(System.Double,System.Double) +M:System.Double.Cos(System.Double) +M:System.Double.CosPi(System.Double) +M:System.Double.Cosh(System.Double) +M:System.Double.CreateChecked``1(``0) +M:System.Double.CreateSaturating``1(``0) +M:System.Double.CreateTruncating``1(``0) +M:System.Double.DegreesToRadians(System.Double) +F:System.Double.E +F:System.Double.Epsilon +M:System.Double.Equals(System.Double) +M:System.Double.Equals(System.Object) +M:System.Double.Exp(System.Double) +M:System.Double.Exp10(System.Double) +M:System.Double.Exp10M1(System.Double) +M:System.Double.Exp2(System.Double) +M:System.Double.Exp2M1(System.Double) +M:System.Double.ExpM1(System.Double) +M:System.Double.Floor(System.Double) +M:System.Double.FusedMultiplyAdd(System.Double,System.Double,System.Double) +M:System.Double.GetHashCode +M:System.Double.GetTypeCode +M:System.Double.Hypot(System.Double,System.Double) +M:System.Double.ILogB(System.Double) +M:System.Double.Ieee754Remainder(System.Double,System.Double) +M:System.Double.IsEvenInteger(System.Double) +M:System.Double.IsFinite(System.Double) +M:System.Double.IsInfinity(System.Double) +M:System.Double.IsInteger(System.Double) +M:System.Double.IsNaN(System.Double) +M:System.Double.IsNegative(System.Double) +M:System.Double.IsNegativeInfinity(System.Double) +M:System.Double.IsNormal(System.Double) +M:System.Double.IsOddInteger(System.Double) +M:System.Double.IsPositive(System.Double) +M:System.Double.IsPositiveInfinity(System.Double) +M:System.Double.IsPow2(System.Double) +M:System.Double.IsRealNumber(System.Double) +M:System.Double.IsSubnormal(System.Double) +M:System.Double.Lerp(System.Double,System.Double,System.Double) +M:System.Double.Log(System.Double) +M:System.Double.Log(System.Double,System.Double) +M:System.Double.Log10(System.Double) +M:System.Double.Log10P1(System.Double) +M:System.Double.Log2(System.Double) +M:System.Double.Log2P1(System.Double) +M:System.Double.LogP1(System.Double) +M:System.Double.Max(System.Double,System.Double) +M:System.Double.MaxMagnitude(System.Double,System.Double) +M:System.Double.MaxMagnitudeNumber(System.Double,System.Double) +M:System.Double.MaxNumber(System.Double,System.Double) +F:System.Double.MaxValue +M:System.Double.Min(System.Double,System.Double) +M:System.Double.MinMagnitude(System.Double,System.Double) +M:System.Double.MinMagnitudeNumber(System.Double,System.Double) +M:System.Double.MinNumber(System.Double,System.Double) +F:System.Double.MinValue +F:System.Double.NaN +F:System.Double.NegativeInfinity +F:System.Double.NegativeZero +M:System.Double.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Double.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Double.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Double.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Double.Parse(System.String) +M:System.Double.Parse(System.String,System.Globalization.NumberStyles) +M:System.Double.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Double.Parse(System.String,System.IFormatProvider) +F:System.Double.Pi +F:System.Double.PositiveInfinity +M:System.Double.Pow(System.Double,System.Double) +M:System.Double.RadiansToDegrees(System.Double) +M:System.Double.ReciprocalEstimate(System.Double) +M:System.Double.ReciprocalSqrtEstimate(System.Double) +M:System.Double.RootN(System.Double,System.Int32) +M:System.Double.Round(System.Double) +M:System.Double.Round(System.Double,System.Int32) +M:System.Double.Round(System.Double,System.Int32,System.MidpointRounding) +M:System.Double.Round(System.Double,System.MidpointRounding) +M:System.Double.ScaleB(System.Double,System.Int32) +M:System.Double.Sign(System.Double) +M:System.Double.Sin(System.Double) +M:System.Double.SinCos(System.Double) +M:System.Double.SinCosPi(System.Double) +M:System.Double.SinPi(System.Double) +M:System.Double.Sinh(System.Double) +M:System.Double.Sqrt(System.Double) +M:System.Double.Tan(System.Double) +M:System.Double.TanPi(System.Double) +M:System.Double.Tanh(System.Double) +F:System.Double.Tau +M:System.Double.ToString +M:System.Double.ToString(System.IFormatProvider) +M:System.Double.ToString(System.String) +M:System.Double.ToString(System.String,System.IFormatProvider) +M:System.Double.Truncate(System.Double) +M:System.Double.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Double.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Double.TryParse(System.ReadOnlySpan{System.Byte},System.Double@) +M:System.Double.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Double@) +M:System.Double.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Double@) +M:System.Double.TryParse(System.ReadOnlySpan{System.Char},System.Double@) +M:System.Double.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Double@) +M:System.Double.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Double@) +M:System.Double.TryParse(System.String,System.Double@) +M:System.Double.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Double@) +M:System.Double.TryParse(System.String,System.IFormatProvider,System.Double@) +M:System.Double.op_Equality(System.Double,System.Double) +M:System.Double.op_GreaterThan(System.Double,System.Double) +M:System.Double.op_GreaterThanOrEqual(System.Double,System.Double) +M:System.Double.op_Inequality(System.Double,System.Double) +M:System.Double.op_LessThan(System.Double,System.Double) +M:System.Double.op_LessThanOrEqual(System.Double,System.Double) +T:System.DuplicateWaitObjectException +M:System.DuplicateWaitObjectException.#ctor +M:System.DuplicateWaitObjectException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.DuplicateWaitObjectException.#ctor(System.String) +M:System.DuplicateWaitObjectException.#ctor(System.String,System.Exception) +M:System.DuplicateWaitObjectException.#ctor(System.String,System.String) +T:System.EntryPointNotFoundException +M:System.EntryPointNotFoundException.#ctor +M:System.EntryPointNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.EntryPointNotFoundException.#ctor(System.String) +M:System.EntryPointNotFoundException.#ctor(System.String,System.Exception) +T:System.Enum +M:System.Enum.#ctor +M:System.Enum.CompareTo(System.Object) +M:System.Enum.Equals(System.Object) +M:System.Enum.Format(System.Type,System.Object,System.String) +M:System.Enum.GetHashCode +M:System.Enum.GetName(System.Type,System.Object) +M:System.Enum.GetName``1(``0) +M:System.Enum.GetNames(System.Type) +M:System.Enum.GetNames``1 +M:System.Enum.GetTypeCode +M:System.Enum.GetUnderlyingType(System.Type) +M:System.Enum.GetValues(System.Type) +M:System.Enum.GetValuesAsUnderlyingType(System.Type) +M:System.Enum.GetValuesAsUnderlyingType``1 +M:System.Enum.GetValues``1 +M:System.Enum.HasFlag(System.Enum) +M:System.Enum.IsDefined(System.Type,System.Object) +M:System.Enum.IsDefined``1(``0) +M:System.Enum.Parse(System.Type,System.ReadOnlySpan{System.Char}) +M:System.Enum.Parse(System.Type,System.ReadOnlySpan{System.Char},System.Boolean) +M:System.Enum.Parse(System.Type,System.String) +M:System.Enum.Parse(System.Type,System.String,System.Boolean) +M:System.Enum.Parse``1(System.ReadOnlySpan{System.Char}) +M:System.Enum.Parse``1(System.ReadOnlySpan{System.Char},System.Boolean) +M:System.Enum.Parse``1(System.String) +M:System.Enum.Parse``1(System.String,System.Boolean) +M:System.Enum.ToObject(System.Type,System.Byte) +M:System.Enum.ToObject(System.Type,System.Int16) +M:System.Enum.ToObject(System.Type,System.Int32) +M:System.Enum.ToObject(System.Type,System.Int64) +M:System.Enum.ToObject(System.Type,System.Object) +M:System.Enum.ToObject(System.Type,System.SByte) +M:System.Enum.ToObject(System.Type,System.UInt16) +M:System.Enum.ToObject(System.Type,System.UInt32) +M:System.Enum.ToObject(System.Type,System.UInt64) +M:System.Enum.ToString +M:System.Enum.ToString(System.IFormatProvider) +M:System.Enum.ToString(System.String) +M:System.Enum.ToString(System.String,System.IFormatProvider) +M:System.Enum.TryFormat``1(``0,System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char}) +M:System.Enum.TryParse(System.Type,System.ReadOnlySpan{System.Char},System.Boolean,System.Object@) +M:System.Enum.TryParse(System.Type,System.ReadOnlySpan{System.Char},System.Object@) +M:System.Enum.TryParse(System.Type,System.String,System.Boolean,System.Object@) +M:System.Enum.TryParse(System.Type,System.String,System.Object@) +M:System.Enum.TryParse``1(System.ReadOnlySpan{System.Char},System.Boolean,``0@) +M:System.Enum.TryParse``1(System.ReadOnlySpan{System.Char},``0@) +M:System.Enum.TryParse``1(System.String,System.Boolean,``0@) +M:System.Enum.TryParse``1(System.String,``0@) +T:System.Environment +M:System.Environment.get_CurrentManagedThreadId +M:System.Environment.get_NewLine +T:System.EventArgs +M:System.EventArgs.#ctor +F:System.EventArgs.Empty +T:System.EventHandler +M:System.EventHandler.#ctor(System.Object,System.IntPtr) +M:System.EventHandler.BeginInvoke(System.Object,System.EventArgs,System.AsyncCallback,System.Object) +M:System.EventHandler.EndInvoke(System.IAsyncResult) +M:System.EventHandler.Invoke(System.Object,System.EventArgs) +T:System.EventHandler`1 +M:System.EventHandler`1.#ctor(System.Object,System.IntPtr) +M:System.EventHandler`1.BeginInvoke(System.Object,`0,System.AsyncCallback,System.Object) +M:System.EventHandler`1.EndInvoke(System.IAsyncResult) +M:System.EventHandler`1.Invoke(System.Object,`0) +T:System.Exception +M:System.Exception.#ctor +M:System.Exception.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Exception.#ctor(System.String) +M:System.Exception.#ctor(System.String,System.Exception) +M:System.Exception.GetBaseException +M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Exception.GetType +M:System.Exception.ToString +M:System.Exception.add_SerializeObjectState(System.EventHandler{System.Runtime.Serialization.SafeSerializationEventArgs}) +M:System.Exception.get_Data +M:System.Exception.get_HResult +M:System.Exception.get_HelpLink +M:System.Exception.get_InnerException +M:System.Exception.get_Message +M:System.Exception.get_Source +M:System.Exception.get_StackTrace +M:System.Exception.get_TargetSite +M:System.Exception.remove_SerializeObjectState(System.EventHandler{System.Runtime.Serialization.SafeSerializationEventArgs}) +M:System.Exception.set_HResult(System.Int32) +M:System.Exception.set_HelpLink(System.String) +M:System.Exception.set_Source(System.String) +T:System.ExecutionEngineException +M:System.ExecutionEngineException.#ctor +M:System.ExecutionEngineException.#ctor(System.String) +M:System.ExecutionEngineException.#ctor(System.String,System.Exception) +T:System.FieldAccessException +M:System.FieldAccessException.#ctor +M:System.FieldAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.FieldAccessException.#ctor(System.String) +M:System.FieldAccessException.#ctor(System.String,System.Exception) +T:System.FileStyleUriParser +M:System.FileStyleUriParser.#ctor +T:System.FlagsAttribute +M:System.FlagsAttribute.#ctor +T:System.FormatException +M:System.FormatException.#ctor +M:System.FormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.FormatException.#ctor(System.String) +M:System.FormatException.#ctor(System.String,System.Exception) +T:System.FormattableString +M:System.FormattableString.#ctor +M:System.FormattableString.CurrentCulture(System.FormattableString) +M:System.FormattableString.GetArgument(System.Int32) +M:System.FormattableString.GetArguments +M:System.FormattableString.Invariant(System.FormattableString) +M:System.FormattableString.ToString +M:System.FormattableString.ToString(System.IFormatProvider) +M:System.FormattableString.get_ArgumentCount +M:System.FormattableString.get_Format +T:System.FtpStyleUriParser +M:System.FtpStyleUriParser.#ctor +T:System.Func`1 +M:System.Func`1.#ctor(System.Object,System.IntPtr) +M:System.Func`1.BeginInvoke(System.AsyncCallback,System.Object) +M:System.Func`1.EndInvoke(System.IAsyncResult) +M:System.Func`1.Invoke +T:System.Func`10 +M:System.Func`10.#ctor(System.Object,System.IntPtr) +M:System.Func`10.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,System.AsyncCallback,System.Object) +M:System.Func`10.EndInvoke(System.IAsyncResult) +M:System.Func`10.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8) +T:System.Func`11 +M:System.Func`11.#ctor(System.Object,System.IntPtr) +M:System.Func`11.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,System.AsyncCallback,System.Object) +M:System.Func`11.EndInvoke(System.IAsyncResult) +M:System.Func`11.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9) +T:System.Func`12 +M:System.Func`12.#ctor(System.Object,System.IntPtr) +M:System.Func`12.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,System.AsyncCallback,System.Object) +M:System.Func`12.EndInvoke(System.IAsyncResult) +M:System.Func`12.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10) +T:System.Func`13 +M:System.Func`13.#ctor(System.Object,System.IntPtr) +M:System.Func`13.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,System.AsyncCallback,System.Object) +M:System.Func`13.EndInvoke(System.IAsyncResult) +M:System.Func`13.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11) +T:System.Func`14 +M:System.Func`14.#ctor(System.Object,System.IntPtr) +M:System.Func`14.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,System.AsyncCallback,System.Object) +M:System.Func`14.EndInvoke(System.IAsyncResult) +M:System.Func`14.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12) +T:System.Func`15 +M:System.Func`15.#ctor(System.Object,System.IntPtr) +M:System.Func`15.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,System.AsyncCallback,System.Object) +M:System.Func`15.EndInvoke(System.IAsyncResult) +M:System.Func`15.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13) +T:System.Func`16 +M:System.Func`16.#ctor(System.Object,System.IntPtr) +M:System.Func`16.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,System.AsyncCallback,System.Object) +M:System.Func`16.EndInvoke(System.IAsyncResult) +M:System.Func`16.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14) +T:System.Func`17 +M:System.Func`17.#ctor(System.Object,System.IntPtr) +M:System.Func`17.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,`15,System.AsyncCallback,System.Object) +M:System.Func`17.EndInvoke(System.IAsyncResult) +M:System.Func`17.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,`15) +T:System.Func`2 +M:System.Func`2.#ctor(System.Object,System.IntPtr) +M:System.Func`2.BeginInvoke(`0,System.AsyncCallback,System.Object) +M:System.Func`2.EndInvoke(System.IAsyncResult) +M:System.Func`2.Invoke(`0) +T:System.Func`3 +M:System.Func`3.#ctor(System.Object,System.IntPtr) +M:System.Func`3.BeginInvoke(`0,`1,System.AsyncCallback,System.Object) +M:System.Func`3.EndInvoke(System.IAsyncResult) +M:System.Func`3.Invoke(`0,`1) +T:System.Func`4 +M:System.Func`4.#ctor(System.Object,System.IntPtr) +M:System.Func`4.BeginInvoke(`0,`1,`2,System.AsyncCallback,System.Object) +M:System.Func`4.EndInvoke(System.IAsyncResult) +M:System.Func`4.Invoke(`0,`1,`2) +T:System.Func`5 +M:System.Func`5.#ctor(System.Object,System.IntPtr) +M:System.Func`5.BeginInvoke(`0,`1,`2,`3,System.AsyncCallback,System.Object) +M:System.Func`5.EndInvoke(System.IAsyncResult) +M:System.Func`5.Invoke(`0,`1,`2,`3) +T:System.Func`6 +M:System.Func`6.#ctor(System.Object,System.IntPtr) +M:System.Func`6.BeginInvoke(`0,`1,`2,`3,`4,System.AsyncCallback,System.Object) +M:System.Func`6.EndInvoke(System.IAsyncResult) +M:System.Func`6.Invoke(`0,`1,`2,`3,`4) +T:System.Func`7 +M:System.Func`7.#ctor(System.Object,System.IntPtr) +M:System.Func`7.BeginInvoke(`0,`1,`2,`3,`4,`5,System.AsyncCallback,System.Object) +M:System.Func`7.EndInvoke(System.IAsyncResult) +M:System.Func`7.Invoke(`0,`1,`2,`3,`4,`5) +T:System.Func`8 +M:System.Func`8.#ctor(System.Object,System.IntPtr) +M:System.Func`8.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,System.AsyncCallback,System.Object) +M:System.Func`8.EndInvoke(System.IAsyncResult) +M:System.Func`8.Invoke(`0,`1,`2,`3,`4,`5,`6) +T:System.Func`9 +M:System.Func`9.#ctor(System.Object,System.IntPtr) +M:System.Func`9.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,System.AsyncCallback,System.Object) +M:System.Func`9.EndInvoke(System.IAsyncResult) +M:System.Func`9.Invoke(`0,`1,`2,`3,`4,`5,`6,`7) +T:System.GenericUriParser +M:System.GenericUriParser.#ctor(System.GenericUriParserOptions) +T:System.GenericUriParserOptions +F:System.GenericUriParserOptions.AllowEmptyAuthority +F:System.GenericUriParserOptions.Default +F:System.GenericUriParserOptions.DontCompressPath +F:System.GenericUriParserOptions.DontConvertPathBackslashes +F:System.GenericUriParserOptions.DontUnescapePathDotsAndSlashes +F:System.GenericUriParserOptions.GenericAuthority +F:System.GenericUriParserOptions.Idn +F:System.GenericUriParserOptions.IriParsing +F:System.GenericUriParserOptions.NoFragment +F:System.GenericUriParserOptions.NoPort +F:System.GenericUriParserOptions.NoQuery +F:System.GenericUriParserOptions.NoUserInfo +T:System.Globalization.Calendar +M:System.Globalization.Calendar.#ctor +M:System.Globalization.Calendar.AddDays(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddHours(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddMilliseconds(System.DateTime,System.Double) +M:System.Globalization.Calendar.AddMinutes(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddSeconds(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddWeeks(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.Calendar.Clone +F:System.Globalization.Calendar.CurrentEra +M:System.Globalization.Calendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.Calendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.Calendar.GetDayOfYear(System.DateTime) +M:System.Globalization.Calendar.GetDaysInMonth(System.Int32,System.Int32) +M:System.Globalization.Calendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.GetDaysInYear(System.Int32) +M:System.Globalization.Calendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.Calendar.GetEra(System.DateTime) +M:System.Globalization.Calendar.GetHour(System.DateTime) +M:System.Globalization.Calendar.GetLeapMonth(System.Int32) +M:System.Globalization.Calendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.Calendar.GetMilliseconds(System.DateTime) +M:System.Globalization.Calendar.GetMinute(System.DateTime) +M:System.Globalization.Calendar.GetMonth(System.DateTime) +M:System.Globalization.Calendar.GetMonthsInYear(System.Int32) +M:System.Globalization.Calendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.Calendar.GetSecond(System.DateTime) +M:System.Globalization.Calendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek) +M:System.Globalization.Calendar.GetYear(System.DateTime) +M:System.Globalization.Calendar.IsLeapDay(System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.IsLeapMonth(System.Int32,System.Int32) +M:System.Globalization.Calendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.IsLeapYear(System.Int32) +M:System.Globalization.Calendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.Calendar.ReadOnly(System.Globalization.Calendar) +M:System.Globalization.Calendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.ToFourDigitYear(System.Int32) +M:System.Globalization.Calendar.get_AlgorithmType +M:System.Globalization.Calendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.Calendar.get_Eras +M:System.Globalization.Calendar.get_IsReadOnly +M:System.Globalization.Calendar.get_MaxSupportedDateTime +M:System.Globalization.Calendar.get_MinSupportedDateTime +M:System.Globalization.Calendar.get_TwoDigitYearMax +M:System.Globalization.Calendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.CalendarAlgorithmType +F:System.Globalization.CalendarAlgorithmType.LunarCalendar +F:System.Globalization.CalendarAlgorithmType.LunisolarCalendar +F:System.Globalization.CalendarAlgorithmType.SolarCalendar +F:System.Globalization.CalendarAlgorithmType.Unknown +T:System.Globalization.CalendarWeekRule +F:System.Globalization.CalendarWeekRule.FirstDay +F:System.Globalization.CalendarWeekRule.FirstFourDayWeek +F:System.Globalization.CalendarWeekRule.FirstFullWeek +T:System.Globalization.CharUnicodeInfo +M:System.Globalization.CharUnicodeInfo.GetDecimalDigitValue(System.Char) +M:System.Globalization.CharUnicodeInfo.GetDecimalDigitValue(System.String,System.Int32) +M:System.Globalization.CharUnicodeInfo.GetDigitValue(System.Char) +M:System.Globalization.CharUnicodeInfo.GetDigitValue(System.String,System.Int32) +M:System.Globalization.CharUnicodeInfo.GetNumericValue(System.Char) +M:System.Globalization.CharUnicodeInfo.GetNumericValue(System.String,System.Int32) +M:System.Globalization.CharUnicodeInfo.GetUnicodeCategory(System.Char) +M:System.Globalization.CharUnicodeInfo.GetUnicodeCategory(System.Int32) +M:System.Globalization.CharUnicodeInfo.GetUnicodeCategory(System.String,System.Int32) +T:System.Globalization.ChineseLunisolarCalendar +M:System.Globalization.ChineseLunisolarCalendar.#ctor +F:System.Globalization.ChineseLunisolarCalendar.ChineseEra +M:System.Globalization.ChineseLunisolarCalendar.GetEra(System.DateTime) +M:System.Globalization.ChineseLunisolarCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.ChineseLunisolarCalendar.get_Eras +M:System.Globalization.ChineseLunisolarCalendar.get_MaxSupportedDateTime +M:System.Globalization.ChineseLunisolarCalendar.get_MinSupportedDateTime +T:System.Globalization.CompareInfo +M:System.Globalization.CompareInfo.Compare(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32) +M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.String,System.Int32) +M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.String,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.Compare(System.String,System.String) +M:System.Globalization.CompareInfo.Compare(System.String,System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.Equals(System.Object) +M:System.Globalization.CompareInfo.GetCompareInfo(System.Int32) +M:System.Globalization.CompareInfo.GetCompareInfo(System.Int32,System.Reflection.Assembly) +M:System.Globalization.CompareInfo.GetCompareInfo(System.String) +M:System.Globalization.CompareInfo.GetCompareInfo(System.String,System.Reflection.Assembly) +M:System.Globalization.CompareInfo.GetHashCode +M:System.Globalization.CompareInfo.GetHashCode(System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.GetHashCode(System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.GetSortKey(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.GetSortKey(System.String) +M:System.Globalization.CompareInfo.GetSortKey(System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.GetSortKeyLength(System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions,System.Int32@) +M:System.Globalization.CompareInfo.IndexOf(System.ReadOnlySpan{System.Char},System.Text.Rune,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32,System.Int32) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32,System.Int32) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IsPrefix(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IsPrefix(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions,System.Int32@) +M:System.Globalization.CompareInfo.IsPrefix(System.String,System.String) +M:System.Globalization.CompareInfo.IsPrefix(System.String,System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IsSortable(System.Char) +M:System.Globalization.CompareInfo.IsSortable(System.ReadOnlySpan{System.Char}) +M:System.Globalization.CompareInfo.IsSortable(System.String) +M:System.Globalization.CompareInfo.IsSortable(System.Text.Rune) +M:System.Globalization.CompareInfo.IsSuffix(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IsSuffix(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions,System.Int32@) +M:System.Globalization.CompareInfo.IsSuffix(System.String,System.String) +M:System.Globalization.CompareInfo.IsSuffix(System.String,System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions,System.Int32@) +M:System.Globalization.CompareInfo.LastIndexOf(System.ReadOnlySpan{System.Char},System.Text.Rune,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32,System.Int32) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32,System.Int32) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.ToString +M:System.Globalization.CompareInfo.get_LCID +M:System.Globalization.CompareInfo.get_Name +M:System.Globalization.CompareInfo.get_Version +T:System.Globalization.CompareOptions +F:System.Globalization.CompareOptions.IgnoreCase +F:System.Globalization.CompareOptions.IgnoreKanaType +F:System.Globalization.CompareOptions.IgnoreNonSpace +F:System.Globalization.CompareOptions.IgnoreSymbols +F:System.Globalization.CompareOptions.IgnoreWidth +F:System.Globalization.CompareOptions.None +F:System.Globalization.CompareOptions.Ordinal +F:System.Globalization.CompareOptions.OrdinalIgnoreCase +F:System.Globalization.CompareOptions.StringSort +T:System.Globalization.CultureInfo +M:System.Globalization.CultureInfo.#ctor(System.Int32) +M:System.Globalization.CultureInfo.#ctor(System.Int32,System.Boolean) +M:System.Globalization.CultureInfo.#ctor(System.String) +M:System.Globalization.CultureInfo.#ctor(System.String,System.Boolean) +M:System.Globalization.CultureInfo.ClearCachedData +M:System.Globalization.CultureInfo.Clone +M:System.Globalization.CultureInfo.CreateSpecificCulture(System.String) +M:System.Globalization.CultureInfo.Equals(System.Object) +M:System.Globalization.CultureInfo.GetConsoleFallbackUICulture +M:System.Globalization.CultureInfo.GetCultureInfo(System.Int32) +M:System.Globalization.CultureInfo.GetCultureInfo(System.String) +M:System.Globalization.CultureInfo.GetCultureInfo(System.String,System.Boolean) +M:System.Globalization.CultureInfo.GetCultureInfo(System.String,System.String) +M:System.Globalization.CultureInfo.GetCultureInfoByIetfLanguageTag(System.String) +M:System.Globalization.CultureInfo.GetCultures(System.Globalization.CultureTypes) +M:System.Globalization.CultureInfo.GetFormat(System.Type) +M:System.Globalization.CultureInfo.GetHashCode +M:System.Globalization.CultureInfo.ReadOnly(System.Globalization.CultureInfo) +M:System.Globalization.CultureInfo.ToString +M:System.Globalization.CultureInfo.get_Calendar +M:System.Globalization.CultureInfo.get_CompareInfo +M:System.Globalization.CultureInfo.get_CultureTypes +M:System.Globalization.CultureInfo.get_CurrentCulture +M:System.Globalization.CultureInfo.get_CurrentUICulture +M:System.Globalization.CultureInfo.get_DateTimeFormat +M:System.Globalization.CultureInfo.get_DefaultThreadCurrentCulture +M:System.Globalization.CultureInfo.get_DefaultThreadCurrentUICulture +M:System.Globalization.CultureInfo.get_DisplayName +M:System.Globalization.CultureInfo.get_EnglishName +M:System.Globalization.CultureInfo.get_IetfLanguageTag +M:System.Globalization.CultureInfo.get_InstalledUICulture +M:System.Globalization.CultureInfo.get_InvariantCulture +M:System.Globalization.CultureInfo.get_IsNeutralCulture +M:System.Globalization.CultureInfo.get_IsReadOnly +M:System.Globalization.CultureInfo.get_KeyboardLayoutId +M:System.Globalization.CultureInfo.get_LCID +M:System.Globalization.CultureInfo.get_Name +M:System.Globalization.CultureInfo.get_NativeName +M:System.Globalization.CultureInfo.get_NumberFormat +M:System.Globalization.CultureInfo.get_OptionalCalendars +M:System.Globalization.CultureInfo.get_Parent +M:System.Globalization.CultureInfo.get_TextInfo +M:System.Globalization.CultureInfo.get_ThreeLetterISOLanguageName +M:System.Globalization.CultureInfo.get_ThreeLetterWindowsLanguageName +M:System.Globalization.CultureInfo.get_TwoLetterISOLanguageName +M:System.Globalization.CultureInfo.get_UseUserOverride +T:System.Globalization.CultureNotFoundException +M:System.Globalization.CultureNotFoundException.#ctor +M:System.Globalization.CultureNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Globalization.CultureNotFoundException.#ctor(System.String) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.Exception) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.Int32,System.Exception) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.Int32,System.String) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.String) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.String,System.Exception) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.String,System.String) +M:System.Globalization.CultureNotFoundException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Globalization.CultureNotFoundException.get_InvalidCultureId +M:System.Globalization.CultureNotFoundException.get_InvalidCultureName +M:System.Globalization.CultureNotFoundException.get_Message +T:System.Globalization.CultureTypes +F:System.Globalization.CultureTypes.AllCultures +F:System.Globalization.CultureTypes.FrameworkCultures +F:System.Globalization.CultureTypes.InstalledWin32Cultures +F:System.Globalization.CultureTypes.NeutralCultures +F:System.Globalization.CultureTypes.ReplacementCultures +F:System.Globalization.CultureTypes.SpecificCultures +F:System.Globalization.CultureTypes.UserCustomCulture +F:System.Globalization.CultureTypes.WindowsOnlyCultures +T:System.Globalization.DateTimeFormatInfo +M:System.Globalization.DateTimeFormatInfo.#ctor +M:System.Globalization.DateTimeFormatInfo.Clone +M:System.Globalization.DateTimeFormatInfo.GetAbbreviatedDayName(System.DayOfWeek) +M:System.Globalization.DateTimeFormatInfo.GetAbbreviatedEraName(System.Int32) +M:System.Globalization.DateTimeFormatInfo.GetAbbreviatedMonthName(System.Int32) +M:System.Globalization.DateTimeFormatInfo.GetAllDateTimePatterns +M:System.Globalization.DateTimeFormatInfo.GetAllDateTimePatterns(System.Char) +M:System.Globalization.DateTimeFormatInfo.GetDayName(System.DayOfWeek) +M:System.Globalization.DateTimeFormatInfo.GetEra(System.String) +M:System.Globalization.DateTimeFormatInfo.GetEraName(System.Int32) +M:System.Globalization.DateTimeFormatInfo.GetFormat(System.Type) +M:System.Globalization.DateTimeFormatInfo.GetInstance(System.IFormatProvider) +M:System.Globalization.DateTimeFormatInfo.GetMonthName(System.Int32) +M:System.Globalization.DateTimeFormatInfo.GetShortestDayName(System.DayOfWeek) +M:System.Globalization.DateTimeFormatInfo.ReadOnly(System.Globalization.DateTimeFormatInfo) +M:System.Globalization.DateTimeFormatInfo.SetAllDateTimePatterns(System.String[],System.Char) +M:System.Globalization.DateTimeFormatInfo.get_AMDesignator +M:System.Globalization.DateTimeFormatInfo.get_AbbreviatedDayNames +M:System.Globalization.DateTimeFormatInfo.get_AbbreviatedMonthGenitiveNames +M:System.Globalization.DateTimeFormatInfo.get_AbbreviatedMonthNames +M:System.Globalization.DateTimeFormatInfo.get_Calendar +M:System.Globalization.DateTimeFormatInfo.get_CalendarWeekRule +M:System.Globalization.DateTimeFormatInfo.get_CurrentInfo +M:System.Globalization.DateTimeFormatInfo.get_DateSeparator +M:System.Globalization.DateTimeFormatInfo.get_DayNames +M:System.Globalization.DateTimeFormatInfo.get_FirstDayOfWeek +M:System.Globalization.DateTimeFormatInfo.get_FullDateTimePattern +M:System.Globalization.DateTimeFormatInfo.get_InvariantInfo +M:System.Globalization.DateTimeFormatInfo.get_IsReadOnly +M:System.Globalization.DateTimeFormatInfo.get_LongDatePattern +M:System.Globalization.DateTimeFormatInfo.get_LongTimePattern +M:System.Globalization.DateTimeFormatInfo.get_MonthDayPattern +M:System.Globalization.DateTimeFormatInfo.get_MonthGenitiveNames +M:System.Globalization.DateTimeFormatInfo.get_MonthNames +M:System.Globalization.DateTimeFormatInfo.get_NativeCalendarName +M:System.Globalization.DateTimeFormatInfo.get_PMDesignator +M:System.Globalization.DateTimeFormatInfo.get_RFC1123Pattern +M:System.Globalization.DateTimeFormatInfo.get_ShortDatePattern +M:System.Globalization.DateTimeFormatInfo.get_ShortTimePattern +M:System.Globalization.DateTimeFormatInfo.get_ShortestDayNames +M:System.Globalization.DateTimeFormatInfo.get_SortableDateTimePattern +M:System.Globalization.DateTimeFormatInfo.get_TimeSeparator +M:System.Globalization.DateTimeFormatInfo.get_UniversalSortableDateTimePattern +M:System.Globalization.DateTimeFormatInfo.get_YearMonthPattern +M:System.Globalization.DateTimeFormatInfo.set_AMDesignator(System.String) +M:System.Globalization.DateTimeFormatInfo.set_AbbreviatedDayNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_AbbreviatedMonthGenitiveNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_AbbreviatedMonthNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_Calendar(System.Globalization.Calendar) +M:System.Globalization.DateTimeFormatInfo.set_CalendarWeekRule(System.Globalization.CalendarWeekRule) +M:System.Globalization.DateTimeFormatInfo.set_DateSeparator(System.String) +M:System.Globalization.DateTimeFormatInfo.set_DayNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_FirstDayOfWeek(System.DayOfWeek) +M:System.Globalization.DateTimeFormatInfo.set_FullDateTimePattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_LongDatePattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_LongTimePattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_MonthDayPattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_MonthGenitiveNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_MonthNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_PMDesignator(System.String) +M:System.Globalization.DateTimeFormatInfo.set_ShortDatePattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_ShortTimePattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_ShortestDayNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_TimeSeparator(System.String) +M:System.Globalization.DateTimeFormatInfo.set_YearMonthPattern(System.String) +T:System.Globalization.DateTimeStyles +F:System.Globalization.DateTimeStyles.AdjustToUniversal +F:System.Globalization.DateTimeStyles.AllowInnerWhite +F:System.Globalization.DateTimeStyles.AllowLeadingWhite +F:System.Globalization.DateTimeStyles.AllowTrailingWhite +F:System.Globalization.DateTimeStyles.AllowWhiteSpaces +F:System.Globalization.DateTimeStyles.AssumeLocal +F:System.Globalization.DateTimeStyles.AssumeUniversal +F:System.Globalization.DateTimeStyles.NoCurrentDateDefault +F:System.Globalization.DateTimeStyles.None +F:System.Globalization.DateTimeStyles.RoundtripKind +T:System.Globalization.DaylightTime +M:System.Globalization.DaylightTime.#ctor(System.DateTime,System.DateTime,System.TimeSpan) +M:System.Globalization.DaylightTime.get_Delta +M:System.Globalization.DaylightTime.get_End +M:System.Globalization.DaylightTime.get_Start +T:System.Globalization.DigitShapes +F:System.Globalization.DigitShapes.Context +F:System.Globalization.DigitShapes.NativeNational +F:System.Globalization.DigitShapes.None +T:System.Globalization.EastAsianLunisolarCalendar +M:System.Globalization.EastAsianLunisolarCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetCelestialStem(System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetMonth(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetSexagenaryYear(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.GetTerrestrialBranch(System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetYear(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.get_AlgorithmType +M:System.Globalization.EastAsianLunisolarCalendar.get_TwoDigitYearMax +M:System.Globalization.EastAsianLunisolarCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.GlobalizationExtensions +M:System.Globalization.GlobalizationExtensions.GetStringComparer(System.Globalization.CompareInfo,System.Globalization.CompareOptions) +T:System.Globalization.GregorianCalendar +M:System.Globalization.GregorianCalendar.#ctor +M:System.Globalization.GregorianCalendar.#ctor(System.Globalization.GregorianCalendarTypes) +F:System.Globalization.GregorianCalendar.ADEra +M:System.Globalization.GregorianCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.GregorianCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.GregorianCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.GregorianCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.GregorianCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.GregorianCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.GetEra(System.DateTime) +M:System.Globalization.GregorianCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.GetMonth(System.DateTime) +M:System.Globalization.GregorianCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.GetYear(System.DateTime) +M:System.Globalization.GregorianCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.GregorianCalendar.get_AlgorithmType +M:System.Globalization.GregorianCalendar.get_CalendarType +M:System.Globalization.GregorianCalendar.get_Eras +M:System.Globalization.GregorianCalendar.get_MaxSupportedDateTime +M:System.Globalization.GregorianCalendar.get_MinSupportedDateTime +M:System.Globalization.GregorianCalendar.get_TwoDigitYearMax +M:System.Globalization.GregorianCalendar.set_CalendarType(System.Globalization.GregorianCalendarTypes) +M:System.Globalization.GregorianCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.GregorianCalendarTypes +F:System.Globalization.GregorianCalendarTypes.Arabic +F:System.Globalization.GregorianCalendarTypes.Localized +F:System.Globalization.GregorianCalendarTypes.MiddleEastFrench +F:System.Globalization.GregorianCalendarTypes.TransliteratedEnglish +F:System.Globalization.GregorianCalendarTypes.TransliteratedFrench +F:System.Globalization.GregorianCalendarTypes.USEnglish +T:System.Globalization.HebrewCalendar +M:System.Globalization.HebrewCalendar.#ctor +M:System.Globalization.HebrewCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.HebrewCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.HebrewCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.HebrewCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.HebrewCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.HebrewCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.GetEra(System.DateTime) +M:System.Globalization.HebrewCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.GetMonth(System.DateTime) +M:System.Globalization.HebrewCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.GetYear(System.DateTime) +F:System.Globalization.HebrewCalendar.HebrewEra +M:System.Globalization.HebrewCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.HebrewCalendar.get_AlgorithmType +M:System.Globalization.HebrewCalendar.get_Eras +M:System.Globalization.HebrewCalendar.get_MaxSupportedDateTime +M:System.Globalization.HebrewCalendar.get_MinSupportedDateTime +M:System.Globalization.HebrewCalendar.get_TwoDigitYearMax +M:System.Globalization.HebrewCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.HijriCalendar +M:System.Globalization.HijriCalendar.#ctor +M:System.Globalization.HijriCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.HijriCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.HijriCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.HijriCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.HijriCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.HijriCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.GetEra(System.DateTime) +M:System.Globalization.HijriCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.GetMonth(System.DateTime) +M:System.Globalization.HijriCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.GetYear(System.DateTime) +F:System.Globalization.HijriCalendar.HijriEra +M:System.Globalization.HijriCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.HijriCalendar.get_AlgorithmType +M:System.Globalization.HijriCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.HijriCalendar.get_Eras +M:System.Globalization.HijriCalendar.get_HijriAdjustment +M:System.Globalization.HijriCalendar.get_MaxSupportedDateTime +M:System.Globalization.HijriCalendar.get_MinSupportedDateTime +M:System.Globalization.HijriCalendar.get_TwoDigitYearMax +M:System.Globalization.HijriCalendar.set_HijriAdjustment(System.Int32) +M:System.Globalization.HijriCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.ISOWeek +M:System.Globalization.ISOWeek.GetWeekOfYear(System.DateTime) +M:System.Globalization.ISOWeek.GetWeeksInYear(System.Int32) +M:System.Globalization.ISOWeek.GetYear(System.DateTime) +M:System.Globalization.ISOWeek.GetYearEnd(System.Int32) +M:System.Globalization.ISOWeek.GetYearStart(System.Int32) +M:System.Globalization.ISOWeek.ToDateTime(System.Int32,System.Int32,System.DayOfWeek) +T:System.Globalization.IdnMapping +M:System.Globalization.IdnMapping.#ctor +M:System.Globalization.IdnMapping.Equals(System.Object) +M:System.Globalization.IdnMapping.GetAscii(System.String) +M:System.Globalization.IdnMapping.GetAscii(System.String,System.Int32) +M:System.Globalization.IdnMapping.GetAscii(System.String,System.Int32,System.Int32) +M:System.Globalization.IdnMapping.GetHashCode +M:System.Globalization.IdnMapping.GetUnicode(System.String) +M:System.Globalization.IdnMapping.GetUnicode(System.String,System.Int32) +M:System.Globalization.IdnMapping.GetUnicode(System.String,System.Int32,System.Int32) +M:System.Globalization.IdnMapping.get_AllowUnassigned +M:System.Globalization.IdnMapping.get_UseStd3AsciiRules +M:System.Globalization.IdnMapping.set_AllowUnassigned(System.Boolean) +M:System.Globalization.IdnMapping.set_UseStd3AsciiRules(System.Boolean) +T:System.Globalization.JapaneseCalendar +M:System.Globalization.JapaneseCalendar.#ctor +M:System.Globalization.JapaneseCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.JapaneseCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.JapaneseCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.JapaneseCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.JapaneseCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.JapaneseCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.GetEra(System.DateTime) +M:System.Globalization.JapaneseCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.GetMonth(System.DateTime) +M:System.Globalization.JapaneseCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek) +M:System.Globalization.JapaneseCalendar.GetYear(System.DateTime) +M:System.Globalization.JapaneseCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.JapaneseCalendar.get_AlgorithmType +M:System.Globalization.JapaneseCalendar.get_Eras +M:System.Globalization.JapaneseCalendar.get_MaxSupportedDateTime +M:System.Globalization.JapaneseCalendar.get_MinSupportedDateTime +M:System.Globalization.JapaneseCalendar.get_TwoDigitYearMax +M:System.Globalization.JapaneseCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.JapaneseLunisolarCalendar +M:System.Globalization.JapaneseLunisolarCalendar.#ctor +M:System.Globalization.JapaneseLunisolarCalendar.GetEra(System.DateTime) +F:System.Globalization.JapaneseLunisolarCalendar.JapaneseEra +M:System.Globalization.JapaneseLunisolarCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.JapaneseLunisolarCalendar.get_Eras +M:System.Globalization.JapaneseLunisolarCalendar.get_MaxSupportedDateTime +M:System.Globalization.JapaneseLunisolarCalendar.get_MinSupportedDateTime +T:System.Globalization.JulianCalendar +M:System.Globalization.JulianCalendar.#ctor +M:System.Globalization.JulianCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.JulianCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.JulianCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.JulianCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.JulianCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.JulianCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.GetEra(System.DateTime) +M:System.Globalization.JulianCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.GetMonth(System.DateTime) +M:System.Globalization.JulianCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.GetYear(System.DateTime) +M:System.Globalization.JulianCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.IsLeapYear(System.Int32,System.Int32) +F:System.Globalization.JulianCalendar.JulianEra +M:System.Globalization.JulianCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.JulianCalendar.get_AlgorithmType +M:System.Globalization.JulianCalendar.get_Eras +M:System.Globalization.JulianCalendar.get_MaxSupportedDateTime +M:System.Globalization.JulianCalendar.get_MinSupportedDateTime +M:System.Globalization.JulianCalendar.get_TwoDigitYearMax +M:System.Globalization.JulianCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.KoreanCalendar +M:System.Globalization.KoreanCalendar.#ctor +M:System.Globalization.KoreanCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.KoreanCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.KoreanCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.KoreanCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.KoreanCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.KoreanCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.GetEra(System.DateTime) +M:System.Globalization.KoreanCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.GetMonth(System.DateTime) +M:System.Globalization.KoreanCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek) +M:System.Globalization.KoreanCalendar.GetYear(System.DateTime) +M:System.Globalization.KoreanCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.IsLeapYear(System.Int32,System.Int32) +F:System.Globalization.KoreanCalendar.KoreanEra +M:System.Globalization.KoreanCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.KoreanCalendar.get_AlgorithmType +M:System.Globalization.KoreanCalendar.get_Eras +M:System.Globalization.KoreanCalendar.get_MaxSupportedDateTime +M:System.Globalization.KoreanCalendar.get_MinSupportedDateTime +M:System.Globalization.KoreanCalendar.get_TwoDigitYearMax +M:System.Globalization.KoreanCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.KoreanLunisolarCalendar +M:System.Globalization.KoreanLunisolarCalendar.#ctor +M:System.Globalization.KoreanLunisolarCalendar.GetEra(System.DateTime) +F:System.Globalization.KoreanLunisolarCalendar.GregorianEra +M:System.Globalization.KoreanLunisolarCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.KoreanLunisolarCalendar.get_Eras +M:System.Globalization.KoreanLunisolarCalendar.get_MaxSupportedDateTime +M:System.Globalization.KoreanLunisolarCalendar.get_MinSupportedDateTime +T:System.Globalization.NumberFormatInfo +M:System.Globalization.NumberFormatInfo.#ctor +M:System.Globalization.NumberFormatInfo.Clone +M:System.Globalization.NumberFormatInfo.GetFormat(System.Type) +M:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +M:System.Globalization.NumberFormatInfo.ReadOnly(System.Globalization.NumberFormatInfo) +M:System.Globalization.NumberFormatInfo.get_CurrencyDecimalDigits +M:System.Globalization.NumberFormatInfo.get_CurrencyDecimalSeparator +M:System.Globalization.NumberFormatInfo.get_CurrencyGroupSeparator +M:System.Globalization.NumberFormatInfo.get_CurrencyGroupSizes +M:System.Globalization.NumberFormatInfo.get_CurrencyNegativePattern +M:System.Globalization.NumberFormatInfo.get_CurrencyPositivePattern +M:System.Globalization.NumberFormatInfo.get_CurrencySymbol +M:System.Globalization.NumberFormatInfo.get_CurrentInfo +M:System.Globalization.NumberFormatInfo.get_DigitSubstitution +M:System.Globalization.NumberFormatInfo.get_InvariantInfo +M:System.Globalization.NumberFormatInfo.get_IsReadOnly +M:System.Globalization.NumberFormatInfo.get_NaNSymbol +M:System.Globalization.NumberFormatInfo.get_NativeDigits +M:System.Globalization.NumberFormatInfo.get_NegativeInfinitySymbol +M:System.Globalization.NumberFormatInfo.get_NegativeSign +M:System.Globalization.NumberFormatInfo.get_NumberDecimalDigits +M:System.Globalization.NumberFormatInfo.get_NumberDecimalSeparator +M:System.Globalization.NumberFormatInfo.get_NumberGroupSeparator +M:System.Globalization.NumberFormatInfo.get_NumberGroupSizes +M:System.Globalization.NumberFormatInfo.get_NumberNegativePattern +M:System.Globalization.NumberFormatInfo.get_PerMilleSymbol +M:System.Globalization.NumberFormatInfo.get_PercentDecimalDigits +M:System.Globalization.NumberFormatInfo.get_PercentDecimalSeparator +M:System.Globalization.NumberFormatInfo.get_PercentGroupSeparator +M:System.Globalization.NumberFormatInfo.get_PercentGroupSizes +M:System.Globalization.NumberFormatInfo.get_PercentNegativePattern +M:System.Globalization.NumberFormatInfo.get_PercentPositivePattern +M:System.Globalization.NumberFormatInfo.get_PercentSymbol +M:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol +M:System.Globalization.NumberFormatInfo.get_PositiveSign +M:System.Globalization.NumberFormatInfo.set_CurrencyDecimalDigits(System.Int32) +M:System.Globalization.NumberFormatInfo.set_CurrencyDecimalSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_CurrencyGroupSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_CurrencyGroupSizes(System.Int32[]) +M:System.Globalization.NumberFormatInfo.set_CurrencyNegativePattern(System.Int32) +M:System.Globalization.NumberFormatInfo.set_CurrencyPositivePattern(System.Int32) +M:System.Globalization.NumberFormatInfo.set_CurrencySymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_DigitSubstitution(System.Globalization.DigitShapes) +M:System.Globalization.NumberFormatInfo.set_NaNSymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_NativeDigits(System.String[]) +M:System.Globalization.NumberFormatInfo.set_NegativeInfinitySymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_NegativeSign(System.String) +M:System.Globalization.NumberFormatInfo.set_NumberDecimalDigits(System.Int32) +M:System.Globalization.NumberFormatInfo.set_NumberDecimalSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_NumberGroupSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_NumberGroupSizes(System.Int32[]) +M:System.Globalization.NumberFormatInfo.set_NumberNegativePattern(System.Int32) +M:System.Globalization.NumberFormatInfo.set_PerMilleSymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_PercentDecimalDigits(System.Int32) +M:System.Globalization.NumberFormatInfo.set_PercentDecimalSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_PercentGroupSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_PercentGroupSizes(System.Int32[]) +M:System.Globalization.NumberFormatInfo.set_PercentNegativePattern(System.Int32) +M:System.Globalization.NumberFormatInfo.set_PercentPositivePattern(System.Int32) +M:System.Globalization.NumberFormatInfo.set_PercentSymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_PositiveInfinitySymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_PositiveSign(System.String) +T:System.Globalization.NumberStyles +F:System.Globalization.NumberStyles.AllowBinarySpecifier +F:System.Globalization.NumberStyles.AllowCurrencySymbol +F:System.Globalization.NumberStyles.AllowDecimalPoint +F:System.Globalization.NumberStyles.AllowExponent +F:System.Globalization.NumberStyles.AllowHexSpecifier +F:System.Globalization.NumberStyles.AllowLeadingSign +F:System.Globalization.NumberStyles.AllowLeadingWhite +F:System.Globalization.NumberStyles.AllowParentheses +F:System.Globalization.NumberStyles.AllowThousands +F:System.Globalization.NumberStyles.AllowTrailingSign +F:System.Globalization.NumberStyles.AllowTrailingWhite +F:System.Globalization.NumberStyles.Any +F:System.Globalization.NumberStyles.BinaryNumber +F:System.Globalization.NumberStyles.Currency +F:System.Globalization.NumberStyles.Float +F:System.Globalization.NumberStyles.HexNumber +F:System.Globalization.NumberStyles.Integer +F:System.Globalization.NumberStyles.None +F:System.Globalization.NumberStyles.Number +T:System.Globalization.PersianCalendar +M:System.Globalization.PersianCalendar.#ctor +M:System.Globalization.PersianCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.PersianCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.PersianCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.PersianCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.PersianCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.PersianCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.GetEra(System.DateTime) +M:System.Globalization.PersianCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.GetMonth(System.DateTime) +M:System.Globalization.PersianCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.GetYear(System.DateTime) +M:System.Globalization.PersianCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.IsLeapYear(System.Int32,System.Int32) +F:System.Globalization.PersianCalendar.PersianEra +M:System.Globalization.PersianCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.PersianCalendar.get_AlgorithmType +M:System.Globalization.PersianCalendar.get_Eras +M:System.Globalization.PersianCalendar.get_MaxSupportedDateTime +M:System.Globalization.PersianCalendar.get_MinSupportedDateTime +M:System.Globalization.PersianCalendar.get_TwoDigitYearMax +M:System.Globalization.PersianCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.RegionInfo +M:System.Globalization.RegionInfo.#ctor(System.Int32) +M:System.Globalization.RegionInfo.#ctor(System.String) +M:System.Globalization.RegionInfo.Equals(System.Object) +M:System.Globalization.RegionInfo.GetHashCode +M:System.Globalization.RegionInfo.ToString +M:System.Globalization.RegionInfo.get_CurrencyEnglishName +M:System.Globalization.RegionInfo.get_CurrencyNativeName +M:System.Globalization.RegionInfo.get_CurrencySymbol +M:System.Globalization.RegionInfo.get_CurrentRegion +M:System.Globalization.RegionInfo.get_DisplayName +M:System.Globalization.RegionInfo.get_EnglishName +M:System.Globalization.RegionInfo.get_GeoId +M:System.Globalization.RegionInfo.get_ISOCurrencySymbol +M:System.Globalization.RegionInfo.get_IsMetric +M:System.Globalization.RegionInfo.get_Name +M:System.Globalization.RegionInfo.get_NativeName +M:System.Globalization.RegionInfo.get_ThreeLetterISORegionName +M:System.Globalization.RegionInfo.get_ThreeLetterWindowsRegionName +M:System.Globalization.RegionInfo.get_TwoLetterISORegionName +T:System.Globalization.SortKey +M:System.Globalization.SortKey.Compare(System.Globalization.SortKey,System.Globalization.SortKey) +M:System.Globalization.SortKey.Equals(System.Object) +M:System.Globalization.SortKey.GetHashCode +M:System.Globalization.SortKey.ToString +M:System.Globalization.SortKey.get_KeyData +M:System.Globalization.SortKey.get_OriginalString +T:System.Globalization.SortVersion +M:System.Globalization.SortVersion.#ctor(System.Int32,System.Guid) +M:System.Globalization.SortVersion.Equals(System.Globalization.SortVersion) +M:System.Globalization.SortVersion.Equals(System.Object) +M:System.Globalization.SortVersion.GetHashCode +M:System.Globalization.SortVersion.get_FullVersion +M:System.Globalization.SortVersion.get_SortId +M:System.Globalization.SortVersion.op_Equality(System.Globalization.SortVersion,System.Globalization.SortVersion) +M:System.Globalization.SortVersion.op_Inequality(System.Globalization.SortVersion,System.Globalization.SortVersion) +T:System.Globalization.StringInfo +M:System.Globalization.StringInfo.#ctor +M:System.Globalization.StringInfo.#ctor(System.String) +M:System.Globalization.StringInfo.Equals(System.Object) +M:System.Globalization.StringInfo.GetHashCode +M:System.Globalization.StringInfo.GetNextTextElement(System.String) +M:System.Globalization.StringInfo.GetNextTextElement(System.String,System.Int32) +M:System.Globalization.StringInfo.GetNextTextElementLength(System.ReadOnlySpan{System.Char}) +M:System.Globalization.StringInfo.GetNextTextElementLength(System.String) +M:System.Globalization.StringInfo.GetNextTextElementLength(System.String,System.Int32) +M:System.Globalization.StringInfo.GetTextElementEnumerator(System.String) +M:System.Globalization.StringInfo.GetTextElementEnumerator(System.String,System.Int32) +M:System.Globalization.StringInfo.ParseCombiningCharacters(System.String) +M:System.Globalization.StringInfo.SubstringByTextElements(System.Int32) +M:System.Globalization.StringInfo.SubstringByTextElements(System.Int32,System.Int32) +M:System.Globalization.StringInfo.get_LengthInTextElements +M:System.Globalization.StringInfo.get_String +M:System.Globalization.StringInfo.set_String(System.String) +T:System.Globalization.TaiwanCalendar +M:System.Globalization.TaiwanCalendar.#ctor +M:System.Globalization.TaiwanCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.TaiwanCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.TaiwanCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.TaiwanCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.TaiwanCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.TaiwanCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.GetEra(System.DateTime) +M:System.Globalization.TaiwanCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.GetMonth(System.DateTime) +M:System.Globalization.TaiwanCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek) +M:System.Globalization.TaiwanCalendar.GetYear(System.DateTime) +M:System.Globalization.TaiwanCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.TaiwanCalendar.get_AlgorithmType +M:System.Globalization.TaiwanCalendar.get_Eras +M:System.Globalization.TaiwanCalendar.get_MaxSupportedDateTime +M:System.Globalization.TaiwanCalendar.get_MinSupportedDateTime +M:System.Globalization.TaiwanCalendar.get_TwoDigitYearMax +M:System.Globalization.TaiwanCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.TaiwanLunisolarCalendar +M:System.Globalization.TaiwanLunisolarCalendar.#ctor +M:System.Globalization.TaiwanLunisolarCalendar.GetEra(System.DateTime) +M:System.Globalization.TaiwanLunisolarCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.TaiwanLunisolarCalendar.get_Eras +M:System.Globalization.TaiwanLunisolarCalendar.get_MaxSupportedDateTime +M:System.Globalization.TaiwanLunisolarCalendar.get_MinSupportedDateTime +T:System.Globalization.TextElementEnumerator +M:System.Globalization.TextElementEnumerator.GetTextElement +M:System.Globalization.TextElementEnumerator.MoveNext +M:System.Globalization.TextElementEnumerator.Reset +M:System.Globalization.TextElementEnumerator.get_Current +M:System.Globalization.TextElementEnumerator.get_ElementIndex +T:System.Globalization.TextInfo +M:System.Globalization.TextInfo.Clone +M:System.Globalization.TextInfo.Equals(System.Object) +M:System.Globalization.TextInfo.GetHashCode +M:System.Globalization.TextInfo.ReadOnly(System.Globalization.TextInfo) +M:System.Globalization.TextInfo.ToLower(System.Char) +M:System.Globalization.TextInfo.ToLower(System.String) +M:System.Globalization.TextInfo.ToString +M:System.Globalization.TextInfo.ToTitleCase(System.String) +M:System.Globalization.TextInfo.ToUpper(System.Char) +M:System.Globalization.TextInfo.ToUpper(System.String) +M:System.Globalization.TextInfo.get_ANSICodePage +M:System.Globalization.TextInfo.get_CultureName +M:System.Globalization.TextInfo.get_EBCDICCodePage +M:System.Globalization.TextInfo.get_IsReadOnly +M:System.Globalization.TextInfo.get_IsRightToLeft +M:System.Globalization.TextInfo.get_LCID +M:System.Globalization.TextInfo.get_ListSeparator +M:System.Globalization.TextInfo.get_MacCodePage +M:System.Globalization.TextInfo.get_OEMCodePage +M:System.Globalization.TextInfo.set_ListSeparator(System.String) +T:System.Globalization.ThaiBuddhistCalendar +M:System.Globalization.ThaiBuddhistCalendar.#ctor +M:System.Globalization.ThaiBuddhistCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.GetEra(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.GetMonth(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek) +M:System.Globalization.ThaiBuddhistCalendar.GetYear(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.IsLeapYear(System.Int32,System.Int32) +F:System.Globalization.ThaiBuddhistCalendar.ThaiBuddhistEra +M:System.Globalization.ThaiBuddhistCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.get_AlgorithmType +M:System.Globalization.ThaiBuddhistCalendar.get_Eras +M:System.Globalization.ThaiBuddhistCalendar.get_MaxSupportedDateTime +M:System.Globalization.ThaiBuddhistCalendar.get_MinSupportedDateTime +M:System.Globalization.ThaiBuddhistCalendar.get_TwoDigitYearMax +M:System.Globalization.ThaiBuddhistCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.TimeSpanStyles +F:System.Globalization.TimeSpanStyles.AssumeNegative +F:System.Globalization.TimeSpanStyles.None +T:System.Globalization.UmAlQuraCalendar +M:System.Globalization.UmAlQuraCalendar.#ctor +M:System.Globalization.UmAlQuraCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.UmAlQuraCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.UmAlQuraCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.GetEra(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.GetMonth(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.GetYear(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.ToFourDigitYear(System.Int32) +F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra +M:System.Globalization.UmAlQuraCalendar.get_AlgorithmType +M:System.Globalization.UmAlQuraCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.UmAlQuraCalendar.get_Eras +M:System.Globalization.UmAlQuraCalendar.get_MaxSupportedDateTime +M:System.Globalization.UmAlQuraCalendar.get_MinSupportedDateTime +M:System.Globalization.UmAlQuraCalendar.get_TwoDigitYearMax +M:System.Globalization.UmAlQuraCalendar.set_TwoDigitYearMax(System.Int32) +T:System.Globalization.UnicodeCategory +F:System.Globalization.UnicodeCategory.ClosePunctuation +F:System.Globalization.UnicodeCategory.ConnectorPunctuation +F:System.Globalization.UnicodeCategory.Control +F:System.Globalization.UnicodeCategory.CurrencySymbol +F:System.Globalization.UnicodeCategory.DashPunctuation +F:System.Globalization.UnicodeCategory.DecimalDigitNumber +F:System.Globalization.UnicodeCategory.EnclosingMark +F:System.Globalization.UnicodeCategory.FinalQuotePunctuation +F:System.Globalization.UnicodeCategory.Format +F:System.Globalization.UnicodeCategory.InitialQuotePunctuation +F:System.Globalization.UnicodeCategory.LetterNumber +F:System.Globalization.UnicodeCategory.LineSeparator +F:System.Globalization.UnicodeCategory.LowercaseLetter +F:System.Globalization.UnicodeCategory.MathSymbol +F:System.Globalization.UnicodeCategory.ModifierLetter +F:System.Globalization.UnicodeCategory.ModifierSymbol +F:System.Globalization.UnicodeCategory.NonSpacingMark +F:System.Globalization.UnicodeCategory.OpenPunctuation +F:System.Globalization.UnicodeCategory.OtherLetter +F:System.Globalization.UnicodeCategory.OtherNotAssigned +F:System.Globalization.UnicodeCategory.OtherNumber +F:System.Globalization.UnicodeCategory.OtherPunctuation +F:System.Globalization.UnicodeCategory.OtherSymbol +F:System.Globalization.UnicodeCategory.ParagraphSeparator +F:System.Globalization.UnicodeCategory.PrivateUse +F:System.Globalization.UnicodeCategory.SpaceSeparator +F:System.Globalization.UnicodeCategory.SpacingCombiningMark +F:System.Globalization.UnicodeCategory.Surrogate +F:System.Globalization.UnicodeCategory.TitlecaseLetter +F:System.Globalization.UnicodeCategory.UppercaseLetter +T:System.GopherStyleUriParser +M:System.GopherStyleUriParser.#ctor +T:System.Guid +M:System.Guid.#ctor(System.Byte[]) +M:System.Guid.#ctor(System.Int32,System.Int16,System.Int16,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte) +M:System.Guid.#ctor(System.Int32,System.Int16,System.Int16,System.Byte[]) +M:System.Guid.#ctor(System.ReadOnlySpan{System.Byte}) +M:System.Guid.#ctor(System.ReadOnlySpan{System.Byte},System.Boolean) +M:System.Guid.#ctor(System.String) +M:System.Guid.#ctor(System.UInt32,System.UInt16,System.UInt16,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte) +M:System.Guid.CompareTo(System.Guid) +M:System.Guid.CompareTo(System.Object) +F:System.Guid.Empty +M:System.Guid.Equals(System.Guid) +M:System.Guid.Equals(System.Object) +M:System.Guid.GetHashCode +M:System.Guid.NewGuid +M:System.Guid.Parse(System.ReadOnlySpan{System.Char}) +M:System.Guid.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Guid.Parse(System.String) +M:System.Guid.Parse(System.String,System.IFormatProvider) +M:System.Guid.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.Guid.ParseExact(System.String,System.String) +M:System.Guid.ToByteArray +M:System.Guid.ToByteArray(System.Boolean) +M:System.Guid.ToString +M:System.Guid.ToString(System.String) +M:System.Guid.ToString(System.String,System.IFormatProvider) +M:System.Guid.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char}) +M:System.Guid.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char}) +M:System.Guid.TryParse(System.ReadOnlySpan{System.Char},System.Guid@) +M:System.Guid.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Guid@) +M:System.Guid.TryParse(System.String,System.Guid@) +M:System.Guid.TryParse(System.String,System.IFormatProvider,System.Guid@) +M:System.Guid.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Guid@) +M:System.Guid.TryParseExact(System.String,System.String,System.Guid@) +M:System.Guid.TryWriteBytes(System.Span{System.Byte}) +M:System.Guid.TryWriteBytes(System.Span{System.Byte},System.Boolean,System.Int32@) +M:System.Guid.op_Equality(System.Guid,System.Guid) +M:System.Guid.op_GreaterThan(System.Guid,System.Guid) +M:System.Guid.op_GreaterThanOrEqual(System.Guid,System.Guid) +M:System.Guid.op_Inequality(System.Guid,System.Guid) +M:System.Guid.op_LessThan(System.Guid,System.Guid) +M:System.Guid.op_LessThanOrEqual(System.Guid,System.Guid) +T:System.Half +M:System.Half.Abs(System.Half) +M:System.Half.Acos(System.Half) +M:System.Half.AcosPi(System.Half) +M:System.Half.Acosh(System.Half) +M:System.Half.Asin(System.Half) +M:System.Half.AsinPi(System.Half) +M:System.Half.Asinh(System.Half) +M:System.Half.Atan(System.Half) +M:System.Half.Atan2(System.Half,System.Half) +M:System.Half.Atan2Pi(System.Half,System.Half) +M:System.Half.AtanPi(System.Half) +M:System.Half.Atanh(System.Half) +M:System.Half.BitDecrement(System.Half) +M:System.Half.BitIncrement(System.Half) +M:System.Half.Cbrt(System.Half) +M:System.Half.Ceiling(System.Half) +M:System.Half.Clamp(System.Half,System.Half,System.Half) +M:System.Half.CompareTo(System.Half) +M:System.Half.CompareTo(System.Object) +M:System.Half.CopySign(System.Half,System.Half) +M:System.Half.Cos(System.Half) +M:System.Half.CosPi(System.Half) +M:System.Half.Cosh(System.Half) +M:System.Half.CreateChecked``1(``0) +M:System.Half.CreateSaturating``1(``0) +M:System.Half.CreateTruncating``1(``0) +M:System.Half.DegreesToRadians(System.Half) +M:System.Half.Equals(System.Half) +M:System.Half.Equals(System.Object) +M:System.Half.Exp(System.Half) +M:System.Half.Exp10(System.Half) +M:System.Half.Exp10M1(System.Half) +M:System.Half.Exp2(System.Half) +M:System.Half.Exp2M1(System.Half) +M:System.Half.ExpM1(System.Half) +M:System.Half.Floor(System.Half) +M:System.Half.FusedMultiplyAdd(System.Half,System.Half,System.Half) +M:System.Half.GetHashCode +M:System.Half.Hypot(System.Half,System.Half) +M:System.Half.ILogB(System.Half) +M:System.Half.Ieee754Remainder(System.Half,System.Half) +M:System.Half.IsEvenInteger(System.Half) +M:System.Half.IsFinite(System.Half) +M:System.Half.IsInfinity(System.Half) +M:System.Half.IsInteger(System.Half) +M:System.Half.IsNaN(System.Half) +M:System.Half.IsNegative(System.Half) +M:System.Half.IsNegativeInfinity(System.Half) +M:System.Half.IsNormal(System.Half) +M:System.Half.IsOddInteger(System.Half) +M:System.Half.IsPositive(System.Half) +M:System.Half.IsPositiveInfinity(System.Half) +M:System.Half.IsPow2(System.Half) +M:System.Half.IsRealNumber(System.Half) +M:System.Half.IsSubnormal(System.Half) +M:System.Half.Lerp(System.Half,System.Half,System.Half) +M:System.Half.Log(System.Half) +M:System.Half.Log(System.Half,System.Half) +M:System.Half.Log10(System.Half) +M:System.Half.Log10P1(System.Half) +M:System.Half.Log2(System.Half) +M:System.Half.Log2P1(System.Half) +M:System.Half.LogP1(System.Half) +M:System.Half.Max(System.Half,System.Half) +M:System.Half.MaxMagnitude(System.Half,System.Half) +M:System.Half.MaxMagnitudeNumber(System.Half,System.Half) +M:System.Half.MaxNumber(System.Half,System.Half) +M:System.Half.Min(System.Half,System.Half) +M:System.Half.MinMagnitude(System.Half,System.Half) +M:System.Half.MinMagnitudeNumber(System.Half,System.Half) +M:System.Half.MinNumber(System.Half,System.Half) +M:System.Half.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Half.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Half.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Half.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Half.Parse(System.String) +M:System.Half.Parse(System.String,System.Globalization.NumberStyles) +M:System.Half.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Half.Parse(System.String,System.IFormatProvider) +M:System.Half.Pow(System.Half,System.Half) +M:System.Half.RadiansToDegrees(System.Half) +M:System.Half.ReciprocalEstimate(System.Half) +M:System.Half.ReciprocalSqrtEstimate(System.Half) +M:System.Half.RootN(System.Half,System.Int32) +M:System.Half.Round(System.Half) +M:System.Half.Round(System.Half,System.Int32) +M:System.Half.Round(System.Half,System.Int32,System.MidpointRounding) +M:System.Half.Round(System.Half,System.MidpointRounding) +M:System.Half.ScaleB(System.Half,System.Int32) +M:System.Half.Sign(System.Half) +M:System.Half.Sin(System.Half) +M:System.Half.SinCos(System.Half) +M:System.Half.SinCosPi(System.Half) +M:System.Half.SinPi(System.Half) +M:System.Half.Sinh(System.Half) +M:System.Half.Sqrt(System.Half) +M:System.Half.Tan(System.Half) +M:System.Half.TanPi(System.Half) +M:System.Half.Tanh(System.Half) +M:System.Half.ToString +M:System.Half.ToString(System.IFormatProvider) +M:System.Half.ToString(System.String) +M:System.Half.ToString(System.String,System.IFormatProvider) +M:System.Half.Truncate(System.Half) +M:System.Half.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Half.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Half.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Half@) +M:System.Half.TryParse(System.ReadOnlySpan{System.Byte},System.Half@) +M:System.Half.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Half@) +M:System.Half.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Half@) +M:System.Half.TryParse(System.ReadOnlySpan{System.Char},System.Half@) +M:System.Half.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Half@) +M:System.Half.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Half@) +M:System.Half.TryParse(System.String,System.Half@) +M:System.Half.TryParse(System.String,System.IFormatProvider,System.Half@) +M:System.Half.get_E +M:System.Half.get_Epsilon +M:System.Half.get_MaxValue +M:System.Half.get_MinValue +M:System.Half.get_MultiplicativeIdentity +M:System.Half.get_NaN +M:System.Half.get_NegativeInfinity +M:System.Half.get_NegativeOne +M:System.Half.get_NegativeZero +M:System.Half.get_One +M:System.Half.get_Pi +M:System.Half.get_PositiveInfinity +M:System.Half.get_Tau +M:System.Half.get_Zero +M:System.Half.op_Addition(System.Half,System.Half) +M:System.Half.op_CheckedExplicit(System.Half)~System.Byte +M:System.Half.op_CheckedExplicit(System.Half)~System.Char +M:System.Half.op_CheckedExplicit(System.Half)~System.Int128 +M:System.Half.op_CheckedExplicit(System.Half)~System.Int16 +M:System.Half.op_CheckedExplicit(System.Half)~System.Int32 +M:System.Half.op_CheckedExplicit(System.Half)~System.Int64 +M:System.Half.op_CheckedExplicit(System.Half)~System.IntPtr +M:System.Half.op_CheckedExplicit(System.Half)~System.SByte +M:System.Half.op_CheckedExplicit(System.Half)~System.UInt128 +M:System.Half.op_CheckedExplicit(System.Half)~System.UInt16 +M:System.Half.op_CheckedExplicit(System.Half)~System.UInt32 +M:System.Half.op_CheckedExplicit(System.Half)~System.UInt64 +M:System.Half.op_CheckedExplicit(System.Half)~System.UIntPtr +M:System.Half.op_Decrement(System.Half) +M:System.Half.op_Division(System.Half,System.Half) +M:System.Half.op_Equality(System.Half,System.Half) +M:System.Half.op_Explicit(System.Char)~System.Half +M:System.Half.op_Explicit(System.Decimal)~System.Half +M:System.Half.op_Explicit(System.Double)~System.Half +M:System.Half.op_Explicit(System.Half)~System.Byte +M:System.Half.op_Explicit(System.Half)~System.Char +M:System.Half.op_Explicit(System.Half)~System.Decimal +M:System.Half.op_Explicit(System.Half)~System.Double +M:System.Half.op_Explicit(System.Half)~System.Int128 +M:System.Half.op_Explicit(System.Half)~System.Int16 +M:System.Half.op_Explicit(System.Half)~System.Int32 +M:System.Half.op_Explicit(System.Half)~System.Int64 +M:System.Half.op_Explicit(System.Half)~System.IntPtr +M:System.Half.op_Explicit(System.Half)~System.SByte +M:System.Half.op_Explicit(System.Half)~System.Single +M:System.Half.op_Explicit(System.Half)~System.UInt128 +M:System.Half.op_Explicit(System.Half)~System.UInt16 +M:System.Half.op_Explicit(System.Half)~System.UInt32 +M:System.Half.op_Explicit(System.Half)~System.UInt64 +M:System.Half.op_Explicit(System.Half)~System.UIntPtr +M:System.Half.op_Explicit(System.Int16)~System.Half +M:System.Half.op_Explicit(System.Int32)~System.Half +M:System.Half.op_Explicit(System.Int64)~System.Half +M:System.Half.op_Explicit(System.IntPtr)~System.Half +M:System.Half.op_Explicit(System.Single)~System.Half +M:System.Half.op_Explicit(System.UInt16)~System.Half +M:System.Half.op_Explicit(System.UInt32)~System.Half +M:System.Half.op_Explicit(System.UInt64)~System.Half +M:System.Half.op_Explicit(System.UIntPtr)~System.Half +M:System.Half.op_GreaterThan(System.Half,System.Half) +M:System.Half.op_GreaterThanOrEqual(System.Half,System.Half) +M:System.Half.op_Implicit(System.Byte)~System.Half +M:System.Half.op_Implicit(System.SByte)~System.Half +M:System.Half.op_Increment(System.Half) +M:System.Half.op_Inequality(System.Half,System.Half) +M:System.Half.op_LessThan(System.Half,System.Half) +M:System.Half.op_LessThanOrEqual(System.Half,System.Half) +M:System.Half.op_Modulus(System.Half,System.Half) +M:System.Half.op_Multiply(System.Half,System.Half) +M:System.Half.op_Subtraction(System.Half,System.Half) +M:System.Half.op_UnaryNegation(System.Half) +M:System.Half.op_UnaryPlus(System.Half) +T:System.HashCode +M:System.HashCode.AddBytes(System.ReadOnlySpan{System.Byte}) +M:System.HashCode.Add``1(``0) +M:System.HashCode.Add``1(``0,System.Collections.Generic.IEqualityComparer{``0}) +M:System.HashCode.Combine``1(``0) +M:System.HashCode.Combine``2(``0,``1) +M:System.HashCode.Combine``3(``0,``1,``2) +M:System.HashCode.Combine``4(``0,``1,``2,``3) +M:System.HashCode.Combine``5(``0,``1,``2,``3,``4) +M:System.HashCode.Combine``6(``0,``1,``2,``3,``4,``5) +M:System.HashCode.Combine``7(``0,``1,``2,``3,``4,``5,``6) +M:System.HashCode.Combine``8(``0,``1,``2,``3,``4,``5,``6,``7) +M:System.HashCode.Equals(System.Object) +M:System.HashCode.GetHashCode +M:System.HashCode.ToHashCode +T:System.HttpStyleUriParser +M:System.HttpStyleUriParser.#ctor +T:System.IAsyncDisposable +M:System.IAsyncDisposable.DisposeAsync +T:System.IAsyncResult +M:System.IAsyncResult.get_AsyncState +M:System.IAsyncResult.get_AsyncWaitHandle +M:System.IAsyncResult.get_CompletedSynchronously +M:System.IAsyncResult.get_IsCompleted +T:System.ICloneable +M:System.ICloneable.Clone +T:System.IComparable +M:System.IComparable.CompareTo(System.Object) +T:System.IComparable`1 +M:System.IComparable`1.CompareTo(`0) +T:System.IConvertible +M:System.IConvertible.GetTypeCode +M:System.IConvertible.ToBoolean(System.IFormatProvider) +M:System.IConvertible.ToByte(System.IFormatProvider) +M:System.IConvertible.ToChar(System.IFormatProvider) +M:System.IConvertible.ToDateTime(System.IFormatProvider) +M:System.IConvertible.ToDecimal(System.IFormatProvider) +M:System.IConvertible.ToDouble(System.IFormatProvider) +M:System.IConvertible.ToInt16(System.IFormatProvider) +M:System.IConvertible.ToInt32(System.IFormatProvider) +M:System.IConvertible.ToInt64(System.IFormatProvider) +M:System.IConvertible.ToSByte(System.IFormatProvider) +M:System.IConvertible.ToSingle(System.IFormatProvider) +M:System.IConvertible.ToString(System.IFormatProvider) +M:System.IConvertible.ToType(System.Type,System.IFormatProvider) +M:System.IConvertible.ToUInt16(System.IFormatProvider) +M:System.IConvertible.ToUInt32(System.IFormatProvider) +M:System.IConvertible.ToUInt64(System.IFormatProvider) +T:System.ICustomFormatter +M:System.ICustomFormatter.Format(System.String,System.Object,System.IFormatProvider) +T:System.IDisposable +M:System.IDisposable.Dispose +T:System.IEquatable`1 +M:System.IEquatable`1.Equals(`0) +T:System.IFormatProvider +M:System.IFormatProvider.GetFormat(System.Type) +T:System.IFormattable +M:System.IFormattable.ToString(System.String,System.IFormatProvider) +T:System.IObservable`1 +M:System.IObservable`1.Subscribe(System.IObserver{`0}) +T:System.IObserver`1 +M:System.IObserver`1.OnCompleted +M:System.IObserver`1.OnError(System.Exception) +M:System.IObserver`1.OnNext(`0) +T:System.IParsable`1 +M:System.IParsable`1.Parse(System.String,System.IFormatProvider) +M:System.IParsable`1.TryParse(System.String,System.IFormatProvider,`0@) +T:System.IProgress`1 +M:System.IProgress`1.Report(`0) +T:System.ISpanFormattable +M:System.ISpanFormattable.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +T:System.ISpanParsable`1 +M:System.ISpanParsable`1.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.ISpanParsable`1.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,`0@) +T:System.IUtf8SpanFormattable +M:System.IUtf8SpanFormattable.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +T:System.IUtf8SpanParsable`1 +M:System.IUtf8SpanParsable`1.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.IUtf8SpanParsable`1.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,`0@) +T:System.Index +M:System.Index.#ctor(System.Int32,System.Boolean) +M:System.Index.Equals(System.Index) +M:System.Index.Equals(System.Object) +M:System.Index.FromEnd(System.Int32) +M:System.Index.FromStart(System.Int32) +M:System.Index.GetHashCode +M:System.Index.GetOffset(System.Int32) +M:System.Index.ToString +M:System.Index.get_End +M:System.Index.get_IsFromEnd +M:System.Index.get_Start +M:System.Index.get_Value +M:System.Index.op_Implicit(System.Int32)~System.Index +T:System.IndexOutOfRangeException +M:System.IndexOutOfRangeException.#ctor +M:System.IndexOutOfRangeException.#ctor(System.String) +M:System.IndexOutOfRangeException.#ctor(System.String,System.Exception) +T:System.InsufficientExecutionStackException +M:System.InsufficientExecutionStackException.#ctor +M:System.InsufficientExecutionStackException.#ctor(System.String) +M:System.InsufficientExecutionStackException.#ctor(System.String,System.Exception) +T:System.InsufficientMemoryException +M:System.InsufficientMemoryException.#ctor +M:System.InsufficientMemoryException.#ctor(System.String) +M:System.InsufficientMemoryException.#ctor(System.String,System.Exception) +T:System.Int128 +M:System.Int128.#ctor(System.UInt64,System.UInt64) +M:System.Int128.Abs(System.Int128) +M:System.Int128.Clamp(System.Int128,System.Int128,System.Int128) +M:System.Int128.CompareTo(System.Int128) +M:System.Int128.CompareTo(System.Object) +M:System.Int128.CopySign(System.Int128,System.Int128) +M:System.Int128.CreateChecked``1(``0) +M:System.Int128.CreateSaturating``1(``0) +M:System.Int128.CreateTruncating``1(``0) +M:System.Int128.DivRem(System.Int128,System.Int128) +M:System.Int128.Equals(System.Int128) +M:System.Int128.Equals(System.Object) +M:System.Int128.GetHashCode +M:System.Int128.IsEvenInteger(System.Int128) +M:System.Int128.IsNegative(System.Int128) +M:System.Int128.IsOddInteger(System.Int128) +M:System.Int128.IsPositive(System.Int128) +M:System.Int128.IsPow2(System.Int128) +M:System.Int128.LeadingZeroCount(System.Int128) +M:System.Int128.Log2(System.Int128) +M:System.Int128.Max(System.Int128,System.Int128) +M:System.Int128.MaxMagnitude(System.Int128,System.Int128) +M:System.Int128.Min(System.Int128,System.Int128) +M:System.Int128.MinMagnitude(System.Int128,System.Int128) +M:System.Int128.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int128.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Int128.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int128.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int128.Parse(System.String) +M:System.Int128.Parse(System.String,System.Globalization.NumberStyles) +M:System.Int128.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int128.Parse(System.String,System.IFormatProvider) +M:System.Int128.PopCount(System.Int128) +M:System.Int128.RotateLeft(System.Int128,System.Int32) +M:System.Int128.RotateRight(System.Int128,System.Int32) +M:System.Int128.Sign(System.Int128) +M:System.Int128.ToString +M:System.Int128.ToString(System.IFormatProvider) +M:System.Int128.ToString(System.String) +M:System.Int128.ToString(System.String,System.IFormatProvider) +M:System.Int128.TrailingZeroCount(System.Int128) +M:System.Int128.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int128.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Byte},System.Int128@) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Char},System.Int128@) +M:System.Int128.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.String,System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.String,System.Int128@) +M:System.Int128.get_MaxValue +M:System.Int128.get_MinValue +M:System.Int128.get_NegativeOne +M:System.Int128.get_One +M:System.Int128.get_Zero +M:System.Int128.op_Addition(System.Int128,System.Int128) +M:System.Int128.op_BitwiseAnd(System.Int128,System.Int128) +M:System.Int128.op_BitwiseOr(System.Int128,System.Int128) +M:System.Int128.op_CheckedAddition(System.Int128,System.Int128) +M:System.Int128.op_CheckedDecrement(System.Int128) +M:System.Int128.op_CheckedDivision(System.Int128,System.Int128) +M:System.Int128.op_CheckedExplicit(System.Double)~System.Int128 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.Byte +M:System.Int128.op_CheckedExplicit(System.Int128)~System.Char +M:System.Int128.op_CheckedExplicit(System.Int128)~System.Int16 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.Int32 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.Int64 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.IntPtr +M:System.Int128.op_CheckedExplicit(System.Int128)~System.SByte +M:System.Int128.op_CheckedExplicit(System.Int128)~System.UInt128 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.UInt16 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.UInt32 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.UInt64 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.UIntPtr +M:System.Int128.op_CheckedExplicit(System.Single)~System.Int128 +M:System.Int128.op_CheckedIncrement(System.Int128) +M:System.Int128.op_CheckedMultiply(System.Int128,System.Int128) +M:System.Int128.op_CheckedSubtraction(System.Int128,System.Int128) +M:System.Int128.op_CheckedUnaryNegation(System.Int128) +M:System.Int128.op_Decrement(System.Int128) +M:System.Int128.op_Division(System.Int128,System.Int128) +M:System.Int128.op_Equality(System.Int128,System.Int128) +M:System.Int128.op_ExclusiveOr(System.Int128,System.Int128) +M:System.Int128.op_Explicit(System.Decimal)~System.Int128 +M:System.Int128.op_Explicit(System.Double)~System.Int128 +M:System.Int128.op_Explicit(System.Int128)~System.Byte +M:System.Int128.op_Explicit(System.Int128)~System.Char +M:System.Int128.op_Explicit(System.Int128)~System.Decimal +M:System.Int128.op_Explicit(System.Int128)~System.Double +M:System.Int128.op_Explicit(System.Int128)~System.Half +M:System.Int128.op_Explicit(System.Int128)~System.Int16 +M:System.Int128.op_Explicit(System.Int128)~System.Int32 +M:System.Int128.op_Explicit(System.Int128)~System.Int64 +M:System.Int128.op_Explicit(System.Int128)~System.IntPtr +M:System.Int128.op_Explicit(System.Int128)~System.SByte +M:System.Int128.op_Explicit(System.Int128)~System.Single +M:System.Int128.op_Explicit(System.Int128)~System.UInt128 +M:System.Int128.op_Explicit(System.Int128)~System.UInt16 +M:System.Int128.op_Explicit(System.Int128)~System.UInt32 +M:System.Int128.op_Explicit(System.Int128)~System.UInt64 +M:System.Int128.op_Explicit(System.Int128)~System.UIntPtr +M:System.Int128.op_Explicit(System.Single)~System.Int128 +M:System.Int128.op_GreaterThan(System.Int128,System.Int128) +M:System.Int128.op_GreaterThanOrEqual(System.Int128,System.Int128) +M:System.Int128.op_Implicit(System.Byte)~System.Int128 +M:System.Int128.op_Implicit(System.Char)~System.Int128 +M:System.Int128.op_Implicit(System.Int16)~System.Int128 +M:System.Int128.op_Implicit(System.Int32)~System.Int128 +M:System.Int128.op_Implicit(System.Int64)~System.Int128 +M:System.Int128.op_Implicit(System.IntPtr)~System.Int128 +M:System.Int128.op_Implicit(System.SByte)~System.Int128 +M:System.Int128.op_Implicit(System.UInt16)~System.Int128 +M:System.Int128.op_Implicit(System.UInt32)~System.Int128 +M:System.Int128.op_Implicit(System.UInt64)~System.Int128 +M:System.Int128.op_Implicit(System.UIntPtr)~System.Int128 +M:System.Int128.op_Increment(System.Int128) +M:System.Int128.op_Inequality(System.Int128,System.Int128) +M:System.Int128.op_LeftShift(System.Int128,System.Int32) +M:System.Int128.op_LessThan(System.Int128,System.Int128) +M:System.Int128.op_LessThanOrEqual(System.Int128,System.Int128) +M:System.Int128.op_Modulus(System.Int128,System.Int128) +M:System.Int128.op_Multiply(System.Int128,System.Int128) +M:System.Int128.op_OnesComplement(System.Int128) +M:System.Int128.op_RightShift(System.Int128,System.Int32) +M:System.Int128.op_Subtraction(System.Int128,System.Int128) +M:System.Int128.op_UnaryNegation(System.Int128) +M:System.Int128.op_UnaryPlus(System.Int128) +M:System.Int128.op_UnsignedRightShift(System.Int128,System.Int32) +T:System.Int16 +M:System.Int16.Abs(System.Int16) +M:System.Int16.Clamp(System.Int16,System.Int16,System.Int16) +M:System.Int16.CompareTo(System.Int16) +M:System.Int16.CompareTo(System.Object) +M:System.Int16.CopySign(System.Int16,System.Int16) +M:System.Int16.CreateChecked``1(``0) +M:System.Int16.CreateSaturating``1(``0) +M:System.Int16.CreateTruncating``1(``0) +M:System.Int16.DivRem(System.Int16,System.Int16) +M:System.Int16.Equals(System.Int16) +M:System.Int16.Equals(System.Object) +M:System.Int16.GetHashCode +M:System.Int16.GetTypeCode +M:System.Int16.IsEvenInteger(System.Int16) +M:System.Int16.IsNegative(System.Int16) +M:System.Int16.IsOddInteger(System.Int16) +M:System.Int16.IsPositive(System.Int16) +M:System.Int16.IsPow2(System.Int16) +M:System.Int16.LeadingZeroCount(System.Int16) +M:System.Int16.Log2(System.Int16) +M:System.Int16.Max(System.Int16,System.Int16) +M:System.Int16.MaxMagnitude(System.Int16,System.Int16) +F:System.Int16.MaxValue +M:System.Int16.Min(System.Int16,System.Int16) +M:System.Int16.MinMagnitude(System.Int16,System.Int16) +F:System.Int16.MinValue +M:System.Int16.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int16.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Int16.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int16.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int16.Parse(System.String) +M:System.Int16.Parse(System.String,System.Globalization.NumberStyles) +M:System.Int16.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int16.Parse(System.String,System.IFormatProvider) +M:System.Int16.PopCount(System.Int16) +M:System.Int16.RotateLeft(System.Int16,System.Int32) +M:System.Int16.RotateRight(System.Int16,System.Int32) +M:System.Int16.Sign(System.Int16) +M:System.Int16.ToString +M:System.Int16.ToString(System.IFormatProvider) +M:System.Int16.ToString(System.String) +M:System.Int16.ToString(System.String,System.IFormatProvider) +M:System.Int16.TrailingZeroCount(System.Int16) +M:System.Int16.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int16.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Byte},System.Int16@) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Char},System.Int16@) +M:System.Int16.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.String,System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.String,System.Int16@) +T:System.Int32 +M:System.Int32.Abs(System.Int32) +M:System.Int32.Clamp(System.Int32,System.Int32,System.Int32) +M:System.Int32.CompareTo(System.Int32) +M:System.Int32.CompareTo(System.Object) +M:System.Int32.CopySign(System.Int32,System.Int32) +M:System.Int32.CreateChecked``1(``0) +M:System.Int32.CreateSaturating``1(``0) +M:System.Int32.CreateTruncating``1(``0) +M:System.Int32.DivRem(System.Int32,System.Int32) +M:System.Int32.Equals(System.Int32) +M:System.Int32.Equals(System.Object) +M:System.Int32.GetHashCode +M:System.Int32.GetTypeCode +M:System.Int32.IsEvenInteger(System.Int32) +M:System.Int32.IsNegative(System.Int32) +M:System.Int32.IsOddInteger(System.Int32) +M:System.Int32.IsPositive(System.Int32) +M:System.Int32.IsPow2(System.Int32) +M:System.Int32.LeadingZeroCount(System.Int32) +M:System.Int32.Log2(System.Int32) +M:System.Int32.Max(System.Int32,System.Int32) +M:System.Int32.MaxMagnitude(System.Int32,System.Int32) +F:System.Int32.MaxValue +M:System.Int32.Min(System.Int32,System.Int32) +M:System.Int32.MinMagnitude(System.Int32,System.Int32) +F:System.Int32.MinValue +M:System.Int32.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int32.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Int32.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int32.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int32.Parse(System.String) +M:System.Int32.Parse(System.String,System.Globalization.NumberStyles) +M:System.Int32.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int32.Parse(System.String,System.IFormatProvider) +M:System.Int32.PopCount(System.Int32) +M:System.Int32.RotateLeft(System.Int32,System.Int32) +M:System.Int32.RotateRight(System.Int32,System.Int32) +M:System.Int32.Sign(System.Int32) +M:System.Int32.ToString +M:System.Int32.ToString(System.IFormatProvider) +M:System.Int32.ToString(System.String) +M:System.Int32.ToString(System.String,System.IFormatProvider) +M:System.Int32.TrailingZeroCount(System.Int32) +M:System.Int32.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int32.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Byte},System.Int32@) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Char},System.Int32@) +M:System.Int32.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.String,System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.String,System.Int32@) +T:System.Int64 +M:System.Int64.Abs(System.Int64) +M:System.Int64.Clamp(System.Int64,System.Int64,System.Int64) +M:System.Int64.CompareTo(System.Int64) +M:System.Int64.CompareTo(System.Object) +M:System.Int64.CopySign(System.Int64,System.Int64) +M:System.Int64.CreateChecked``1(``0) +M:System.Int64.CreateSaturating``1(``0) +M:System.Int64.CreateTruncating``1(``0) +M:System.Int64.DivRem(System.Int64,System.Int64) +M:System.Int64.Equals(System.Int64) +M:System.Int64.Equals(System.Object) +M:System.Int64.GetHashCode +M:System.Int64.GetTypeCode +M:System.Int64.IsEvenInteger(System.Int64) +M:System.Int64.IsNegative(System.Int64) +M:System.Int64.IsOddInteger(System.Int64) +M:System.Int64.IsPositive(System.Int64) +M:System.Int64.IsPow2(System.Int64) +M:System.Int64.LeadingZeroCount(System.Int64) +M:System.Int64.Log2(System.Int64) +M:System.Int64.Max(System.Int64,System.Int64) +M:System.Int64.MaxMagnitude(System.Int64,System.Int64) +F:System.Int64.MaxValue +M:System.Int64.Min(System.Int64,System.Int64) +M:System.Int64.MinMagnitude(System.Int64,System.Int64) +F:System.Int64.MinValue +M:System.Int64.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int64.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Int64.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int64.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int64.Parse(System.String) +M:System.Int64.Parse(System.String,System.Globalization.NumberStyles) +M:System.Int64.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int64.Parse(System.String,System.IFormatProvider) +M:System.Int64.PopCount(System.Int64) +M:System.Int64.RotateLeft(System.Int64,System.Int32) +M:System.Int64.RotateRight(System.Int64,System.Int32) +M:System.Int64.Sign(System.Int64) +M:System.Int64.ToString +M:System.Int64.ToString(System.IFormatProvider) +M:System.Int64.ToString(System.String) +M:System.Int64.ToString(System.String,System.IFormatProvider) +M:System.Int64.TrailingZeroCount(System.Int64) +M:System.Int64.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int64.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Byte},System.Int64@) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Char},System.Int64@) +M:System.Int64.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.String,System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.String,System.Int64@) +T:System.InvalidCastException +M:System.InvalidCastException.#ctor +M:System.InvalidCastException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.InvalidCastException.#ctor(System.String) +M:System.InvalidCastException.#ctor(System.String,System.Exception) +M:System.InvalidCastException.#ctor(System.String,System.Int32) +T:System.InvalidOperationException +M:System.InvalidOperationException.#ctor +M:System.InvalidOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.InvalidOperationException.#ctor(System.String) +M:System.InvalidOperationException.#ctor(System.String,System.Exception) +T:System.InvalidProgramException +M:System.InvalidProgramException.#ctor +M:System.InvalidProgramException.#ctor(System.String) +M:System.InvalidProgramException.#ctor(System.String,System.Exception) +T:System.InvalidTimeZoneException +M:System.InvalidTimeZoneException.#ctor +M:System.InvalidTimeZoneException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.InvalidTimeZoneException.#ctor(System.String) +M:System.InvalidTimeZoneException.#ctor(System.String,System.Exception) +T:System.Lazy`1 +M:System.Lazy`1.#ctor +M:System.Lazy`1.#ctor(System.Boolean) +M:System.Lazy`1.#ctor(System.Func{`0}) +M:System.Lazy`1.#ctor(System.Func{`0},System.Boolean) +M:System.Lazy`1.#ctor(System.Func{`0},System.Threading.LazyThreadSafetyMode) +M:System.Lazy`1.#ctor(System.Threading.LazyThreadSafetyMode) +M:System.Lazy`1.#ctor(`0) +M:System.Lazy`1.ToString +M:System.Lazy`1.get_IsValueCreated +M:System.Lazy`1.get_Value +T:System.Lazy`2 +M:System.Lazy`2.#ctor(System.Func{`0},`1) +M:System.Lazy`2.#ctor(System.Func{`0},`1,System.Boolean) +M:System.Lazy`2.#ctor(System.Func{`0},`1,System.Threading.LazyThreadSafetyMode) +M:System.Lazy`2.#ctor(`1) +M:System.Lazy`2.#ctor(`1,System.Boolean) +M:System.Lazy`2.#ctor(`1,System.Threading.LazyThreadSafetyMode) +M:System.Lazy`2.get_Metadata +T:System.LdapStyleUriParser +M:System.LdapStyleUriParser.#ctor +T:System.Math +M:System.Math.Abs(System.Decimal) +M:System.Math.Abs(System.Double) +M:System.Math.Abs(System.Int16) +M:System.Math.Abs(System.Int32) +M:System.Math.Abs(System.Int64) +M:System.Math.Abs(System.IntPtr) +M:System.Math.Abs(System.SByte) +M:System.Math.Abs(System.Single) +M:System.Math.Acos(System.Double) +M:System.Math.Acosh(System.Double) +M:System.Math.Asin(System.Double) +M:System.Math.Asinh(System.Double) +M:System.Math.Atan(System.Double) +M:System.Math.Atan2(System.Double,System.Double) +M:System.Math.Atanh(System.Double) +M:System.Math.BigMul(System.Int32,System.Int32) +M:System.Math.BigMul(System.Int64,System.Int64,System.Int64@) +M:System.Math.BigMul(System.UInt64,System.UInt64,System.UInt64@) +M:System.Math.BitDecrement(System.Double) +M:System.Math.BitIncrement(System.Double) +M:System.Math.Cbrt(System.Double) +M:System.Math.Ceiling(System.Decimal) +M:System.Math.Ceiling(System.Double) +M:System.Math.Clamp(System.Byte,System.Byte,System.Byte) +M:System.Math.Clamp(System.Decimal,System.Decimal,System.Decimal) +M:System.Math.Clamp(System.Double,System.Double,System.Double) +M:System.Math.Clamp(System.Int16,System.Int16,System.Int16) +M:System.Math.Clamp(System.Int32,System.Int32,System.Int32) +M:System.Math.Clamp(System.Int64,System.Int64,System.Int64) +M:System.Math.Clamp(System.IntPtr,System.IntPtr,System.IntPtr) +M:System.Math.Clamp(System.SByte,System.SByte,System.SByte) +M:System.Math.Clamp(System.Single,System.Single,System.Single) +M:System.Math.Clamp(System.UInt16,System.UInt16,System.UInt16) +M:System.Math.Clamp(System.UInt32,System.UInt32,System.UInt32) +M:System.Math.Clamp(System.UInt64,System.UInt64,System.UInt64) +M:System.Math.Clamp(System.UIntPtr,System.UIntPtr,System.UIntPtr) +M:System.Math.CopySign(System.Double,System.Double) +M:System.Math.Cos(System.Double) +M:System.Math.Cosh(System.Double) +M:System.Math.DivRem(System.Byte,System.Byte) +M:System.Math.DivRem(System.Int16,System.Int16) +M:System.Math.DivRem(System.Int32,System.Int32) +M:System.Math.DivRem(System.Int32,System.Int32,System.Int32@) +M:System.Math.DivRem(System.Int64,System.Int64) +M:System.Math.DivRem(System.Int64,System.Int64,System.Int64@) +M:System.Math.DivRem(System.IntPtr,System.IntPtr) +M:System.Math.DivRem(System.SByte,System.SByte) +M:System.Math.DivRem(System.UInt16,System.UInt16) +M:System.Math.DivRem(System.UInt32,System.UInt32) +M:System.Math.DivRem(System.UInt64,System.UInt64) +M:System.Math.DivRem(System.UIntPtr,System.UIntPtr) +F:System.Math.E +M:System.Math.Exp(System.Double) +M:System.Math.Floor(System.Decimal) +M:System.Math.Floor(System.Double) +M:System.Math.FusedMultiplyAdd(System.Double,System.Double,System.Double) +M:System.Math.IEEERemainder(System.Double,System.Double) +M:System.Math.ILogB(System.Double) +M:System.Math.Log(System.Double) +M:System.Math.Log(System.Double,System.Double) +M:System.Math.Log10(System.Double) +M:System.Math.Log2(System.Double) +M:System.Math.Max(System.Byte,System.Byte) +M:System.Math.Max(System.Decimal,System.Decimal) +M:System.Math.Max(System.Double,System.Double) +M:System.Math.Max(System.Int16,System.Int16) +M:System.Math.Max(System.Int32,System.Int32) +M:System.Math.Max(System.Int64,System.Int64) +M:System.Math.Max(System.IntPtr,System.IntPtr) +M:System.Math.Max(System.SByte,System.SByte) +M:System.Math.Max(System.Single,System.Single) +M:System.Math.Max(System.UInt16,System.UInt16) +M:System.Math.Max(System.UInt32,System.UInt32) +M:System.Math.Max(System.UInt64,System.UInt64) +M:System.Math.Max(System.UIntPtr,System.UIntPtr) +M:System.Math.MaxMagnitude(System.Double,System.Double) +M:System.Math.Min(System.Byte,System.Byte) +M:System.Math.Min(System.Decimal,System.Decimal) +M:System.Math.Min(System.Double,System.Double) +M:System.Math.Min(System.Int16,System.Int16) +M:System.Math.Min(System.Int32,System.Int32) +M:System.Math.Min(System.Int64,System.Int64) +M:System.Math.Min(System.IntPtr,System.IntPtr) +M:System.Math.Min(System.SByte,System.SByte) +M:System.Math.Min(System.Single,System.Single) +M:System.Math.Min(System.UInt16,System.UInt16) +M:System.Math.Min(System.UInt32,System.UInt32) +M:System.Math.Min(System.UInt64,System.UInt64) +M:System.Math.Min(System.UIntPtr,System.UIntPtr) +M:System.Math.MinMagnitude(System.Double,System.Double) +F:System.Math.PI +M:System.Math.Pow(System.Double,System.Double) +M:System.Math.ReciprocalEstimate(System.Double) +M:System.Math.ReciprocalSqrtEstimate(System.Double) +M:System.Math.Round(System.Decimal) +M:System.Math.Round(System.Decimal,System.Int32) +M:System.Math.Round(System.Decimal,System.Int32,System.MidpointRounding) +M:System.Math.Round(System.Decimal,System.MidpointRounding) +M:System.Math.Round(System.Double) +M:System.Math.Round(System.Double,System.Int32) +M:System.Math.Round(System.Double,System.Int32,System.MidpointRounding) +M:System.Math.Round(System.Double,System.MidpointRounding) +M:System.Math.ScaleB(System.Double,System.Int32) +M:System.Math.Sign(System.Decimal) +M:System.Math.Sign(System.Double) +M:System.Math.Sign(System.Int16) +M:System.Math.Sign(System.Int32) +M:System.Math.Sign(System.Int64) +M:System.Math.Sign(System.IntPtr) +M:System.Math.Sign(System.SByte) +M:System.Math.Sign(System.Single) +M:System.Math.Sin(System.Double) +M:System.Math.SinCos(System.Double) +M:System.Math.Sinh(System.Double) +M:System.Math.Sqrt(System.Double) +M:System.Math.Tan(System.Double) +M:System.Math.Tanh(System.Double) +F:System.Math.Tau +M:System.Math.Truncate(System.Decimal) +M:System.Math.Truncate(System.Double) +T:System.MathF +M:System.MathF.Abs(System.Single) +M:System.MathF.Acos(System.Single) +M:System.MathF.Acosh(System.Single) +M:System.MathF.Asin(System.Single) +M:System.MathF.Asinh(System.Single) +M:System.MathF.Atan(System.Single) +M:System.MathF.Atan2(System.Single,System.Single) +M:System.MathF.Atanh(System.Single) +M:System.MathF.BitDecrement(System.Single) +M:System.MathF.BitIncrement(System.Single) +M:System.MathF.Cbrt(System.Single) +M:System.MathF.Ceiling(System.Single) +M:System.MathF.CopySign(System.Single,System.Single) +M:System.MathF.Cos(System.Single) +M:System.MathF.Cosh(System.Single) +F:System.MathF.E +M:System.MathF.Exp(System.Single) +M:System.MathF.Floor(System.Single) +M:System.MathF.FusedMultiplyAdd(System.Single,System.Single,System.Single) +M:System.MathF.IEEERemainder(System.Single,System.Single) +M:System.MathF.ILogB(System.Single) +M:System.MathF.Log(System.Single) +M:System.MathF.Log(System.Single,System.Single) +M:System.MathF.Log10(System.Single) +M:System.MathF.Log2(System.Single) +M:System.MathF.Max(System.Single,System.Single) +M:System.MathF.MaxMagnitude(System.Single,System.Single) +M:System.MathF.Min(System.Single,System.Single) +M:System.MathF.MinMagnitude(System.Single,System.Single) +F:System.MathF.PI +M:System.MathF.Pow(System.Single,System.Single) +M:System.MathF.ReciprocalEstimate(System.Single) +M:System.MathF.ReciprocalSqrtEstimate(System.Single) +M:System.MathF.Round(System.Single) +M:System.MathF.Round(System.Single,System.Int32) +M:System.MathF.Round(System.Single,System.Int32,System.MidpointRounding) +M:System.MathF.Round(System.Single,System.MidpointRounding) +M:System.MathF.ScaleB(System.Single,System.Int32) +M:System.MathF.Sign(System.Single) +M:System.MathF.Sin(System.Single) +M:System.MathF.SinCos(System.Single) +M:System.MathF.Sinh(System.Single) +M:System.MathF.Sqrt(System.Single) +M:System.MathF.Tan(System.Single) +M:System.MathF.Tanh(System.Single) +F:System.MathF.Tau +M:System.MathF.Truncate(System.Single) +T:System.MemberAccessException +M:System.MemberAccessException.#ctor +M:System.MemberAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MemberAccessException.#ctor(System.String) +M:System.MemberAccessException.#ctor(System.String,System.Exception) +T:System.Memory`1 +M:System.Memory`1.#ctor(`0[]) +M:System.Memory`1.#ctor(`0[],System.Int32,System.Int32) +M:System.Memory`1.CopyTo(System.Memory{`0}) +M:System.Memory`1.Equals(System.Memory{`0}) +M:System.Memory`1.Equals(System.Object) +M:System.Memory`1.GetHashCode +M:System.Memory`1.Pin +M:System.Memory`1.Slice(System.Int32) +M:System.Memory`1.Slice(System.Int32,System.Int32) +M:System.Memory`1.ToArray +M:System.Memory`1.ToString +M:System.Memory`1.TryCopyTo(System.Memory{`0}) +M:System.Memory`1.get_Empty +M:System.Memory`1.get_IsEmpty +M:System.Memory`1.get_Length +M:System.Memory`1.get_Span +M:System.Memory`1.op_Implicit(System.ArraySegment{`0})~System.Memory{`0} +M:System.Memory`1.op_Implicit(System.Memory{`0})~System.ReadOnlyMemory{`0} +M:System.Memory`1.op_Implicit(`0[])~System.Memory{`0} +T:System.MethodAccessException +M:System.MethodAccessException.#ctor +M:System.MethodAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MethodAccessException.#ctor(System.String) +M:System.MethodAccessException.#ctor(System.String,System.Exception) +T:System.MidpointRounding +F:System.MidpointRounding.AwayFromZero +F:System.MidpointRounding.ToEven +F:System.MidpointRounding.ToNegativeInfinity +F:System.MidpointRounding.ToPositiveInfinity +F:System.MidpointRounding.ToZero +T:System.MissingFieldException +M:System.MissingFieldException.#ctor +M:System.MissingFieldException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MissingFieldException.#ctor(System.String) +M:System.MissingFieldException.#ctor(System.String,System.Exception) +M:System.MissingFieldException.#ctor(System.String,System.String) +M:System.MissingFieldException.get_Message +T:System.MissingMemberException +M:System.MissingMemberException.#ctor +M:System.MissingMemberException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MissingMemberException.#ctor(System.String) +M:System.MissingMemberException.#ctor(System.String,System.Exception) +M:System.MissingMemberException.#ctor(System.String,System.String) +F:System.MissingMemberException.ClassName +M:System.MissingMemberException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +F:System.MissingMemberException.MemberName +F:System.MissingMemberException.Signature +M:System.MissingMemberException.get_Message +T:System.MissingMethodException +M:System.MissingMethodException.#ctor +M:System.MissingMethodException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MissingMethodException.#ctor(System.String) +M:System.MissingMethodException.#ctor(System.String,System.Exception) +M:System.MissingMethodException.#ctor(System.String,System.String) +M:System.MissingMethodException.get_Message +T:System.MulticastDelegate +M:System.MulticastDelegate.#ctor(System.Object,System.String) +M:System.MulticastDelegate.#ctor(System.Type,System.String) +M:System.MulticastDelegate.CombineImpl(System.Delegate) +M:System.MulticastDelegate.Equals(System.Object) +M:System.MulticastDelegate.GetHashCode +M:System.MulticastDelegate.GetInvocationList +M:System.MulticastDelegate.GetMethodImpl +M:System.MulticastDelegate.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MulticastDelegate.RemoveImpl(System.Delegate) +M:System.MulticastDelegate.op_Equality(System.MulticastDelegate,System.MulticastDelegate) +M:System.MulticastDelegate.op_Inequality(System.MulticastDelegate,System.MulticastDelegate) +T:System.MulticastNotSupportedException +M:System.MulticastNotSupportedException.#ctor +M:System.MulticastNotSupportedException.#ctor(System.String) +M:System.MulticastNotSupportedException.#ctor(System.String,System.Exception) +T:System.NetPipeStyleUriParser +M:System.NetPipeStyleUriParser.#ctor +T:System.NetTcpStyleUriParser +M:System.NetTcpStyleUriParser.#ctor +T:System.NewsStyleUriParser +M:System.NewsStyleUriParser.#ctor +T:System.NonSerializedAttribute +M:System.NonSerializedAttribute.#ctor +T:System.NotFiniteNumberException +M:System.NotFiniteNumberException.#ctor +M:System.NotFiniteNumberException.#ctor(System.Double) +M:System.NotFiniteNumberException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.NotFiniteNumberException.#ctor(System.String) +M:System.NotFiniteNumberException.#ctor(System.String,System.Double) +M:System.NotFiniteNumberException.#ctor(System.String,System.Double,System.Exception) +M:System.NotFiniteNumberException.#ctor(System.String,System.Exception) +M:System.NotFiniteNumberException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.NotFiniteNumberException.get_OffendingNumber +T:System.NotImplementedException +M:System.NotImplementedException.#ctor +M:System.NotImplementedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.NotImplementedException.#ctor(System.String) +M:System.NotImplementedException.#ctor(System.String,System.Exception) +T:System.NotSupportedException +M:System.NotSupportedException.#ctor +M:System.NotSupportedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.NotSupportedException.#ctor(System.String) +M:System.NotSupportedException.#ctor(System.String,System.Exception) +T:System.NullReferenceException +M:System.NullReferenceException.#ctor +M:System.NullReferenceException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.NullReferenceException.#ctor(System.String) +M:System.NullReferenceException.#ctor(System.String,System.Exception) +T:System.Nullable +M:System.Nullable.Compare``1(System.Nullable{``0},System.Nullable{``0}) +M:System.Nullable.Equals``1(System.Nullable{``0},System.Nullable{``0}) +M:System.Nullable.GetUnderlyingType(System.Type) +M:System.Nullable.GetValueRefOrDefaultRef``1(System.Nullable{``0}@) +T:System.Nullable`1 +M:System.Nullable`1.#ctor(`0) +M:System.Nullable`1.Equals(System.Object) +M:System.Nullable`1.GetHashCode +M:System.Nullable`1.GetValueOrDefault +M:System.Nullable`1.GetValueOrDefault(`0) +M:System.Nullable`1.ToString +M:System.Nullable`1.get_HasValue +M:System.Nullable`1.get_Value +M:System.Nullable`1.op_Explicit(System.Nullable{`0})~`0 +M:System.Nullable`1.op_Implicit(`0)~System.Nullable{`0} +T:System.Numerics.BitOperations +M:System.Numerics.BitOperations.Crc32C(System.UInt32,System.Byte) +M:System.Numerics.BitOperations.Crc32C(System.UInt32,System.UInt16) +M:System.Numerics.BitOperations.Crc32C(System.UInt32,System.UInt32) +M:System.Numerics.BitOperations.Crc32C(System.UInt32,System.UInt64) +M:System.Numerics.BitOperations.IsPow2(System.Int32) +M:System.Numerics.BitOperations.IsPow2(System.Int64) +M:System.Numerics.BitOperations.IsPow2(System.IntPtr) +M:System.Numerics.BitOperations.IsPow2(System.UInt32) +M:System.Numerics.BitOperations.IsPow2(System.UInt64) +M:System.Numerics.BitOperations.IsPow2(System.UIntPtr) +M:System.Numerics.BitOperations.LeadingZeroCount(System.UInt32) +M:System.Numerics.BitOperations.LeadingZeroCount(System.UInt64) +M:System.Numerics.BitOperations.LeadingZeroCount(System.UIntPtr) +M:System.Numerics.BitOperations.Log2(System.UInt32) +M:System.Numerics.BitOperations.Log2(System.UInt64) +M:System.Numerics.BitOperations.Log2(System.UIntPtr) +M:System.Numerics.BitOperations.PopCount(System.UInt32) +M:System.Numerics.BitOperations.PopCount(System.UInt64) +M:System.Numerics.BitOperations.PopCount(System.UIntPtr) +M:System.Numerics.BitOperations.RotateLeft(System.UInt32,System.Int32) +M:System.Numerics.BitOperations.RotateLeft(System.UInt64,System.Int32) +M:System.Numerics.BitOperations.RotateLeft(System.UIntPtr,System.Int32) +M:System.Numerics.BitOperations.RotateRight(System.UInt32,System.Int32) +M:System.Numerics.BitOperations.RotateRight(System.UInt64,System.Int32) +M:System.Numerics.BitOperations.RotateRight(System.UIntPtr,System.Int32) +M:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UInt32) +M:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UInt64) +M:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UIntPtr) +M:System.Numerics.BitOperations.TrailingZeroCount(System.Int32) +M:System.Numerics.BitOperations.TrailingZeroCount(System.Int64) +M:System.Numerics.BitOperations.TrailingZeroCount(System.IntPtr) +M:System.Numerics.BitOperations.TrailingZeroCount(System.UInt32) +M:System.Numerics.BitOperations.TrailingZeroCount(System.UInt64) +M:System.Numerics.BitOperations.TrailingZeroCount(System.UIntPtr) +T:System.Numerics.IAdditionOperators`3 +M:System.Numerics.IAdditionOperators`3.op_Addition(`0,`1) +M:System.Numerics.IAdditionOperators`3.op_CheckedAddition(`0,`1) +T:System.Numerics.IAdditiveIdentity`2 +M:System.Numerics.IAdditiveIdentity`2.get_AdditiveIdentity +T:System.Numerics.IBinaryFloatingPointIeee754`1 +T:System.Numerics.IBinaryInteger`1 +M:System.Numerics.IBinaryInteger`1.DivRem(`0,`0) +M:System.Numerics.IBinaryInteger`1.GetByteCount +M:System.Numerics.IBinaryInteger`1.GetShortestBitLength +M:System.Numerics.IBinaryInteger`1.LeadingZeroCount(`0) +M:System.Numerics.IBinaryInteger`1.PopCount(`0) +M:System.Numerics.IBinaryInteger`1.ReadBigEndian(System.Byte[],System.Boolean) +M:System.Numerics.IBinaryInteger`1.ReadBigEndian(System.Byte[],System.Int32,System.Boolean) +M:System.Numerics.IBinaryInteger`1.ReadBigEndian(System.ReadOnlySpan{System.Byte},System.Boolean) +M:System.Numerics.IBinaryInteger`1.ReadLittleEndian(System.Byte[],System.Boolean) +M:System.Numerics.IBinaryInteger`1.ReadLittleEndian(System.Byte[],System.Int32,System.Boolean) +M:System.Numerics.IBinaryInteger`1.ReadLittleEndian(System.ReadOnlySpan{System.Byte},System.Boolean) +M:System.Numerics.IBinaryInteger`1.RotateLeft(`0,System.Int32) +M:System.Numerics.IBinaryInteger`1.RotateRight(`0,System.Int32) +M:System.Numerics.IBinaryInteger`1.TrailingZeroCount(`0) +M:System.Numerics.IBinaryInteger`1.TryReadBigEndian(System.ReadOnlySpan{System.Byte},System.Boolean,`0@) +M:System.Numerics.IBinaryInteger`1.TryReadLittleEndian(System.ReadOnlySpan{System.Byte},System.Boolean,`0@) +M:System.Numerics.IBinaryInteger`1.TryWriteBigEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IBinaryInteger`1.TryWriteLittleEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IBinaryInteger`1.WriteBigEndian(System.Byte[]) +M:System.Numerics.IBinaryInteger`1.WriteBigEndian(System.Byte[],System.Int32) +M:System.Numerics.IBinaryInteger`1.WriteBigEndian(System.Span{System.Byte}) +M:System.Numerics.IBinaryInteger`1.WriteLittleEndian(System.Byte[]) +M:System.Numerics.IBinaryInteger`1.WriteLittleEndian(System.Byte[],System.Int32) +M:System.Numerics.IBinaryInteger`1.WriteLittleEndian(System.Span{System.Byte}) +T:System.Numerics.IBinaryNumber`1 +M:System.Numerics.IBinaryNumber`1.IsPow2(`0) +M:System.Numerics.IBinaryNumber`1.Log2(`0) +M:System.Numerics.IBinaryNumber`1.get_AllBitsSet +T:System.Numerics.IBitwiseOperators`3 +M:System.Numerics.IBitwiseOperators`3.op_BitwiseAnd(`0,`1) +M:System.Numerics.IBitwiseOperators`3.op_BitwiseOr(`0,`1) +M:System.Numerics.IBitwiseOperators`3.op_ExclusiveOr(`0,`1) +M:System.Numerics.IBitwiseOperators`3.op_OnesComplement(`0) +T:System.Numerics.IComparisonOperators`3 +M:System.Numerics.IComparisonOperators`3.op_GreaterThan(`0,`1) +M:System.Numerics.IComparisonOperators`3.op_GreaterThanOrEqual(`0,`1) +M:System.Numerics.IComparisonOperators`3.op_LessThan(`0,`1) +M:System.Numerics.IComparisonOperators`3.op_LessThanOrEqual(`0,`1) +T:System.Numerics.IDecrementOperators`1 +M:System.Numerics.IDecrementOperators`1.op_CheckedDecrement(`0) +M:System.Numerics.IDecrementOperators`1.op_Decrement(`0) +T:System.Numerics.IDivisionOperators`3 +M:System.Numerics.IDivisionOperators`3.op_CheckedDivision(`0,`1) +M:System.Numerics.IDivisionOperators`3.op_Division(`0,`1) +T:System.Numerics.IEqualityOperators`3 +M:System.Numerics.IEqualityOperators`3.op_Equality(`0,`1) +M:System.Numerics.IEqualityOperators`3.op_Inequality(`0,`1) +T:System.Numerics.IExponentialFunctions`1 +M:System.Numerics.IExponentialFunctions`1.Exp(`0) +M:System.Numerics.IExponentialFunctions`1.Exp10(`0) +M:System.Numerics.IExponentialFunctions`1.Exp10M1(`0) +M:System.Numerics.IExponentialFunctions`1.Exp2(`0) +M:System.Numerics.IExponentialFunctions`1.Exp2M1(`0) +M:System.Numerics.IExponentialFunctions`1.ExpM1(`0) +T:System.Numerics.IFloatingPointConstants`1 +M:System.Numerics.IFloatingPointConstants`1.get_E +M:System.Numerics.IFloatingPointConstants`1.get_Pi +M:System.Numerics.IFloatingPointConstants`1.get_Tau +T:System.Numerics.IFloatingPointIeee754`1 +M:System.Numerics.IFloatingPointIeee754`1.Atan2(`0,`0) +M:System.Numerics.IFloatingPointIeee754`1.Atan2Pi(`0,`0) +M:System.Numerics.IFloatingPointIeee754`1.BitDecrement(`0) +M:System.Numerics.IFloatingPointIeee754`1.BitIncrement(`0) +M:System.Numerics.IFloatingPointIeee754`1.FusedMultiplyAdd(`0,`0,`0) +M:System.Numerics.IFloatingPointIeee754`1.ILogB(`0) +M:System.Numerics.IFloatingPointIeee754`1.Ieee754Remainder(`0,`0) +M:System.Numerics.IFloatingPointIeee754`1.Lerp(`0,`0,`0) +M:System.Numerics.IFloatingPointIeee754`1.ReciprocalEstimate(`0) +M:System.Numerics.IFloatingPointIeee754`1.ReciprocalSqrtEstimate(`0) +M:System.Numerics.IFloatingPointIeee754`1.ScaleB(`0,System.Int32) +M:System.Numerics.IFloatingPointIeee754`1.get_Epsilon +M:System.Numerics.IFloatingPointIeee754`1.get_NaN +M:System.Numerics.IFloatingPointIeee754`1.get_NegativeInfinity +M:System.Numerics.IFloatingPointIeee754`1.get_NegativeZero +M:System.Numerics.IFloatingPointIeee754`1.get_PositiveInfinity +T:System.Numerics.IFloatingPoint`1 +M:System.Numerics.IFloatingPoint`1.Ceiling(`0) +M:System.Numerics.IFloatingPoint`1.Floor(`0) +M:System.Numerics.IFloatingPoint`1.GetExponentByteCount +M:System.Numerics.IFloatingPoint`1.GetExponentShortestBitLength +M:System.Numerics.IFloatingPoint`1.GetSignificandBitLength +M:System.Numerics.IFloatingPoint`1.GetSignificandByteCount +M:System.Numerics.IFloatingPoint`1.Round(`0) +M:System.Numerics.IFloatingPoint`1.Round(`0,System.Int32) +M:System.Numerics.IFloatingPoint`1.Round(`0,System.Int32,System.MidpointRounding) +M:System.Numerics.IFloatingPoint`1.Round(`0,System.MidpointRounding) +M:System.Numerics.IFloatingPoint`1.Truncate(`0) +M:System.Numerics.IFloatingPoint`1.TryWriteExponentBigEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IFloatingPoint`1.TryWriteExponentLittleEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IFloatingPoint`1.TryWriteSignificandBigEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IFloatingPoint`1.TryWriteSignificandLittleEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IFloatingPoint`1.WriteExponentBigEndian(System.Byte[]) +M:System.Numerics.IFloatingPoint`1.WriteExponentBigEndian(System.Byte[],System.Int32) +M:System.Numerics.IFloatingPoint`1.WriteExponentBigEndian(System.Span{System.Byte}) +M:System.Numerics.IFloatingPoint`1.WriteExponentLittleEndian(System.Byte[]) +M:System.Numerics.IFloatingPoint`1.WriteExponentLittleEndian(System.Byte[],System.Int32) +M:System.Numerics.IFloatingPoint`1.WriteExponentLittleEndian(System.Span{System.Byte}) +M:System.Numerics.IFloatingPoint`1.WriteSignificandBigEndian(System.Byte[]) +M:System.Numerics.IFloatingPoint`1.WriteSignificandBigEndian(System.Byte[],System.Int32) +M:System.Numerics.IFloatingPoint`1.WriteSignificandBigEndian(System.Span{System.Byte}) +M:System.Numerics.IFloatingPoint`1.WriteSignificandLittleEndian(System.Byte[]) +M:System.Numerics.IFloatingPoint`1.WriteSignificandLittleEndian(System.Byte[],System.Int32) +M:System.Numerics.IFloatingPoint`1.WriteSignificandLittleEndian(System.Span{System.Byte}) +T:System.Numerics.IHyperbolicFunctions`1 +M:System.Numerics.IHyperbolicFunctions`1.Acosh(`0) +M:System.Numerics.IHyperbolicFunctions`1.Asinh(`0) +M:System.Numerics.IHyperbolicFunctions`1.Atanh(`0) +M:System.Numerics.IHyperbolicFunctions`1.Cosh(`0) +M:System.Numerics.IHyperbolicFunctions`1.Sinh(`0) +M:System.Numerics.IHyperbolicFunctions`1.Tanh(`0) +T:System.Numerics.IIncrementOperators`1 +M:System.Numerics.IIncrementOperators`1.op_CheckedIncrement(`0) +M:System.Numerics.IIncrementOperators`1.op_Increment(`0) +T:System.Numerics.ILogarithmicFunctions`1 +M:System.Numerics.ILogarithmicFunctions`1.Log(`0) +M:System.Numerics.ILogarithmicFunctions`1.Log(`0,`0) +M:System.Numerics.ILogarithmicFunctions`1.Log10(`0) +M:System.Numerics.ILogarithmicFunctions`1.Log10P1(`0) +M:System.Numerics.ILogarithmicFunctions`1.Log2(`0) +M:System.Numerics.ILogarithmicFunctions`1.Log2P1(`0) +M:System.Numerics.ILogarithmicFunctions`1.LogP1(`0) +T:System.Numerics.IMinMaxValue`1 +M:System.Numerics.IMinMaxValue`1.get_MaxValue +M:System.Numerics.IMinMaxValue`1.get_MinValue +T:System.Numerics.IModulusOperators`3 +M:System.Numerics.IModulusOperators`3.op_Modulus(`0,`1) +T:System.Numerics.IMultiplicativeIdentity`2 +M:System.Numerics.IMultiplicativeIdentity`2.get_MultiplicativeIdentity +T:System.Numerics.IMultiplyOperators`3 +M:System.Numerics.IMultiplyOperators`3.op_CheckedMultiply(`0,`1) +M:System.Numerics.IMultiplyOperators`3.op_Multiply(`0,`1) +T:System.Numerics.INumberBase`1 +M:System.Numerics.INumberBase`1.Abs(`0) +M:System.Numerics.INumberBase`1.CreateChecked``1(``0) +M:System.Numerics.INumberBase`1.CreateSaturating``1(``0) +M:System.Numerics.INumberBase`1.CreateTruncating``1(``0) +M:System.Numerics.INumberBase`1.IsCanonical(`0) +M:System.Numerics.INumberBase`1.IsComplexNumber(`0) +M:System.Numerics.INumberBase`1.IsEvenInteger(`0) +M:System.Numerics.INumberBase`1.IsFinite(`0) +M:System.Numerics.INumberBase`1.IsImaginaryNumber(`0) +M:System.Numerics.INumberBase`1.IsInfinity(`0) +M:System.Numerics.INumberBase`1.IsInteger(`0) +M:System.Numerics.INumberBase`1.IsNaN(`0) +M:System.Numerics.INumberBase`1.IsNegative(`0) +M:System.Numerics.INumberBase`1.IsNegativeInfinity(`0) +M:System.Numerics.INumberBase`1.IsNormal(`0) +M:System.Numerics.INumberBase`1.IsOddInteger(`0) +M:System.Numerics.INumberBase`1.IsPositive(`0) +M:System.Numerics.INumberBase`1.IsPositiveInfinity(`0) +M:System.Numerics.INumberBase`1.IsRealNumber(`0) +M:System.Numerics.INumberBase`1.IsSubnormal(`0) +M:System.Numerics.INumberBase`1.IsZero(`0) +M:System.Numerics.INumberBase`1.MaxMagnitude(`0,`0) +M:System.Numerics.INumberBase`1.MaxMagnitudeNumber(`0,`0) +M:System.Numerics.INumberBase`1.MinMagnitude(`0,`0) +M:System.Numerics.INumberBase`1.MinMagnitudeNumber(`0,`0) +M:System.Numerics.INumberBase`1.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Numerics.INumberBase`1.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Numerics.INumberBase`1.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Numerics.INumberBase`1.TryConvertFromChecked``1(``0,`0@) +M:System.Numerics.INumberBase`1.TryConvertFromSaturating``1(``0,`0@) +M:System.Numerics.INumberBase`1.TryConvertFromTruncating``1(``0,`0@) +M:System.Numerics.INumberBase`1.TryConvertToChecked``1(`0,``0@) +M:System.Numerics.INumberBase`1.TryConvertToSaturating``1(`0,``0@) +M:System.Numerics.INumberBase`1.TryConvertToTruncating``1(`0,``0@) +M:System.Numerics.INumberBase`1.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,`0@) +M:System.Numerics.INumberBase`1.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,`0@) +M:System.Numerics.INumberBase`1.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,`0@) +M:System.Numerics.INumberBase`1.get_One +M:System.Numerics.INumberBase`1.get_Radix +M:System.Numerics.INumberBase`1.get_Zero +T:System.Numerics.INumber`1 +M:System.Numerics.INumber`1.Clamp(`0,`0,`0) +M:System.Numerics.INumber`1.CopySign(`0,`0) +M:System.Numerics.INumber`1.Max(`0,`0) +M:System.Numerics.INumber`1.MaxNumber(`0,`0) +M:System.Numerics.INumber`1.Min(`0,`0) +M:System.Numerics.INumber`1.MinNumber(`0,`0) +M:System.Numerics.INumber`1.Sign(`0) +T:System.Numerics.IPowerFunctions`1 +M:System.Numerics.IPowerFunctions`1.Pow(`0,`0) +T:System.Numerics.IRootFunctions`1 +M:System.Numerics.IRootFunctions`1.Cbrt(`0) +M:System.Numerics.IRootFunctions`1.Hypot(`0,`0) +M:System.Numerics.IRootFunctions`1.RootN(`0,System.Int32) +M:System.Numerics.IRootFunctions`1.Sqrt(`0) +T:System.Numerics.IShiftOperators`3 +M:System.Numerics.IShiftOperators`3.op_LeftShift(`0,`1) +M:System.Numerics.IShiftOperators`3.op_RightShift(`0,`1) +M:System.Numerics.IShiftOperators`3.op_UnsignedRightShift(`0,`1) +T:System.Numerics.ISignedNumber`1 +M:System.Numerics.ISignedNumber`1.get_NegativeOne +T:System.Numerics.ISubtractionOperators`3 +M:System.Numerics.ISubtractionOperators`3.op_CheckedSubtraction(`0,`1) +M:System.Numerics.ISubtractionOperators`3.op_Subtraction(`0,`1) +T:System.Numerics.ITrigonometricFunctions`1 +M:System.Numerics.ITrigonometricFunctions`1.Acos(`0) +M:System.Numerics.ITrigonometricFunctions`1.AcosPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.Asin(`0) +M:System.Numerics.ITrigonometricFunctions`1.AsinPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.Atan(`0) +M:System.Numerics.ITrigonometricFunctions`1.AtanPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.Cos(`0) +M:System.Numerics.ITrigonometricFunctions`1.CosPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.DegreesToRadians(`0) +M:System.Numerics.ITrigonometricFunctions`1.RadiansToDegrees(`0) +M:System.Numerics.ITrigonometricFunctions`1.Sin(`0) +M:System.Numerics.ITrigonometricFunctions`1.SinCos(`0) +M:System.Numerics.ITrigonometricFunctions`1.SinCosPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.SinPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.Tan(`0) +M:System.Numerics.ITrigonometricFunctions`1.TanPi(`0) +T:System.Numerics.IUnaryNegationOperators`2 +M:System.Numerics.IUnaryNegationOperators`2.op_CheckedUnaryNegation(`0) +M:System.Numerics.IUnaryNegationOperators`2.op_UnaryNegation(`0) +T:System.Numerics.IUnaryPlusOperators`2 +M:System.Numerics.IUnaryPlusOperators`2.op_UnaryPlus(`0) +T:System.Numerics.IUnsignedNumber`1 +T:System.Numerics.TotalOrderIeee754Comparer`1 +M:System.Numerics.TotalOrderIeee754Comparer`1.Compare(`0,`0) +M:System.Numerics.TotalOrderIeee754Comparer`1.Equals(System.Numerics.TotalOrderIeee754Comparer{`0}) +M:System.Numerics.TotalOrderIeee754Comparer`1.Equals(System.Object) +M:System.Numerics.TotalOrderIeee754Comparer`1.Equals(`0,`0) +M:System.Numerics.TotalOrderIeee754Comparer`1.GetHashCode +M:System.Numerics.TotalOrderIeee754Comparer`1.GetHashCode(`0) +T:System.Object +M:System.Object.#ctor +M:System.Object.Equals(System.Object) +M:System.Object.Equals(System.Object,System.Object) +M:System.Object.Finalize +M:System.Object.GetHashCode +M:System.Object.GetType +M:System.Object.MemberwiseClone +M:System.Object.ReferenceEquals(System.Object,System.Object) +M:System.Object.ToString +T:System.ObjectDisposedException +M:System.ObjectDisposedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ObjectDisposedException.#ctor(System.String) +M:System.ObjectDisposedException.#ctor(System.String,System.Exception) +M:System.ObjectDisposedException.#ctor(System.String,System.String) +M:System.ObjectDisposedException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ObjectDisposedException.ThrowIf(System.Boolean,System.Object) +M:System.ObjectDisposedException.ThrowIf(System.Boolean,System.Type) +M:System.ObjectDisposedException.get_Message +M:System.ObjectDisposedException.get_ObjectName +T:System.ObsoleteAttribute +M:System.ObsoleteAttribute.#ctor +M:System.ObsoleteAttribute.#ctor(System.String) +M:System.ObsoleteAttribute.#ctor(System.String,System.Boolean) +M:System.ObsoleteAttribute.get_DiagnosticId +M:System.ObsoleteAttribute.get_IsError +M:System.ObsoleteAttribute.get_Message +M:System.ObsoleteAttribute.get_UrlFormat +M:System.ObsoleteAttribute.set_DiagnosticId(System.String) +M:System.ObsoleteAttribute.set_UrlFormat(System.String) +T:System.OperatingSystem +M:System.OperatingSystem.#ctor(System.PlatformID,System.Version) +M:System.OperatingSystem.Clone +M:System.OperatingSystem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.OperatingSystem.IsAndroid +M:System.OperatingSystem.IsAndroidVersionAtLeast(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsBrowser +M:System.OperatingSystem.IsFreeBSD +M:System.OperatingSystem.IsFreeBSDVersionAtLeast(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsIOS +M:System.OperatingSystem.IsIOSVersionAtLeast(System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsLinux +M:System.OperatingSystem.IsMacCatalyst +M:System.OperatingSystem.IsMacCatalystVersionAtLeast(System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsMacOS +M:System.OperatingSystem.IsMacOSVersionAtLeast(System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsOSPlatform(System.String) +M:System.OperatingSystem.IsOSPlatformVersionAtLeast(System.String,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsTvOS +M:System.OperatingSystem.IsTvOSVersionAtLeast(System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsWasi +M:System.OperatingSystem.IsWatchOS +M:System.OperatingSystem.IsWatchOSVersionAtLeast(System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsWindows +M:System.OperatingSystem.IsWindowsVersionAtLeast(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.ToString +M:System.OperatingSystem.get_Platform +M:System.OperatingSystem.get_ServicePack +M:System.OperatingSystem.get_Version +M:System.OperatingSystem.get_VersionString +T:System.OperationCanceledException +M:System.OperationCanceledException.#ctor +M:System.OperationCanceledException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.OperationCanceledException.#ctor(System.String) +M:System.OperationCanceledException.#ctor(System.String,System.Exception) +M:System.OperationCanceledException.#ctor(System.String,System.Exception,System.Threading.CancellationToken) +M:System.OperationCanceledException.#ctor(System.String,System.Threading.CancellationToken) +M:System.OperationCanceledException.#ctor(System.Threading.CancellationToken) +M:System.OperationCanceledException.get_CancellationToken +T:System.OutOfMemoryException +M:System.OutOfMemoryException.#ctor +M:System.OutOfMemoryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.OutOfMemoryException.#ctor(System.String) +M:System.OutOfMemoryException.#ctor(System.String,System.Exception) +T:System.OverflowException +M:System.OverflowException.#ctor +M:System.OverflowException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.OverflowException.#ctor(System.String) +M:System.OverflowException.#ctor(System.String,System.Exception) +T:System.ParamArrayAttribute +M:System.ParamArrayAttribute.#ctor +T:System.PlatformID +F:System.PlatformID.MacOSX +F:System.PlatformID.Other +F:System.PlatformID.Unix +F:System.PlatformID.Win32NT +F:System.PlatformID.Win32S +F:System.PlatformID.Win32Windows +F:System.PlatformID.WinCE +F:System.PlatformID.Xbox +T:System.PlatformNotSupportedException +M:System.PlatformNotSupportedException.#ctor +M:System.PlatformNotSupportedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.PlatformNotSupportedException.#ctor(System.String) +M:System.PlatformNotSupportedException.#ctor(System.String,System.Exception) +T:System.Predicate`1 +M:System.Predicate`1.#ctor(System.Object,System.IntPtr) +M:System.Predicate`1.BeginInvoke(`0,System.AsyncCallback,System.Object) +M:System.Predicate`1.EndInvoke(System.IAsyncResult) +M:System.Predicate`1.Invoke(`0) +T:System.Progress`1 +M:System.Progress`1.#ctor +M:System.Progress`1.#ctor(System.Action{`0}) +M:System.Progress`1.OnReport(`0) +M:System.Progress`1.add_ProgressChanged(System.EventHandler{`0}) +M:System.Progress`1.remove_ProgressChanged(System.EventHandler{`0}) +T:System.Random +M:System.Random.#ctor +M:System.Random.#ctor(System.Int32) +M:System.Random.GetItems``1(System.ReadOnlySpan{``0},System.Int32) +M:System.Random.GetItems``1(System.ReadOnlySpan{``0},System.Span{``0}) +M:System.Random.GetItems``1(``0[],System.Int32) +M:System.Random.Next +M:System.Random.Next(System.Int32) +M:System.Random.Next(System.Int32,System.Int32) +M:System.Random.NextBytes(System.Byte[]) +M:System.Random.NextBytes(System.Span{System.Byte}) +M:System.Random.NextDouble +M:System.Random.NextInt64 +M:System.Random.NextInt64(System.Int64) +M:System.Random.NextInt64(System.Int64,System.Int64) +M:System.Random.NextSingle +M:System.Random.Sample +M:System.Random.Shuffle``1(System.Span{``0}) +M:System.Random.Shuffle``1(``0[]) +M:System.Random.get_Shared +T:System.Range +M:System.Range.#ctor(System.Index,System.Index) +M:System.Range.EndAt(System.Index) +M:System.Range.Equals(System.Object) +M:System.Range.Equals(System.Range) +M:System.Range.GetHashCode +M:System.Range.GetOffsetAndLength(System.Int32) +M:System.Range.StartAt(System.Index) +M:System.Range.ToString +M:System.Range.get_All +M:System.Range.get_End +M:System.Range.get_Start +T:System.RankException +M:System.RankException.#ctor +M:System.RankException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.RankException.#ctor(System.String) +M:System.RankException.#ctor(System.String,System.Exception) +T:System.ReadOnlyMemory`1 +M:System.ReadOnlyMemory`1.#ctor(`0[]) +M:System.ReadOnlyMemory`1.#ctor(`0[],System.Int32,System.Int32) +M:System.ReadOnlyMemory`1.CopyTo(System.Memory{`0}) +M:System.ReadOnlyMemory`1.Equals(System.Object) +M:System.ReadOnlyMemory`1.Equals(System.ReadOnlyMemory{`0}) +M:System.ReadOnlyMemory`1.GetHashCode +M:System.ReadOnlyMemory`1.Pin +M:System.ReadOnlyMemory`1.Slice(System.Int32) +M:System.ReadOnlyMemory`1.Slice(System.Int32,System.Int32) +M:System.ReadOnlyMemory`1.ToArray +M:System.ReadOnlyMemory`1.ToString +M:System.ReadOnlyMemory`1.TryCopyTo(System.Memory{`0}) +M:System.ReadOnlyMemory`1.get_Empty +M:System.ReadOnlyMemory`1.get_IsEmpty +M:System.ReadOnlyMemory`1.get_Length +M:System.ReadOnlyMemory`1.get_Span +M:System.ReadOnlyMemory`1.op_Implicit(System.ArraySegment{`0})~System.ReadOnlyMemory{`0} +M:System.ReadOnlyMemory`1.op_Implicit(`0[])~System.ReadOnlyMemory{`0} +T:System.ReadOnlySpan`1 +M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32) +M:System.ReadOnlySpan`1.#ctor(`0@) +M:System.ReadOnlySpan`1.#ctor(`0[]) +M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32) +M:System.ReadOnlySpan`1.CopyTo(System.Span{`0}) +T:System.ReadOnlySpan`1.Enumerator +M:System.ReadOnlySpan`1.Enumerator.MoveNext +M:System.ReadOnlySpan`1.Enumerator.get_Current +M:System.ReadOnlySpan`1.Equals(System.Object) +M:System.ReadOnlySpan`1.GetEnumerator +M:System.ReadOnlySpan`1.GetHashCode +M:System.ReadOnlySpan`1.GetPinnableReference +M:System.ReadOnlySpan`1.Slice(System.Int32) +M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32) +M:System.ReadOnlySpan`1.ToArray +M:System.ReadOnlySpan`1.ToString +M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0}) +M:System.ReadOnlySpan`1.get_Empty +M:System.ReadOnlySpan`1.get_IsEmpty +M:System.ReadOnlySpan`1.get_Item(System.Int32) +M:System.ReadOnlySpan`1.get_Length +M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0}) +M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{`0})~System.ReadOnlySpan{`0} +M:System.ReadOnlySpan`1.op_Implicit(`0[])~System.ReadOnlySpan{`0} +M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0}) +T:System.ResolveEventArgs +M:System.ResolveEventArgs.#ctor(System.String) +M:System.ResolveEventArgs.#ctor(System.String,System.Reflection.Assembly) +M:System.ResolveEventArgs.get_Name +M:System.ResolveEventArgs.get_RequestingAssembly +T:System.ResolveEventHandler +M:System.ResolveEventHandler.#ctor(System.Object,System.IntPtr) +M:System.ResolveEventHandler.BeginInvoke(System.Object,System.ResolveEventArgs,System.AsyncCallback,System.Object) +M:System.ResolveEventHandler.EndInvoke(System.IAsyncResult) +M:System.ResolveEventHandler.Invoke(System.Object,System.ResolveEventArgs) +T:System.Runtime.CompilerServices.AccessedThroughPropertyAttribute +M:System.Runtime.CompilerServices.AccessedThroughPropertyAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.AccessedThroughPropertyAttribute.get_PropertyName +T:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder +M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Complete +M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create +M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.MoveNext``1(``0@) +T:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute +M:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute.#ctor(System.Type) +T:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute +M:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.#ctor(System.Type) +M:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.get_BuilderType +T:System.Runtime.CompilerServices.AsyncStateMachineAttribute +M:System.Runtime.CompilerServices.AsyncStateMachineAttribute.#ctor(System.Type) +T:System.Runtime.CompilerServices.AsyncTaskMethodBuilder +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Create +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.SetException(System.Exception) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.SetResult +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start``1(``0@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.get_Task +T:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.Create +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetException(System.Exception) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetResult(`0) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.Start``1(``0@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.get_Task +T:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.Create +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.SetException(System.Exception) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.SetResult +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.Start``1(``0@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.get_Task +T:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1 +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Create +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetException(System.Exception) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetResult(`0) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Start``1(``0@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.get_Task +T:System.Runtime.CompilerServices.AsyncVoidMethodBuilder +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Create +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.SetException(System.Exception) +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.SetResult +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start``1(``0@) +T:System.Runtime.CompilerServices.CallConvCdecl +M:System.Runtime.CompilerServices.CallConvCdecl.#ctor +T:System.Runtime.CompilerServices.CallConvFastcall +M:System.Runtime.CompilerServices.CallConvFastcall.#ctor +T:System.Runtime.CompilerServices.CallConvMemberFunction +M:System.Runtime.CompilerServices.CallConvMemberFunction.#ctor +T:System.Runtime.CompilerServices.CallConvStdcall +M:System.Runtime.CompilerServices.CallConvStdcall.#ctor +T:System.Runtime.CompilerServices.CallConvSuppressGCTransition +M:System.Runtime.CompilerServices.CallConvSuppressGCTransition.#ctor +T:System.Runtime.CompilerServices.CallConvThiscall +M:System.Runtime.CompilerServices.CallConvThiscall.#ctor +T:System.Runtime.CompilerServices.CallerArgumentExpressionAttribute +M:System.Runtime.CompilerServices.CallerArgumentExpressionAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.CallerArgumentExpressionAttribute.get_ParameterName +T:System.Runtime.CompilerServices.CallerFilePathAttribute +M:System.Runtime.CompilerServices.CallerFilePathAttribute.#ctor +T:System.Runtime.CompilerServices.CallerLineNumberAttribute +M:System.Runtime.CompilerServices.CallerLineNumberAttribute.#ctor +T:System.Runtime.CompilerServices.CallerMemberNameAttribute +M:System.Runtime.CompilerServices.CallerMemberNameAttribute.#ctor +T:System.Runtime.CompilerServices.CollectionBuilderAttribute +M:System.Runtime.CompilerServices.CollectionBuilderAttribute.#ctor(System.Type,System.String) +M:System.Runtime.CompilerServices.CollectionBuilderAttribute.get_BuilderType +M:System.Runtime.CompilerServices.CollectionBuilderAttribute.get_MethodName +T:System.Runtime.CompilerServices.CompilationRelaxations +F:System.Runtime.CompilerServices.CompilationRelaxations.NoStringInterning +T:System.Runtime.CompilerServices.CompilationRelaxationsAttribute +M:System.Runtime.CompilerServices.CompilationRelaxationsAttribute.#ctor(System.Int32) +M:System.Runtime.CompilerServices.CompilationRelaxationsAttribute.#ctor(System.Runtime.CompilerServices.CompilationRelaxations) +M:System.Runtime.CompilerServices.CompilationRelaxationsAttribute.get_CompilationRelaxations +T:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute +M:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.#ctor(System.String) +F:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.RefStructs +F:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.RequiredMembers +M:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.get_FeatureName +M:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.get_IsOptional +M:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.set_IsOptional(System.Boolean) +T:System.Runtime.CompilerServices.CompilerGeneratedAttribute +M:System.Runtime.CompilerServices.CompilerGeneratedAttribute.#ctor +T:System.Runtime.CompilerServices.CompilerGlobalScopeAttribute +M:System.Runtime.CompilerServices.CompilerGlobalScopeAttribute.#ctor +T:System.Runtime.CompilerServices.ConditionalWeakTable`2 +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.#ctor +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.Add(`0,`1) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.AddOrUpdate(`0,`1) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.Clear +T:System.Runtime.CompilerServices.ConditionalWeakTable`2.CreateValueCallback +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.CreateValueCallback.#ctor(System.Object,System.IntPtr) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.CreateValueCallback.BeginInvoke(`0,System.AsyncCallback,System.Object) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.CreateValueCallback.EndInvoke(System.IAsyncResult) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.CreateValueCallback.Invoke(`0) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.GetOrCreateValue(`0) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.GetValue(`0,System.Runtime.CompilerServices.ConditionalWeakTable{`0,`1}.CreateValueCallback) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.Remove(`0) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.TryAdd(`0,`1) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.TryGetValue(`0,`1@) +T:System.Runtime.CompilerServices.ConfiguredAsyncDisposable +M:System.Runtime.CompilerServices.ConfiguredAsyncDisposable.DisposeAsync +T:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1 +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.ConfigureAwait(System.Boolean) +T:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.DisposeAsync +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.MoveNextAsync +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.get_Current +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.GetAsyncEnumerator +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.WithCancellation(System.Threading.CancellationToken) +T:System.Runtime.CompilerServices.ConfiguredTaskAwaitable +T:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter +T:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 +T:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter +T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable +T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter.GetResult +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.GetAwaiter +T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1 +T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.GetAwaiter +T:System.Runtime.CompilerServices.CustomConstantAttribute +M:System.Runtime.CompilerServices.CustomConstantAttribute.#ctor +M:System.Runtime.CompilerServices.CustomConstantAttribute.get_Value +T:System.Runtime.CompilerServices.DateTimeConstantAttribute +M:System.Runtime.CompilerServices.DateTimeConstantAttribute.#ctor(System.Int64) +M:System.Runtime.CompilerServices.DateTimeConstantAttribute.get_Value +T:System.Runtime.CompilerServices.DecimalConstantAttribute +M:System.Runtime.CompilerServices.DecimalConstantAttribute.#ctor(System.Byte,System.Byte,System.Int32,System.Int32,System.Int32) +M:System.Runtime.CompilerServices.DecimalConstantAttribute.#ctor(System.Byte,System.Byte,System.UInt32,System.UInt32,System.UInt32) +M:System.Runtime.CompilerServices.DecimalConstantAttribute.get_Value +T:System.Runtime.CompilerServices.DefaultDependencyAttribute +M:System.Runtime.CompilerServices.DefaultDependencyAttribute.#ctor(System.Runtime.CompilerServices.LoadHint) +M:System.Runtime.CompilerServices.DefaultDependencyAttribute.get_LoadHint +T:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.#ctor(System.Int32,System.Int32) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.IFormatProvider) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.IFormatProvider,System.Span{System.Char}) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.Object,System.Int32,System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char}) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char},System.Int32,System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.String,System.Int32,System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted``1(``0) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32,System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted``1(``0,System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendLiteral(System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.ToString +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.ToStringAndClear +T:System.Runtime.CompilerServices.DependencyAttribute +M:System.Runtime.CompilerServices.DependencyAttribute.#ctor(System.String,System.Runtime.CompilerServices.LoadHint) +M:System.Runtime.CompilerServices.DependencyAttribute.get_DependentAssembly +M:System.Runtime.CompilerServices.DependencyAttribute.get_LoadHint +T:System.Runtime.CompilerServices.DisablePrivateReflectionAttribute +M:System.Runtime.CompilerServices.DisablePrivateReflectionAttribute.#ctor +T:System.Runtime.CompilerServices.DisableRuntimeMarshallingAttribute +M:System.Runtime.CompilerServices.DisableRuntimeMarshallingAttribute.#ctor +T:System.Runtime.CompilerServices.DiscardableAttribute +M:System.Runtime.CompilerServices.DiscardableAttribute.#ctor +T:System.Runtime.CompilerServices.EnumeratorCancellationAttribute +M:System.Runtime.CompilerServices.EnumeratorCancellationAttribute.#ctor +T:System.Runtime.CompilerServices.ExtensionAttribute +M:System.Runtime.CompilerServices.ExtensionAttribute.#ctor +T:System.Runtime.CompilerServices.FixedAddressValueTypeAttribute +M:System.Runtime.CompilerServices.FixedAddressValueTypeAttribute.#ctor +T:System.Runtime.CompilerServices.FixedBufferAttribute +M:System.Runtime.CompilerServices.FixedBufferAttribute.#ctor(System.Type,System.Int32) +M:System.Runtime.CompilerServices.FixedBufferAttribute.get_ElementType +M:System.Runtime.CompilerServices.FixedBufferAttribute.get_Length +T:System.Runtime.CompilerServices.FormattableStringFactory +M:System.Runtime.CompilerServices.FormattableStringFactory.Create(System.String,System.Object[]) +T:System.Runtime.CompilerServices.IAsyncStateMachine +M:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext +M:System.Runtime.CompilerServices.IAsyncStateMachine.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +T:System.Runtime.CompilerServices.ICriticalNotifyCompletion +M:System.Runtime.CompilerServices.ICriticalNotifyCompletion.UnsafeOnCompleted(System.Action) +T:System.Runtime.CompilerServices.INotifyCompletion +M:System.Runtime.CompilerServices.INotifyCompletion.OnCompleted(System.Action) +T:System.Runtime.CompilerServices.IStrongBox +M:System.Runtime.CompilerServices.IStrongBox.get_Value +M:System.Runtime.CompilerServices.IStrongBox.set_Value(System.Object) +T:System.Runtime.CompilerServices.ITuple +M:System.Runtime.CompilerServices.ITuple.get_Item(System.Int32) +M:System.Runtime.CompilerServices.ITuple.get_Length +T:System.Runtime.CompilerServices.IndexerNameAttribute +M:System.Runtime.CompilerServices.IndexerNameAttribute.#ctor(System.String) +T:System.Runtime.CompilerServices.InlineArrayAttribute +M:System.Runtime.CompilerServices.InlineArrayAttribute.#ctor(System.Int32) +M:System.Runtime.CompilerServices.InlineArrayAttribute.get_Length +T:System.Runtime.CompilerServices.InternalsVisibleToAttribute +M:System.Runtime.CompilerServices.InternalsVisibleToAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.InternalsVisibleToAttribute.get_AllInternalsVisible +M:System.Runtime.CompilerServices.InternalsVisibleToAttribute.get_AssemblyName +M:System.Runtime.CompilerServices.InternalsVisibleToAttribute.set_AllInternalsVisible(System.Boolean) +T:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute +M:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.#ctor(System.String[]) +M:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.get_Arguments +T:System.Runtime.CompilerServices.InterpolatedStringHandlerAttribute +M:System.Runtime.CompilerServices.InterpolatedStringHandlerAttribute.#ctor +T:System.Runtime.CompilerServices.IsByRefLikeAttribute +M:System.Runtime.CompilerServices.IsByRefLikeAttribute.#ctor +T:System.Runtime.CompilerServices.IsConst +T:System.Runtime.CompilerServices.IsExternalInit +T:System.Runtime.CompilerServices.IsReadOnlyAttribute +M:System.Runtime.CompilerServices.IsReadOnlyAttribute.#ctor +T:System.Runtime.CompilerServices.IsUnmanagedAttribute +M:System.Runtime.CompilerServices.IsUnmanagedAttribute.#ctor +T:System.Runtime.CompilerServices.IsVolatile +T:System.Runtime.CompilerServices.IteratorStateMachineAttribute +M:System.Runtime.CompilerServices.IteratorStateMachineAttribute.#ctor(System.Type) +T:System.Runtime.CompilerServices.LoadHint +F:System.Runtime.CompilerServices.LoadHint.Always +F:System.Runtime.CompilerServices.LoadHint.Default +F:System.Runtime.CompilerServices.LoadHint.Sometimes +T:System.Runtime.CompilerServices.MethodCodeType +F:System.Runtime.CompilerServices.MethodCodeType.IL +F:System.Runtime.CompilerServices.MethodCodeType.Native +F:System.Runtime.CompilerServices.MethodCodeType.OPTIL +F:System.Runtime.CompilerServices.MethodCodeType.Runtime +T:System.Runtime.CompilerServices.MethodImplAttribute +M:System.Runtime.CompilerServices.MethodImplAttribute.#ctor +M:System.Runtime.CompilerServices.MethodImplAttribute.#ctor(System.Int16) +M:System.Runtime.CompilerServices.MethodImplAttribute.#ctor(System.Runtime.CompilerServices.MethodImplOptions) +F:System.Runtime.CompilerServices.MethodImplAttribute.MethodCodeType +M:System.Runtime.CompilerServices.MethodImplAttribute.get_Value +T:System.Runtime.CompilerServices.ModuleInitializerAttribute +M:System.Runtime.CompilerServices.ModuleInitializerAttribute.#ctor +T:System.Runtime.CompilerServices.NullableAttribute +M:System.Runtime.CompilerServices.NullableAttribute.#ctor(System.Byte) +M:System.Runtime.CompilerServices.NullableAttribute.#ctor(System.Byte[]) +F:System.Runtime.CompilerServices.NullableAttribute.NullableFlags +T:System.Runtime.CompilerServices.NullableContextAttribute +M:System.Runtime.CompilerServices.NullableContextAttribute.#ctor(System.Byte) +F:System.Runtime.CompilerServices.NullableContextAttribute.Flag +T:System.Runtime.CompilerServices.NullablePublicOnlyAttribute +M:System.Runtime.CompilerServices.NullablePublicOnlyAttribute.#ctor(System.Boolean) +F:System.Runtime.CompilerServices.NullablePublicOnlyAttribute.IncludesInternals +T:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.Create +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.SetException(System.Exception) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.SetResult +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.Start``1(``0@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.get_Task +T:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1 +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.Create +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.SetException(System.Exception) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.SetResult(`0) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.Start``1(``0@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.get_Task +T:System.Runtime.CompilerServices.PreserveBaseOverridesAttribute +M:System.Runtime.CompilerServices.PreserveBaseOverridesAttribute.#ctor +T:System.Runtime.CompilerServices.RefSafetyRulesAttribute +M:System.Runtime.CompilerServices.RefSafetyRulesAttribute.#ctor(System.Int32) +M:System.Runtime.CompilerServices.RefSafetyRulesAttribute.get_Version +T:System.Runtime.CompilerServices.ReferenceAssemblyAttribute +M:System.Runtime.CompilerServices.ReferenceAssemblyAttribute.#ctor +M:System.Runtime.CompilerServices.ReferenceAssemblyAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.ReferenceAssemblyAttribute.get_Description +T:System.Runtime.CompilerServices.RequiredMemberAttribute +M:System.Runtime.CompilerServices.RequiredMemberAttribute.#ctor +T:System.Runtime.CompilerServices.RequiresLocationAttribute +M:System.Runtime.CompilerServices.RequiresLocationAttribute.#ctor +T:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute +M:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.#ctor +M:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.get_WrapNonExceptionThrows +M:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +T:System.Runtime.CompilerServices.RuntimeFeature +F:System.Runtime.CompilerServices.RuntimeFeature.ByRefFields +F:System.Runtime.CompilerServices.RuntimeFeature.CovariantReturnsOfClasses +F:System.Runtime.CompilerServices.RuntimeFeature.DefaultImplementationsOfInterfaces +M:System.Runtime.CompilerServices.RuntimeFeature.IsSupported(System.String) +F:System.Runtime.CompilerServices.RuntimeFeature.NumericIntPtr +F:System.Runtime.CompilerServices.RuntimeFeature.PortablePdb +F:System.Runtime.CompilerServices.RuntimeFeature.UnmanagedSignatureCallingConvention +F:System.Runtime.CompilerServices.RuntimeFeature.VirtualStaticsInInterfaces +M:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeCompiled +M:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported +T:System.Runtime.CompilerServices.RuntimeHelpers +M:System.Runtime.CompilerServices.RuntimeHelpers.AllocateTypeAssociatedMemory(System.Type,System.Int32) +T:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode +M:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode.#ctor(System.Object,System.IntPtr) +M:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode.BeginInvoke(System.Object,System.Boolean,System.AsyncCallback,System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode.EndInvoke(System.IAsyncResult) +M:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode.Invoke(System.Object,System.Boolean) +M:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan``1(System.RuntimeFieldHandle) +M:System.Runtime.CompilerServices.RuntimeHelpers.EnsureSufficientExecutionStack +M:System.Runtime.CompilerServices.RuntimeHelpers.Equals(System.Object,System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(System.Runtime.CompilerServices.RuntimeHelpers.TryCode,System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode,System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.GetObjectValue(System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.GetSubArray``1(``0[],System.Range) +M:System.Runtime.CompilerServices.RuntimeHelpers.GetUninitializedObject(System.Type) +M:System.Runtime.CompilerServices.RuntimeHelpers.InitializeArray(System.Array,System.RuntimeFieldHandle) +M:System.Runtime.CompilerServices.RuntimeHelpers.IsReferenceOrContainsReferences``1 +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareConstrainedRegions +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareConstrainedRegionsNoOP +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareContractedDelegate(System.Delegate) +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareDelegate(System.Delegate) +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareMethod(System.RuntimeMethodHandle) +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareMethod(System.RuntimeMethodHandle,System.RuntimeTypeHandle[]) +M:System.Runtime.CompilerServices.RuntimeHelpers.ProbeForSufficientStack +M:System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(System.RuntimeTypeHandle) +M:System.Runtime.CompilerServices.RuntimeHelpers.RunModuleConstructor(System.ModuleHandle) +T:System.Runtime.CompilerServices.RuntimeHelpers.TryCode +M:System.Runtime.CompilerServices.RuntimeHelpers.TryCode.#ctor(System.Object,System.IntPtr) +M:System.Runtime.CompilerServices.RuntimeHelpers.TryCode.BeginInvoke(System.Object,System.AsyncCallback,System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.TryCode.EndInvoke(System.IAsyncResult) +M:System.Runtime.CompilerServices.RuntimeHelpers.TryCode.Invoke(System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.TryEnsureSufficientExecutionStack +M:System.Runtime.CompilerServices.RuntimeHelpers.get_OffsetToStringData +T:System.Runtime.CompilerServices.RuntimeWrappedException +M:System.Runtime.CompilerServices.RuntimeWrappedException.#ctor(System.Object) +M:System.Runtime.CompilerServices.RuntimeWrappedException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Runtime.CompilerServices.RuntimeWrappedException.get_WrappedException +T:System.Runtime.CompilerServices.ScopedRefAttribute +M:System.Runtime.CompilerServices.ScopedRefAttribute.#ctor +T:System.Runtime.CompilerServices.SkipLocalsInitAttribute +M:System.Runtime.CompilerServices.SkipLocalsInitAttribute.#ctor +T:System.Runtime.CompilerServices.SpecialNameAttribute +M:System.Runtime.CompilerServices.SpecialNameAttribute.#ctor +T:System.Runtime.CompilerServices.StateMachineAttribute +M:System.Runtime.CompilerServices.StateMachineAttribute.#ctor(System.Type) +M:System.Runtime.CompilerServices.StateMachineAttribute.get_StateMachineType +T:System.Runtime.CompilerServices.StringFreezingAttribute +M:System.Runtime.CompilerServices.StringFreezingAttribute.#ctor +T:System.Runtime.CompilerServices.StrongBox`1 +M:System.Runtime.CompilerServices.StrongBox`1.#ctor +M:System.Runtime.CompilerServices.StrongBox`1.#ctor(`0) +F:System.Runtime.CompilerServices.StrongBox`1.Value +T:System.Runtime.CompilerServices.SuppressIldasmAttribute +M:System.Runtime.CompilerServices.SuppressIldasmAttribute.#ctor +T:System.Runtime.CompilerServices.SwitchExpressionException +M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor +M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.Exception) +M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.Object) +M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.String) +M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.String,System.Exception) +M:System.Runtime.CompilerServices.SwitchExpressionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Runtime.CompilerServices.SwitchExpressionException.get_Message +M:System.Runtime.CompilerServices.SwitchExpressionException.get_UnmatchedValue +T:System.Runtime.CompilerServices.TaskAwaiter +M:System.Runtime.CompilerServices.TaskAwaiter.GetResult +M:System.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.TaskAwaiter.get_IsCompleted +T:System.Runtime.CompilerServices.TaskAwaiter`1 +M:System.Runtime.CompilerServices.TaskAwaiter`1.GetResult +M:System.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.TaskAwaiter`1.get_IsCompleted +T:System.Runtime.CompilerServices.TupleElementNamesAttribute +M:System.Runtime.CompilerServices.TupleElementNamesAttribute.#ctor(System.String[]) +M:System.Runtime.CompilerServices.TupleElementNamesAttribute.get_TransformNames +T:System.Runtime.CompilerServices.TypeForwardedFromAttribute +M:System.Runtime.CompilerServices.TypeForwardedFromAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.TypeForwardedFromAttribute.get_AssemblyFullName +T:System.Runtime.CompilerServices.TypeForwardedToAttribute +M:System.Runtime.CompilerServices.TypeForwardedToAttribute.#ctor(System.Type) +M:System.Runtime.CompilerServices.TypeForwardedToAttribute.get_Destination +T:System.Runtime.CompilerServices.Unsafe +M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr) +M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.UIntPtr) +M:System.Runtime.CompilerServices.Unsafe.Add``1(System.Void*,System.Int32) +M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32) +M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr) +M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.UIntPtr) +M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@) +M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@) +M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*) +M:System.Runtime.CompilerServices.Unsafe.AsRef``1(``0@) +M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object) +M:System.Runtime.CompilerServices.Unsafe.As``2(``0@) +M:System.Runtime.CompilerServices.Unsafe.BitCast``2(``0) +M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@) +M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@) +M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*) +M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.IsAddressGreaterThan``1(``0@,``0@) +M:System.Runtime.CompilerServices.Unsafe.IsAddressLessThan``1(``0@,``0@) +M:System.Runtime.CompilerServices.Unsafe.IsNullRef``1(``0@) +M:System.Runtime.CompilerServices.Unsafe.NullRef``1 +M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@) +M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*) +M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*) +M:System.Runtime.CompilerServices.Unsafe.SizeOf``1 +M:System.Runtime.CompilerServices.Unsafe.SkipInit``1(``0@) +M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr) +M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.UIntPtr) +M:System.Runtime.CompilerServices.Unsafe.Subtract``1(System.Void*,System.Int32) +M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32) +M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr) +M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.UIntPtr) +M:System.Runtime.CompilerServices.Unsafe.Unbox``1(System.Object) +M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0) +M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0) +M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0) +T:System.Runtime.CompilerServices.UnsafeAccessorAttribute +M:System.Runtime.CompilerServices.UnsafeAccessorAttribute.#ctor(System.Runtime.CompilerServices.UnsafeAccessorKind) +M:System.Runtime.CompilerServices.UnsafeAccessorAttribute.get_Kind +M:System.Runtime.CompilerServices.UnsafeAccessorAttribute.get_Name +M:System.Runtime.CompilerServices.UnsafeAccessorAttribute.set_Name(System.String) +T:System.Runtime.CompilerServices.UnsafeAccessorKind +F:System.Runtime.CompilerServices.UnsafeAccessorKind.Constructor +F:System.Runtime.CompilerServices.UnsafeAccessorKind.Field +F:System.Runtime.CompilerServices.UnsafeAccessorKind.Method +F:System.Runtime.CompilerServices.UnsafeAccessorKind.StaticField +F:System.Runtime.CompilerServices.UnsafeAccessorKind.StaticMethod +T:System.Runtime.CompilerServices.UnsafeValueTypeAttribute +M:System.Runtime.CompilerServices.UnsafeValueTypeAttribute.#ctor +T:System.Runtime.CompilerServices.ValueTaskAwaiter +M:System.Runtime.CompilerServices.ValueTaskAwaiter.GetResult +M:System.Runtime.CompilerServices.ValueTaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ValueTaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ValueTaskAwaiter.get_IsCompleted +T:System.Runtime.CompilerServices.ValueTaskAwaiter`1 +M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.GetResult +M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.get_IsCompleted +T:System.Runtime.CompilerServices.YieldAwaitable +M:System.Runtime.CompilerServices.YieldAwaitable.GetAwaiter +T:System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter +M:System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult +M:System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.get_IsCompleted +T:System.RuntimeArgumentHandle +T:System.RuntimeFieldHandle +M:System.RuntimeFieldHandle.Equals(System.Object) +M:System.RuntimeFieldHandle.Equals(System.RuntimeFieldHandle) +M:System.RuntimeFieldHandle.FromIntPtr(System.IntPtr) +M:System.RuntimeFieldHandle.GetHashCode +M:System.RuntimeFieldHandle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.RuntimeFieldHandle.ToIntPtr(System.RuntimeFieldHandle) +M:System.RuntimeFieldHandle.get_Value +M:System.RuntimeFieldHandle.op_Equality(System.RuntimeFieldHandle,System.RuntimeFieldHandle) +M:System.RuntimeFieldHandle.op_Inequality(System.RuntimeFieldHandle,System.RuntimeFieldHandle) +T:System.RuntimeMethodHandle +M:System.RuntimeMethodHandle.Equals(System.Object) +M:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) +M:System.RuntimeMethodHandle.FromIntPtr(System.IntPtr) +M:System.RuntimeMethodHandle.GetFunctionPointer +M:System.RuntimeMethodHandle.GetHashCode +M:System.RuntimeMethodHandle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) +M:System.RuntimeMethodHandle.get_Value +M:System.RuntimeMethodHandle.op_Equality(System.RuntimeMethodHandle,System.RuntimeMethodHandle) +M:System.RuntimeMethodHandle.op_Inequality(System.RuntimeMethodHandle,System.RuntimeMethodHandle) +T:System.RuntimeTypeHandle +M:System.RuntimeTypeHandle.Equals(System.Object) +M:System.RuntimeTypeHandle.Equals(System.RuntimeTypeHandle) +M:System.RuntimeTypeHandle.FromIntPtr(System.IntPtr) +M:System.RuntimeTypeHandle.GetHashCode +M:System.RuntimeTypeHandle.GetModuleHandle +M:System.RuntimeTypeHandle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.RuntimeTypeHandle.ToIntPtr(System.RuntimeTypeHandle) +M:System.RuntimeTypeHandle.get_Value +M:System.RuntimeTypeHandle.op_Equality(System.Object,System.RuntimeTypeHandle) +M:System.RuntimeTypeHandle.op_Equality(System.RuntimeTypeHandle,System.Object) +M:System.RuntimeTypeHandle.op_Inequality(System.Object,System.RuntimeTypeHandle) +M:System.RuntimeTypeHandle.op_Inequality(System.RuntimeTypeHandle,System.Object) +T:System.SByte +M:System.SByte.Abs(System.SByte) +M:System.SByte.Clamp(System.SByte,System.SByte,System.SByte) +M:System.SByte.CompareTo(System.Object) +M:System.SByte.CompareTo(System.SByte) +M:System.SByte.CopySign(System.SByte,System.SByte) +M:System.SByte.CreateChecked``1(``0) +M:System.SByte.CreateSaturating``1(``0) +M:System.SByte.CreateTruncating``1(``0) +M:System.SByte.DivRem(System.SByte,System.SByte) +M:System.SByte.Equals(System.Object) +M:System.SByte.Equals(System.SByte) +M:System.SByte.GetHashCode +M:System.SByte.GetTypeCode +M:System.SByte.IsEvenInteger(System.SByte) +M:System.SByte.IsNegative(System.SByte) +M:System.SByte.IsOddInteger(System.SByte) +M:System.SByte.IsPositive(System.SByte) +M:System.SByte.IsPow2(System.SByte) +M:System.SByte.LeadingZeroCount(System.SByte) +M:System.SByte.Log2(System.SByte) +M:System.SByte.Max(System.SByte,System.SByte) +M:System.SByte.MaxMagnitude(System.SByte,System.SByte) +F:System.SByte.MaxValue +M:System.SByte.Min(System.SByte,System.SByte) +M:System.SByte.MinMagnitude(System.SByte,System.SByte) +F:System.SByte.MinValue +M:System.SByte.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.SByte.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.SByte.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.SByte.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.SByte.Parse(System.String) +M:System.SByte.Parse(System.String,System.Globalization.NumberStyles) +M:System.SByte.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.SByte.Parse(System.String,System.IFormatProvider) +M:System.SByte.PopCount(System.SByte) +M:System.SByte.RotateLeft(System.SByte,System.Int32) +M:System.SByte.RotateRight(System.SByte,System.Int32) +M:System.SByte.Sign(System.SByte) +M:System.SByte.ToString +M:System.SByte.ToString(System.IFormatProvider) +M:System.SByte.ToString(System.String) +M:System.SByte.ToString(System.String,System.IFormatProvider) +M:System.SByte.TrailingZeroCount(System.SByte) +M:System.SByte.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.SByte.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Byte},System.SByte@) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Char},System.SByte@) +M:System.SByte.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.String,System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.String,System.SByte@) +T:System.SerializableAttribute +M:System.SerializableAttribute.#ctor +T:System.Single +M:System.Single.Abs(System.Single) +M:System.Single.Acos(System.Single) +M:System.Single.AcosPi(System.Single) +M:System.Single.Acosh(System.Single) +M:System.Single.Asin(System.Single) +M:System.Single.AsinPi(System.Single) +M:System.Single.Asinh(System.Single) +M:System.Single.Atan(System.Single) +M:System.Single.Atan2(System.Single,System.Single) +M:System.Single.Atan2Pi(System.Single,System.Single) +M:System.Single.AtanPi(System.Single) +M:System.Single.Atanh(System.Single) +M:System.Single.BitDecrement(System.Single) +M:System.Single.BitIncrement(System.Single) +M:System.Single.Cbrt(System.Single) +M:System.Single.Ceiling(System.Single) +M:System.Single.Clamp(System.Single,System.Single,System.Single) +M:System.Single.CompareTo(System.Object) +M:System.Single.CompareTo(System.Single) +M:System.Single.CopySign(System.Single,System.Single) +M:System.Single.Cos(System.Single) +M:System.Single.CosPi(System.Single) +M:System.Single.Cosh(System.Single) +M:System.Single.CreateChecked``1(``0) +M:System.Single.CreateSaturating``1(``0) +M:System.Single.CreateTruncating``1(``0) +M:System.Single.DegreesToRadians(System.Single) +F:System.Single.E +F:System.Single.Epsilon +M:System.Single.Equals(System.Object) +M:System.Single.Equals(System.Single) +M:System.Single.Exp(System.Single) +M:System.Single.Exp10(System.Single) +M:System.Single.Exp10M1(System.Single) +M:System.Single.Exp2(System.Single) +M:System.Single.Exp2M1(System.Single) +M:System.Single.ExpM1(System.Single) +M:System.Single.Floor(System.Single) +M:System.Single.FusedMultiplyAdd(System.Single,System.Single,System.Single) +M:System.Single.GetHashCode +M:System.Single.GetTypeCode +M:System.Single.Hypot(System.Single,System.Single) +M:System.Single.ILogB(System.Single) +M:System.Single.Ieee754Remainder(System.Single,System.Single) +M:System.Single.IsEvenInteger(System.Single) +M:System.Single.IsFinite(System.Single) +M:System.Single.IsInfinity(System.Single) +M:System.Single.IsInteger(System.Single) +M:System.Single.IsNaN(System.Single) +M:System.Single.IsNegative(System.Single) +M:System.Single.IsNegativeInfinity(System.Single) +M:System.Single.IsNormal(System.Single) +M:System.Single.IsOddInteger(System.Single) +M:System.Single.IsPositive(System.Single) +M:System.Single.IsPositiveInfinity(System.Single) +M:System.Single.IsPow2(System.Single) +M:System.Single.IsRealNumber(System.Single) +M:System.Single.IsSubnormal(System.Single) +M:System.Single.Lerp(System.Single,System.Single,System.Single) +M:System.Single.Log(System.Single) +M:System.Single.Log(System.Single,System.Single) +M:System.Single.Log10(System.Single) +M:System.Single.Log10P1(System.Single) +M:System.Single.Log2(System.Single) +M:System.Single.Log2P1(System.Single) +M:System.Single.LogP1(System.Single) +M:System.Single.Max(System.Single,System.Single) +M:System.Single.MaxMagnitude(System.Single,System.Single) +M:System.Single.MaxMagnitudeNumber(System.Single,System.Single) +M:System.Single.MaxNumber(System.Single,System.Single) +F:System.Single.MaxValue +M:System.Single.Min(System.Single,System.Single) +M:System.Single.MinMagnitude(System.Single,System.Single) +M:System.Single.MinMagnitudeNumber(System.Single,System.Single) +M:System.Single.MinNumber(System.Single,System.Single) +F:System.Single.MinValue +F:System.Single.NaN +F:System.Single.NegativeInfinity +F:System.Single.NegativeZero +M:System.Single.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Single.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Single.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Single.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Single.Parse(System.String) +M:System.Single.Parse(System.String,System.Globalization.NumberStyles) +M:System.Single.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Single.Parse(System.String,System.IFormatProvider) +F:System.Single.Pi +F:System.Single.PositiveInfinity +M:System.Single.Pow(System.Single,System.Single) +M:System.Single.RadiansToDegrees(System.Single) +M:System.Single.ReciprocalEstimate(System.Single) +M:System.Single.ReciprocalSqrtEstimate(System.Single) +M:System.Single.RootN(System.Single,System.Int32) +M:System.Single.Round(System.Single) +M:System.Single.Round(System.Single,System.Int32) +M:System.Single.Round(System.Single,System.Int32,System.MidpointRounding) +M:System.Single.Round(System.Single,System.MidpointRounding) +M:System.Single.ScaleB(System.Single,System.Int32) +M:System.Single.Sign(System.Single) +M:System.Single.Sin(System.Single) +M:System.Single.SinCos(System.Single) +M:System.Single.SinCosPi(System.Single) +M:System.Single.SinPi(System.Single) +M:System.Single.Sinh(System.Single) +M:System.Single.Sqrt(System.Single) +M:System.Single.Tan(System.Single) +M:System.Single.TanPi(System.Single) +M:System.Single.Tanh(System.Single) +F:System.Single.Tau +M:System.Single.ToString +M:System.Single.ToString(System.IFormatProvider) +M:System.Single.ToString(System.String) +M:System.Single.ToString(System.String,System.IFormatProvider) +M:System.Single.Truncate(System.Single) +M:System.Single.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Single.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Single.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.ReadOnlySpan{System.Byte},System.Single@) +M:System.Single.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.ReadOnlySpan{System.Char},System.Single@) +M:System.Single.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.String,System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.String,System.Single@) +M:System.Single.op_Equality(System.Single,System.Single) +M:System.Single.op_GreaterThan(System.Single,System.Single) +M:System.Single.op_GreaterThanOrEqual(System.Single,System.Single) +M:System.Single.op_Inequality(System.Single,System.Single) +M:System.Single.op_LessThan(System.Single,System.Single) +M:System.Single.op_LessThanOrEqual(System.Single,System.Single) +T:System.Span`1 +M:System.Span`1.#ctor(System.Void*,System.Int32) +M:System.Span`1.#ctor(`0@) +M:System.Span`1.#ctor(`0[]) +M:System.Span`1.#ctor(`0[],System.Int32,System.Int32) +M:System.Span`1.Clear +M:System.Span`1.CopyTo(System.Span{`0}) +T:System.Span`1.Enumerator +M:System.Span`1.Enumerator.MoveNext +M:System.Span`1.Enumerator.get_Current +M:System.Span`1.Equals(System.Object) +M:System.Span`1.Fill(`0) +M:System.Span`1.GetEnumerator +M:System.Span`1.GetHashCode +M:System.Span`1.GetPinnableReference +M:System.Span`1.Slice(System.Int32) +M:System.Span`1.Slice(System.Int32,System.Int32) +M:System.Span`1.ToArray +M:System.Span`1.ToString +M:System.Span`1.TryCopyTo(System.Span{`0}) +M:System.Span`1.get_Empty +M:System.Span`1.get_IsEmpty +M:System.Span`1.get_Item(System.Int32) +M:System.Span`1.get_Length +M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0}) +M:System.Span`1.op_Implicit(System.ArraySegment{`0})~System.Span{`0} +M:System.Span`1.op_Implicit(System.Span{`0})~System.ReadOnlySpan{`0} +M:System.Span`1.op_Implicit(`0[])~System.Span{`0} +M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0}) +T:System.StackOverflowException +M:System.StackOverflowException.#ctor +M:System.StackOverflowException.#ctor(System.String) +M:System.StackOverflowException.#ctor(System.String,System.Exception) +T:System.String +M:System.String.#ctor(System.Char*) +M:System.String.#ctor(System.Char*,System.Int32,System.Int32) +M:System.String.#ctor(System.Char,System.Int32) +M:System.String.#ctor(System.Char[]) +M:System.String.#ctor(System.Char[],System.Int32,System.Int32) +M:System.String.#ctor(System.ReadOnlySpan{System.Char}) +M:System.String.#ctor(System.SByte*) +M:System.String.#ctor(System.SByte*,System.Int32,System.Int32) +M:System.String.#ctor(System.SByte*,System.Int32,System.Int32,System.Text.Encoding) +M:System.String.Clone +M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32) +M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.Boolean) +M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.Boolean,System.Globalization.CultureInfo) +M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CultureInfo,System.Globalization.CompareOptions) +M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.StringComparison) +M:System.String.Compare(System.String,System.String) +M:System.String.Compare(System.String,System.String,System.Boolean) +M:System.String.Compare(System.String,System.String,System.Boolean,System.Globalization.CultureInfo) +M:System.String.Compare(System.String,System.String,System.Globalization.CultureInfo,System.Globalization.CompareOptions) +M:System.String.Compare(System.String,System.String,System.StringComparison) +M:System.String.CompareOrdinal(System.String,System.Int32,System.String,System.Int32,System.Int32) +M:System.String.CompareOrdinal(System.String,System.String) +M:System.String.CompareTo(System.Object) +M:System.String.CompareTo(System.String) +M:System.String.Concat(System.Collections.Generic.IEnumerable{System.String}) +M:System.String.Concat(System.Object) +M:System.String.Concat(System.Object,System.Object) +M:System.String.Concat(System.Object,System.Object,System.Object) +M:System.String.Concat(System.Object[]) +M:System.String.Concat(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.String.Concat(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.String.Concat(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.String.Concat(System.String,System.String) +M:System.String.Concat(System.String,System.String,System.String) +M:System.String.Concat(System.String,System.String,System.String,System.String) +M:System.String.Concat(System.String[]) +M:System.String.Concat``1(System.Collections.Generic.IEnumerable{``0}) +M:System.String.Contains(System.Char) +M:System.String.Contains(System.Char,System.StringComparison) +M:System.String.Contains(System.String) +M:System.String.Contains(System.String,System.StringComparison) +M:System.String.Copy(System.String) +M:System.String.CopyTo(System.Int32,System.Char[],System.Int32,System.Int32) +M:System.String.CopyTo(System.Span{System.Char}) +M:System.String.Create(System.IFormatProvider,System.Runtime.CompilerServices.DefaultInterpolatedStringHandler@) +M:System.String.Create(System.IFormatProvider,System.Span{System.Char},System.Runtime.CompilerServices.DefaultInterpolatedStringHandler@) +M:System.String.Create``1(System.Int32,``0,System.Buffers.SpanAction{System.Char,``0}) +F:System.String.Empty +M:System.String.EndsWith(System.Char) +M:System.String.EndsWith(System.String) +M:System.String.EndsWith(System.String,System.Boolean,System.Globalization.CultureInfo) +M:System.String.EndsWith(System.String,System.StringComparison) +M:System.String.EnumerateRunes +M:System.String.Equals(System.Object) +M:System.String.Equals(System.String) +M:System.String.Equals(System.String,System.String) +M:System.String.Equals(System.String,System.String,System.StringComparison) +M:System.String.Equals(System.String,System.StringComparison) +M:System.String.Format(System.IFormatProvider,System.String,System.Object) +M:System.String.Format(System.IFormatProvider,System.String,System.Object,System.Object) +M:System.String.Format(System.IFormatProvider,System.String,System.Object,System.Object,System.Object) +M:System.String.Format(System.IFormatProvider,System.String,System.Object[]) +M:System.String.Format(System.IFormatProvider,System.Text.CompositeFormat,System.Object[]) +M:System.String.Format(System.IFormatProvider,System.Text.CompositeFormat,System.ReadOnlySpan{System.Object}) +M:System.String.Format(System.String,System.Object) +M:System.String.Format(System.String,System.Object,System.Object) +M:System.String.Format(System.String,System.Object,System.Object,System.Object) +M:System.String.Format(System.String,System.Object[]) +M:System.String.Format``1(System.IFormatProvider,System.Text.CompositeFormat,``0) +M:System.String.Format``2(System.IFormatProvider,System.Text.CompositeFormat,``0,``1) +M:System.String.Format``3(System.IFormatProvider,System.Text.CompositeFormat,``0,``1,``2) +M:System.String.GetEnumerator +M:System.String.GetHashCode +M:System.String.GetHashCode(System.ReadOnlySpan{System.Char}) +M:System.String.GetHashCode(System.ReadOnlySpan{System.Char},System.StringComparison) +M:System.String.GetHashCode(System.StringComparison) +M:System.String.GetPinnableReference +M:System.String.GetTypeCode +M:System.String.IndexOf(System.Char) +M:System.String.IndexOf(System.Char,System.Int32) +M:System.String.IndexOf(System.Char,System.Int32,System.Int32) +M:System.String.IndexOf(System.Char,System.StringComparison) +M:System.String.IndexOf(System.String) +M:System.String.IndexOf(System.String,System.Int32) +M:System.String.IndexOf(System.String,System.Int32,System.Int32) +M:System.String.IndexOf(System.String,System.Int32,System.Int32,System.StringComparison) +M:System.String.IndexOf(System.String,System.Int32,System.StringComparison) +M:System.String.IndexOf(System.String,System.StringComparison) +M:System.String.IndexOfAny(System.Char[]) +M:System.String.IndexOfAny(System.Char[],System.Int32) +M:System.String.IndexOfAny(System.Char[],System.Int32,System.Int32) +M:System.String.Insert(System.Int32,System.String) +M:System.String.Intern(System.String) +M:System.String.IsInterned(System.String) +M:System.String.IsNormalized +M:System.String.IsNormalized(System.Text.NormalizationForm) +M:System.String.IsNullOrEmpty(System.String) +M:System.String.IsNullOrWhiteSpace(System.String) +M:System.String.Join(System.Char,System.Object[]) +M:System.String.Join(System.Char,System.String[]) +M:System.String.Join(System.Char,System.String[],System.Int32,System.Int32) +M:System.String.Join(System.String,System.Collections.Generic.IEnumerable{System.String}) +M:System.String.Join(System.String,System.Object[]) +M:System.String.Join(System.String,System.String[]) +M:System.String.Join(System.String,System.String[],System.Int32,System.Int32) +M:System.String.Join``1(System.Char,System.Collections.Generic.IEnumerable{``0}) +M:System.String.Join``1(System.String,System.Collections.Generic.IEnumerable{``0}) +M:System.String.LastIndexOf(System.Char) +M:System.String.LastIndexOf(System.Char,System.Int32) +M:System.String.LastIndexOf(System.Char,System.Int32,System.Int32) +M:System.String.LastIndexOf(System.String) +M:System.String.LastIndexOf(System.String,System.Int32) +M:System.String.LastIndexOf(System.String,System.Int32,System.Int32) +M:System.String.LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison) +M:System.String.LastIndexOf(System.String,System.Int32,System.StringComparison) +M:System.String.LastIndexOf(System.String,System.StringComparison) +M:System.String.LastIndexOfAny(System.Char[]) +M:System.String.LastIndexOfAny(System.Char[],System.Int32) +M:System.String.LastIndexOfAny(System.Char[],System.Int32,System.Int32) +M:System.String.Normalize +M:System.String.Normalize(System.Text.NormalizationForm) +M:System.String.PadLeft(System.Int32) +M:System.String.PadLeft(System.Int32,System.Char) +M:System.String.PadRight(System.Int32) +M:System.String.PadRight(System.Int32,System.Char) +M:System.String.Remove(System.Int32) +M:System.String.Remove(System.Int32,System.Int32) +M:System.String.Replace(System.Char,System.Char) +M:System.String.Replace(System.String,System.String) +M:System.String.Replace(System.String,System.String,System.Boolean,System.Globalization.CultureInfo) +M:System.String.Replace(System.String,System.String,System.StringComparison) +M:System.String.ReplaceLineEndings +M:System.String.ReplaceLineEndings(System.String) +M:System.String.Split(System.Char,System.Int32,System.StringSplitOptions) +M:System.String.Split(System.Char,System.StringSplitOptions) +M:System.String.Split(System.Char[]) +M:System.String.Split(System.Char[],System.Int32) +M:System.String.Split(System.Char[],System.Int32,System.StringSplitOptions) +M:System.String.Split(System.Char[],System.StringSplitOptions) +M:System.String.Split(System.String,System.Int32,System.StringSplitOptions) +M:System.String.Split(System.String,System.StringSplitOptions) +M:System.String.Split(System.String[],System.Int32,System.StringSplitOptions) +M:System.String.Split(System.String[],System.StringSplitOptions) +M:System.String.StartsWith(System.Char) +M:System.String.StartsWith(System.String) +M:System.String.StartsWith(System.String,System.Boolean,System.Globalization.CultureInfo) +M:System.String.StartsWith(System.String,System.StringComparison) +M:System.String.Substring(System.Int32) +M:System.String.Substring(System.Int32,System.Int32) +M:System.String.ToCharArray +M:System.String.ToCharArray(System.Int32,System.Int32) +M:System.String.ToLower +M:System.String.ToLower(System.Globalization.CultureInfo) +M:System.String.ToLowerInvariant +M:System.String.ToString +M:System.String.ToString(System.IFormatProvider) +M:System.String.ToUpper +M:System.String.ToUpper(System.Globalization.CultureInfo) +M:System.String.ToUpperInvariant +M:System.String.Trim +M:System.String.Trim(System.Char) +M:System.String.Trim(System.Char[]) +M:System.String.TrimEnd +M:System.String.TrimEnd(System.Char) +M:System.String.TrimEnd(System.Char[]) +M:System.String.TrimStart +M:System.String.TrimStart(System.Char) +M:System.String.TrimStart(System.Char[]) +M:System.String.TryCopyTo(System.Span{System.Char}) +M:System.String.get_Chars(System.Int32) +M:System.String.get_Length +M:System.String.op_Equality(System.String,System.String) +M:System.String.op_Implicit(System.String)~System.ReadOnlySpan{System.Char} +M:System.String.op_Inequality(System.String,System.String) +T:System.StringComparer +M:System.StringComparer.#ctor +M:System.StringComparer.Compare(System.Object,System.Object) +M:System.StringComparer.Compare(System.String,System.String) +M:System.StringComparer.Create(System.Globalization.CultureInfo,System.Boolean) +M:System.StringComparer.Create(System.Globalization.CultureInfo,System.Globalization.CompareOptions) +M:System.StringComparer.Equals(System.Object,System.Object) +M:System.StringComparer.Equals(System.String,System.String) +M:System.StringComparer.FromComparison(System.StringComparison) +M:System.StringComparer.GetHashCode(System.Object) +M:System.StringComparer.GetHashCode(System.String) +M:System.StringComparer.IsWellKnownCultureAwareComparer(System.Collections.Generic.IEqualityComparer{System.String},System.Globalization.CompareInfo@,System.Globalization.CompareOptions@) +M:System.StringComparer.IsWellKnownOrdinalComparer(System.Collections.Generic.IEqualityComparer{System.String},System.Boolean@) +M:System.StringComparer.get_CurrentCulture +M:System.StringComparer.get_CurrentCultureIgnoreCase +M:System.StringComparer.get_InvariantCulture +M:System.StringComparer.get_InvariantCultureIgnoreCase +M:System.StringComparer.get_Ordinal +M:System.StringComparer.get_OrdinalIgnoreCase +T:System.StringComparison +F:System.StringComparison.CurrentCulture +F:System.StringComparison.CurrentCultureIgnoreCase +F:System.StringComparison.InvariantCulture +F:System.StringComparison.InvariantCultureIgnoreCase +F:System.StringComparison.Ordinal +F:System.StringComparison.OrdinalIgnoreCase +T:System.StringNormalizationExtensions +M:System.StringNormalizationExtensions.IsNormalized(System.String) +M:System.StringNormalizationExtensions.IsNormalized(System.String,System.Text.NormalizationForm) +M:System.StringNormalizationExtensions.Normalize(System.String) +M:System.StringNormalizationExtensions.Normalize(System.String,System.Text.NormalizationForm) +T:System.StringSplitOptions +F:System.StringSplitOptions.None +F:System.StringSplitOptions.RemoveEmptyEntries +F:System.StringSplitOptions.TrimEntries +T:System.SystemException +M:System.SystemException.#ctor +M:System.SystemException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.SystemException.#ctor(System.String) +M:System.SystemException.#ctor(System.String,System.Exception) +T:System.Text.Ascii +M:System.Text.Ascii.Equals(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.Equals(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.Equals(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.Equals(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.EqualsIgnoreCase(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.EqualsIgnoreCase(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.EqualsIgnoreCase(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.EqualsIgnoreCase(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.FromUtf16(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.IsValid(System.Byte) +M:System.Text.Ascii.IsValid(System.Char) +M:System.Text.Ascii.IsValid(System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.IsValid(System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.ToLower(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToLower(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToLower(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToLower(System.ReadOnlySpan{System.Char},System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToLowerInPlace(System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToLowerInPlace(System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToUpper(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToUpper(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToUpper(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToUpper(System.ReadOnlySpan{System.Char},System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToUpperInPlace(System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToUpperInPlace(System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToUtf16(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.Trim(System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.Trim(System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.TrimEnd(System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.TrimEnd(System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.TrimStart(System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.TrimStart(System.ReadOnlySpan{System.Char}) +T:System.Text.CompositeFormat +M:System.Text.CompositeFormat.Parse(System.String) +M:System.Text.CompositeFormat.get_Format +M:System.Text.CompositeFormat.get_MinimumArgumentCount +T:System.Text.Decoder +M:System.Text.Decoder.#ctor +M:System.Text.Decoder.Convert(System.Byte*,System.Int32,System.Char*,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Decoder.Convert(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Decoder.Convert(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Decoder.GetCharCount(System.Byte*,System.Int32,System.Boolean) +M:System.Text.Decoder.GetCharCount(System.Byte[],System.Int32,System.Int32) +M:System.Text.Decoder.GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean) +M:System.Text.Decoder.GetCharCount(System.ReadOnlySpan{System.Byte},System.Boolean) +M:System.Text.Decoder.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Boolean) +M:System.Text.Decoder.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) +M:System.Text.Decoder.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean) +M:System.Text.Decoder.GetChars(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Boolean) +M:System.Text.Decoder.Reset +M:System.Text.Decoder.get_Fallback +M:System.Text.Decoder.get_FallbackBuffer +M:System.Text.Decoder.set_Fallback(System.Text.DecoderFallback) +T:System.Text.DecoderExceptionFallback +M:System.Text.DecoderExceptionFallback.#ctor +M:System.Text.DecoderExceptionFallback.CreateFallbackBuffer +M:System.Text.DecoderExceptionFallback.Equals(System.Object) +M:System.Text.DecoderExceptionFallback.GetHashCode +M:System.Text.DecoderExceptionFallback.get_MaxCharCount +T:System.Text.DecoderExceptionFallbackBuffer +M:System.Text.DecoderExceptionFallbackBuffer.#ctor +M:System.Text.DecoderExceptionFallbackBuffer.Fallback(System.Byte[],System.Int32) +M:System.Text.DecoderExceptionFallbackBuffer.GetNextChar +M:System.Text.DecoderExceptionFallbackBuffer.MovePrevious +M:System.Text.DecoderExceptionFallbackBuffer.get_Remaining +T:System.Text.DecoderFallback +M:System.Text.DecoderFallback.#ctor +M:System.Text.DecoderFallback.CreateFallbackBuffer +M:System.Text.DecoderFallback.get_ExceptionFallback +M:System.Text.DecoderFallback.get_MaxCharCount +M:System.Text.DecoderFallback.get_ReplacementFallback +T:System.Text.DecoderFallbackBuffer +M:System.Text.DecoderFallbackBuffer.#ctor +M:System.Text.DecoderFallbackBuffer.Fallback(System.Byte[],System.Int32) +M:System.Text.DecoderFallbackBuffer.GetNextChar +M:System.Text.DecoderFallbackBuffer.MovePrevious +M:System.Text.DecoderFallbackBuffer.Reset +M:System.Text.DecoderFallbackBuffer.get_Remaining +T:System.Text.DecoderFallbackException +M:System.Text.DecoderFallbackException.#ctor +M:System.Text.DecoderFallbackException.#ctor(System.String) +M:System.Text.DecoderFallbackException.#ctor(System.String,System.Byte[],System.Int32) +M:System.Text.DecoderFallbackException.#ctor(System.String,System.Exception) +M:System.Text.DecoderFallbackException.get_BytesUnknown +M:System.Text.DecoderFallbackException.get_Index +T:System.Text.DecoderReplacementFallback +M:System.Text.DecoderReplacementFallback.#ctor +M:System.Text.DecoderReplacementFallback.#ctor(System.String) +M:System.Text.DecoderReplacementFallback.CreateFallbackBuffer +M:System.Text.DecoderReplacementFallback.Equals(System.Object) +M:System.Text.DecoderReplacementFallback.GetHashCode +M:System.Text.DecoderReplacementFallback.get_DefaultString +M:System.Text.DecoderReplacementFallback.get_MaxCharCount +T:System.Text.DecoderReplacementFallbackBuffer +M:System.Text.DecoderReplacementFallbackBuffer.#ctor(System.Text.DecoderReplacementFallback) +M:System.Text.DecoderReplacementFallbackBuffer.Fallback(System.Byte[],System.Int32) +M:System.Text.DecoderReplacementFallbackBuffer.GetNextChar +M:System.Text.DecoderReplacementFallbackBuffer.MovePrevious +M:System.Text.DecoderReplacementFallbackBuffer.Reset +M:System.Text.DecoderReplacementFallbackBuffer.get_Remaining +T:System.Text.Encoder +M:System.Text.Encoder.#ctor +M:System.Text.Encoder.Convert(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Encoder.Convert(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Encoder.Convert(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Encoder.GetByteCount(System.Char*,System.Int32,System.Boolean) +M:System.Text.Encoder.GetByteCount(System.Char[],System.Int32,System.Int32,System.Boolean) +M:System.Text.Encoder.GetByteCount(System.ReadOnlySpan{System.Char},System.Boolean) +M:System.Text.Encoder.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean) +M:System.Text.Encoder.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Boolean) +M:System.Text.Encoder.GetBytes(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Boolean) +M:System.Text.Encoder.Reset +M:System.Text.Encoder.get_Fallback +M:System.Text.Encoder.get_FallbackBuffer +M:System.Text.Encoder.set_Fallback(System.Text.EncoderFallback) +T:System.Text.EncoderExceptionFallback +M:System.Text.EncoderExceptionFallback.#ctor +M:System.Text.EncoderExceptionFallback.CreateFallbackBuffer +M:System.Text.EncoderExceptionFallback.Equals(System.Object) +M:System.Text.EncoderExceptionFallback.GetHashCode +M:System.Text.EncoderExceptionFallback.get_MaxCharCount +T:System.Text.EncoderExceptionFallbackBuffer +M:System.Text.EncoderExceptionFallbackBuffer.#ctor +M:System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char,System.Char,System.Int32) +M:System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char,System.Int32) +M:System.Text.EncoderExceptionFallbackBuffer.GetNextChar +M:System.Text.EncoderExceptionFallbackBuffer.MovePrevious +M:System.Text.EncoderExceptionFallbackBuffer.get_Remaining +T:System.Text.EncoderFallback +M:System.Text.EncoderFallback.#ctor +M:System.Text.EncoderFallback.CreateFallbackBuffer +M:System.Text.EncoderFallback.get_ExceptionFallback +M:System.Text.EncoderFallback.get_MaxCharCount +M:System.Text.EncoderFallback.get_ReplacementFallback +T:System.Text.EncoderFallbackBuffer +M:System.Text.EncoderFallbackBuffer.#ctor +M:System.Text.EncoderFallbackBuffer.Fallback(System.Char,System.Char,System.Int32) +M:System.Text.EncoderFallbackBuffer.Fallback(System.Char,System.Int32) +M:System.Text.EncoderFallbackBuffer.GetNextChar +M:System.Text.EncoderFallbackBuffer.MovePrevious +M:System.Text.EncoderFallbackBuffer.Reset +M:System.Text.EncoderFallbackBuffer.get_Remaining +T:System.Text.EncoderFallbackException +M:System.Text.EncoderFallbackException.#ctor +M:System.Text.EncoderFallbackException.#ctor(System.String) +M:System.Text.EncoderFallbackException.#ctor(System.String,System.Exception) +M:System.Text.EncoderFallbackException.IsUnknownSurrogate +M:System.Text.EncoderFallbackException.get_CharUnknown +M:System.Text.EncoderFallbackException.get_CharUnknownHigh +M:System.Text.EncoderFallbackException.get_CharUnknownLow +M:System.Text.EncoderFallbackException.get_Index +T:System.Text.EncoderReplacementFallback +M:System.Text.EncoderReplacementFallback.#ctor +M:System.Text.EncoderReplacementFallback.#ctor(System.String) +M:System.Text.EncoderReplacementFallback.CreateFallbackBuffer +M:System.Text.EncoderReplacementFallback.Equals(System.Object) +M:System.Text.EncoderReplacementFallback.GetHashCode +M:System.Text.EncoderReplacementFallback.get_DefaultString +M:System.Text.EncoderReplacementFallback.get_MaxCharCount +T:System.Text.EncoderReplacementFallbackBuffer +M:System.Text.EncoderReplacementFallbackBuffer.#ctor(System.Text.EncoderReplacementFallback) +M:System.Text.EncoderReplacementFallbackBuffer.Fallback(System.Char,System.Char,System.Int32) +M:System.Text.EncoderReplacementFallbackBuffer.Fallback(System.Char,System.Int32) +M:System.Text.EncoderReplacementFallbackBuffer.GetNextChar +M:System.Text.EncoderReplacementFallbackBuffer.MovePrevious +M:System.Text.EncoderReplacementFallbackBuffer.Reset +M:System.Text.EncoderReplacementFallbackBuffer.get_Remaining +T:System.Text.Encoding +M:System.Text.Encoding.#ctor +M:System.Text.Encoding.#ctor(System.Int32) +M:System.Text.Encoding.#ctor(System.Int32,System.Text.EncoderFallback,System.Text.DecoderFallback) +M:System.Text.Encoding.Clone +M:System.Text.Encoding.Convert(System.Text.Encoding,System.Text.Encoding,System.Byte[]) +M:System.Text.Encoding.Convert(System.Text.Encoding,System.Text.Encoding,System.Byte[],System.Int32,System.Int32) +M:System.Text.Encoding.CreateTranscodingStream(System.IO.Stream,System.Text.Encoding,System.Text.Encoding,System.Boolean) +M:System.Text.Encoding.Equals(System.Object) +M:System.Text.Encoding.GetByteCount(System.Char*,System.Int32) +M:System.Text.Encoding.GetByteCount(System.Char[]) +M:System.Text.Encoding.GetByteCount(System.Char[],System.Int32,System.Int32) +M:System.Text.Encoding.GetByteCount(System.ReadOnlySpan{System.Char}) +M:System.Text.Encoding.GetByteCount(System.String) +M:System.Text.Encoding.GetByteCount(System.String,System.Int32,System.Int32) +M:System.Text.Encoding.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32) +M:System.Text.Encoding.GetBytes(System.Char[]) +M:System.Text.Encoding.GetBytes(System.Char[],System.Int32,System.Int32) +M:System.Text.Encoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32) +M:System.Text.Encoding.GetBytes(System.ReadOnlySpan{System.Char},System.Span{System.Byte}) +M:System.Text.Encoding.GetBytes(System.String) +M:System.Text.Encoding.GetBytes(System.String,System.Int32,System.Int32) +M:System.Text.Encoding.GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) +M:System.Text.Encoding.GetCharCount(System.Byte*,System.Int32) +M:System.Text.Encoding.GetCharCount(System.Byte[]) +M:System.Text.Encoding.GetCharCount(System.Byte[],System.Int32,System.Int32) +M:System.Text.Encoding.GetCharCount(System.ReadOnlySpan{System.Byte}) +M:System.Text.Encoding.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32) +M:System.Text.Encoding.GetChars(System.Byte[]) +M:System.Text.Encoding.GetChars(System.Byte[],System.Int32,System.Int32) +M:System.Text.Encoding.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) +M:System.Text.Encoding.GetChars(System.ReadOnlySpan{System.Byte},System.Span{System.Char}) +M:System.Text.Encoding.GetDecoder +M:System.Text.Encoding.GetEncoder +M:System.Text.Encoding.GetEncoding(System.Int32) +M:System.Text.Encoding.GetEncoding(System.Int32,System.Text.EncoderFallback,System.Text.DecoderFallback) +M:System.Text.Encoding.GetEncoding(System.String) +M:System.Text.Encoding.GetEncoding(System.String,System.Text.EncoderFallback,System.Text.DecoderFallback) +M:System.Text.Encoding.GetEncodings +M:System.Text.Encoding.GetHashCode +M:System.Text.Encoding.GetMaxByteCount(System.Int32) +M:System.Text.Encoding.GetMaxCharCount(System.Int32) +M:System.Text.Encoding.GetPreamble +M:System.Text.Encoding.GetString(System.Byte*,System.Int32) +M:System.Text.Encoding.GetString(System.Byte[]) +M:System.Text.Encoding.GetString(System.Byte[],System.Int32,System.Int32) +M:System.Text.Encoding.GetString(System.ReadOnlySpan{System.Byte}) +M:System.Text.Encoding.IsAlwaysNormalized +M:System.Text.Encoding.IsAlwaysNormalized(System.Text.NormalizationForm) +M:System.Text.Encoding.RegisterProvider(System.Text.EncodingProvider) +M:System.Text.Encoding.TryGetBytes(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@) +M:System.Text.Encoding.TryGetChars(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@) +M:System.Text.Encoding.get_ASCII +M:System.Text.Encoding.get_BigEndianUnicode +M:System.Text.Encoding.get_BodyName +M:System.Text.Encoding.get_CodePage +M:System.Text.Encoding.get_DecoderFallback +M:System.Text.Encoding.get_Default +M:System.Text.Encoding.get_EncoderFallback +M:System.Text.Encoding.get_EncodingName +M:System.Text.Encoding.get_HeaderName +M:System.Text.Encoding.get_IsBrowserDisplay +M:System.Text.Encoding.get_IsBrowserSave +M:System.Text.Encoding.get_IsMailNewsDisplay +M:System.Text.Encoding.get_IsMailNewsSave +M:System.Text.Encoding.get_IsReadOnly +M:System.Text.Encoding.get_IsSingleByte +M:System.Text.Encoding.get_Latin1 +M:System.Text.Encoding.get_Preamble +M:System.Text.Encoding.get_UTF32 +M:System.Text.Encoding.get_UTF7 +M:System.Text.Encoding.get_UTF8 +M:System.Text.Encoding.get_Unicode +M:System.Text.Encoding.get_WebName +M:System.Text.Encoding.get_WindowsCodePage +M:System.Text.Encoding.set_DecoderFallback(System.Text.DecoderFallback) +M:System.Text.Encoding.set_EncoderFallback(System.Text.EncoderFallback) +T:System.Text.EncodingInfo +M:System.Text.EncodingInfo.#ctor(System.Text.EncodingProvider,System.Int32,System.String,System.String) +M:System.Text.EncodingInfo.Equals(System.Object) +M:System.Text.EncodingInfo.GetEncoding +M:System.Text.EncodingInfo.GetHashCode +M:System.Text.EncodingInfo.get_CodePage +M:System.Text.EncodingInfo.get_DisplayName +M:System.Text.EncodingInfo.get_Name +T:System.Text.EncodingProvider +M:System.Text.EncodingProvider.#ctor +M:System.Text.EncodingProvider.GetEncoding(System.Int32) +M:System.Text.EncodingProvider.GetEncoding(System.Int32,System.Text.EncoderFallback,System.Text.DecoderFallback) +M:System.Text.EncodingProvider.GetEncoding(System.String) +M:System.Text.EncodingProvider.GetEncoding(System.String,System.Text.EncoderFallback,System.Text.DecoderFallback) +M:System.Text.EncodingProvider.GetEncodings +T:System.Text.NormalizationForm +F:System.Text.NormalizationForm.FormC +F:System.Text.NormalizationForm.FormD +F:System.Text.NormalizationForm.FormKC +F:System.Text.NormalizationForm.FormKD +T:System.Text.Rune +M:System.Text.Rune.#ctor(System.Char) +M:System.Text.Rune.#ctor(System.Char,System.Char) +M:System.Text.Rune.#ctor(System.Int32) +M:System.Text.Rune.#ctor(System.UInt32) +M:System.Text.Rune.CompareTo(System.Text.Rune) +M:System.Text.Rune.DecodeFromUtf16(System.ReadOnlySpan{System.Char},System.Text.Rune@,System.Int32@) +M:System.Text.Rune.DecodeFromUtf8(System.ReadOnlySpan{System.Byte},System.Text.Rune@,System.Int32@) +M:System.Text.Rune.DecodeLastFromUtf16(System.ReadOnlySpan{System.Char},System.Text.Rune@,System.Int32@) +M:System.Text.Rune.DecodeLastFromUtf8(System.ReadOnlySpan{System.Byte},System.Text.Rune@,System.Int32@) +M:System.Text.Rune.EncodeToUtf16(System.Span{System.Char}) +M:System.Text.Rune.EncodeToUtf8(System.Span{System.Byte}) +M:System.Text.Rune.Equals(System.Object) +M:System.Text.Rune.Equals(System.Text.Rune) +M:System.Text.Rune.GetHashCode +M:System.Text.Rune.GetNumericValue(System.Text.Rune) +M:System.Text.Rune.GetRuneAt(System.String,System.Int32) +M:System.Text.Rune.GetUnicodeCategory(System.Text.Rune) +M:System.Text.Rune.IsControl(System.Text.Rune) +M:System.Text.Rune.IsDigit(System.Text.Rune) +M:System.Text.Rune.IsLetter(System.Text.Rune) +M:System.Text.Rune.IsLetterOrDigit(System.Text.Rune) +M:System.Text.Rune.IsLower(System.Text.Rune) +M:System.Text.Rune.IsNumber(System.Text.Rune) +M:System.Text.Rune.IsPunctuation(System.Text.Rune) +M:System.Text.Rune.IsSeparator(System.Text.Rune) +M:System.Text.Rune.IsSymbol(System.Text.Rune) +M:System.Text.Rune.IsUpper(System.Text.Rune) +M:System.Text.Rune.IsValid(System.Int32) +M:System.Text.Rune.IsValid(System.UInt32) +M:System.Text.Rune.IsWhiteSpace(System.Text.Rune) +M:System.Text.Rune.ToLower(System.Text.Rune,System.Globalization.CultureInfo) +M:System.Text.Rune.ToLowerInvariant(System.Text.Rune) +M:System.Text.Rune.ToString +M:System.Text.Rune.ToUpper(System.Text.Rune,System.Globalization.CultureInfo) +M:System.Text.Rune.ToUpperInvariant(System.Text.Rune) +M:System.Text.Rune.TryCreate(System.Char,System.Char,System.Text.Rune@) +M:System.Text.Rune.TryCreate(System.Char,System.Text.Rune@) +M:System.Text.Rune.TryCreate(System.Int32,System.Text.Rune@) +M:System.Text.Rune.TryCreate(System.UInt32,System.Text.Rune@) +M:System.Text.Rune.TryEncodeToUtf16(System.Span{System.Char},System.Int32@) +M:System.Text.Rune.TryEncodeToUtf8(System.Span{System.Byte},System.Int32@) +M:System.Text.Rune.TryGetRuneAt(System.String,System.Int32,System.Text.Rune@) +M:System.Text.Rune.get_IsAscii +M:System.Text.Rune.get_IsBmp +M:System.Text.Rune.get_Plane +M:System.Text.Rune.get_ReplacementChar +M:System.Text.Rune.get_Utf16SequenceLength +M:System.Text.Rune.get_Utf8SequenceLength +M:System.Text.Rune.get_Value +M:System.Text.Rune.op_Equality(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.op_Explicit(System.Char)~System.Text.Rune +M:System.Text.Rune.op_Explicit(System.Int32)~System.Text.Rune +M:System.Text.Rune.op_Explicit(System.UInt32)~System.Text.Rune +M:System.Text.Rune.op_GreaterThan(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.op_GreaterThanOrEqual(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.op_Inequality(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.op_LessThan(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.op_LessThanOrEqual(System.Text.Rune,System.Text.Rune) +T:System.Text.StringBuilder +M:System.Text.StringBuilder.#ctor +M:System.Text.StringBuilder.#ctor(System.Int32) +M:System.Text.StringBuilder.#ctor(System.Int32,System.Int32) +M:System.Text.StringBuilder.#ctor(System.String) +M:System.Text.StringBuilder.#ctor(System.String,System.Int32) +M:System.Text.StringBuilder.#ctor(System.String,System.Int32,System.Int32,System.Int32) +M:System.Text.StringBuilder.Append(System.Boolean) +M:System.Text.StringBuilder.Append(System.Byte) +M:System.Text.StringBuilder.Append(System.Char) +M:System.Text.StringBuilder.Append(System.Char*,System.Int32) +M:System.Text.StringBuilder.Append(System.Char,System.Int32) +M:System.Text.StringBuilder.Append(System.Char[]) +M:System.Text.StringBuilder.Append(System.Char[],System.Int32,System.Int32) +M:System.Text.StringBuilder.Append(System.Decimal) +M:System.Text.StringBuilder.Append(System.Double) +M:System.Text.StringBuilder.Append(System.IFormatProvider,System.Text.StringBuilder.AppendInterpolatedStringHandler@) +M:System.Text.StringBuilder.Append(System.Int16) +M:System.Text.StringBuilder.Append(System.Int32) +M:System.Text.StringBuilder.Append(System.Int64) +M:System.Text.StringBuilder.Append(System.Object) +M:System.Text.StringBuilder.Append(System.ReadOnlyMemory{System.Char}) +M:System.Text.StringBuilder.Append(System.ReadOnlySpan{System.Char}) +M:System.Text.StringBuilder.Append(System.SByte) +M:System.Text.StringBuilder.Append(System.Single) +M:System.Text.StringBuilder.Append(System.String) +M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32) +M:System.Text.StringBuilder.Append(System.Text.StringBuilder) +M:System.Text.StringBuilder.Append(System.Text.StringBuilder,System.Int32,System.Int32) +M:System.Text.StringBuilder.Append(System.Text.StringBuilder.AppendInterpolatedStringHandler@) +M:System.Text.StringBuilder.Append(System.UInt16) +M:System.Text.StringBuilder.Append(System.UInt32) +M:System.Text.StringBuilder.Append(System.UInt64) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object,System.Object,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[]) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.Text.CompositeFormat,System.Object[]) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.Text.CompositeFormat,System.ReadOnlySpan{System.Object}) +M:System.Text.StringBuilder.AppendFormat(System.String,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.String,System.Object,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.String,System.Object,System.Object,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.String,System.Object[]) +M:System.Text.StringBuilder.AppendFormat``1(System.IFormatProvider,System.Text.CompositeFormat,``0) +M:System.Text.StringBuilder.AppendFormat``2(System.IFormatProvider,System.Text.CompositeFormat,``0,``1) +M:System.Text.StringBuilder.AppendFormat``3(System.IFormatProvider,System.Text.CompositeFormat,``0,``1,``2) +T:System.Text.StringBuilder.AppendInterpolatedStringHandler +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Text.StringBuilder) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Text.StringBuilder,System.IFormatProvider) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(System.Object,System.Int32,System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char}) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char},System.Int32,System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(System.String,System.Int32,System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32,System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0,System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendLiteral(System.String) +M:System.Text.StringBuilder.AppendJoin(System.Char,System.Object[]) +M:System.Text.StringBuilder.AppendJoin(System.Char,System.String[]) +M:System.Text.StringBuilder.AppendJoin(System.String,System.Object[]) +M:System.Text.StringBuilder.AppendJoin(System.String,System.String[]) +M:System.Text.StringBuilder.AppendJoin``1(System.Char,System.Collections.Generic.IEnumerable{``0}) +M:System.Text.StringBuilder.AppendJoin``1(System.String,System.Collections.Generic.IEnumerable{``0}) +M:System.Text.StringBuilder.AppendLine +M:System.Text.StringBuilder.AppendLine(System.IFormatProvider,System.Text.StringBuilder.AppendInterpolatedStringHandler@) +M:System.Text.StringBuilder.AppendLine(System.String) +M:System.Text.StringBuilder.AppendLine(System.Text.StringBuilder.AppendInterpolatedStringHandler@) +T:System.Text.StringBuilder.ChunkEnumerator +M:System.Text.StringBuilder.ChunkEnumerator.GetEnumerator +M:System.Text.StringBuilder.ChunkEnumerator.MoveNext +M:System.Text.StringBuilder.ChunkEnumerator.get_Current +M:System.Text.StringBuilder.Clear +M:System.Text.StringBuilder.CopyTo(System.Int32,System.Char[],System.Int32,System.Int32) +M:System.Text.StringBuilder.CopyTo(System.Int32,System.Span{System.Char},System.Int32) +M:System.Text.StringBuilder.EnsureCapacity(System.Int32) +M:System.Text.StringBuilder.Equals(System.ReadOnlySpan{System.Char}) +M:System.Text.StringBuilder.Equals(System.Text.StringBuilder) +M:System.Text.StringBuilder.GetChunks +M:System.Text.StringBuilder.Insert(System.Int32,System.Boolean) +M:System.Text.StringBuilder.Insert(System.Int32,System.Byte) +M:System.Text.StringBuilder.Insert(System.Int32,System.Char) +M:System.Text.StringBuilder.Insert(System.Int32,System.Char[]) +M:System.Text.StringBuilder.Insert(System.Int32,System.Char[],System.Int32,System.Int32) +M:System.Text.StringBuilder.Insert(System.Int32,System.Decimal) +M:System.Text.StringBuilder.Insert(System.Int32,System.Double) +M:System.Text.StringBuilder.Insert(System.Int32,System.Int16) +M:System.Text.StringBuilder.Insert(System.Int32,System.Int32) +M:System.Text.StringBuilder.Insert(System.Int32,System.Int64) +M:System.Text.StringBuilder.Insert(System.Int32,System.Object) +M:System.Text.StringBuilder.Insert(System.Int32,System.ReadOnlySpan{System.Char}) +M:System.Text.StringBuilder.Insert(System.Int32,System.SByte) +M:System.Text.StringBuilder.Insert(System.Int32,System.Single) +M:System.Text.StringBuilder.Insert(System.Int32,System.String) +M:System.Text.StringBuilder.Insert(System.Int32,System.String,System.Int32) +M:System.Text.StringBuilder.Insert(System.Int32,System.UInt16) +M:System.Text.StringBuilder.Insert(System.Int32,System.UInt32) +M:System.Text.StringBuilder.Insert(System.Int32,System.UInt64) +M:System.Text.StringBuilder.Remove(System.Int32,System.Int32) +M:System.Text.StringBuilder.Replace(System.Char,System.Char) +M:System.Text.StringBuilder.Replace(System.Char,System.Char,System.Int32,System.Int32) +M:System.Text.StringBuilder.Replace(System.String,System.String) +M:System.Text.StringBuilder.Replace(System.String,System.String,System.Int32,System.Int32) +M:System.Text.StringBuilder.ToString +M:System.Text.StringBuilder.ToString(System.Int32,System.Int32) +M:System.Text.StringBuilder.get_Capacity +M:System.Text.StringBuilder.get_Chars(System.Int32) +M:System.Text.StringBuilder.get_Length +M:System.Text.StringBuilder.get_MaxCapacity +M:System.Text.StringBuilder.set_Capacity(System.Int32) +M:System.Text.StringBuilder.set_Chars(System.Int32,System.Char) +M:System.Text.StringBuilder.set_Length(System.Int32) +T:System.Text.StringRuneEnumerator +M:System.Text.StringRuneEnumerator.GetEnumerator +M:System.Text.StringRuneEnumerator.MoveNext +M:System.Text.StringRuneEnumerator.get_Current +T:System.Text.Unicode.Utf8 +M:System.Text.Unicode.Utf8.FromUtf16(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@,System.Int32@,System.Boolean,System.Boolean) +M:System.Text.Unicode.Utf8.IsValid(System.ReadOnlySpan{System.Byte}) +M:System.Text.Unicode.Utf8.ToUtf16(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@,System.Int32@,System.Boolean,System.Boolean) +M:System.Text.Unicode.Utf8.TryWrite(System.Span{System.Byte},System.IFormatProvider,System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler@,System.Int32@) +M:System.Text.Unicode.Utf8.TryWrite(System.Span{System.Byte},System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler@,System.Int32@) +T:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Span{System.Byte},System.Boolean@) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Span{System.Byte},System.IFormatProvider,System.Boolean@) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.Object,System.Int32,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Byte}) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Byte},System.Int32,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char}) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char},System.Int32,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.String,System.Int32,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted``1(``0) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted``1(``0,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendLiteral(System.String) +T:System.Threading.CancellationToken +M:System.Threading.CancellationToken.#ctor(System.Boolean) +M:System.Threading.CancellationToken.Equals(System.Object) +M:System.Threading.CancellationToken.Equals(System.Threading.CancellationToken) +M:System.Threading.CancellationToken.GetHashCode +M:System.Threading.CancellationToken.Register(System.Action) +M:System.Threading.CancellationToken.Register(System.Action,System.Boolean) +M:System.Threading.CancellationToken.Register(System.Action{System.Object,System.Threading.CancellationToken},System.Object) +M:System.Threading.CancellationToken.Register(System.Action{System.Object},System.Object) +M:System.Threading.CancellationToken.Register(System.Action{System.Object},System.Object,System.Boolean) +M:System.Threading.CancellationToken.ThrowIfCancellationRequested +M:System.Threading.CancellationToken.UnsafeRegister(System.Action{System.Object,System.Threading.CancellationToken},System.Object) +M:System.Threading.CancellationToken.UnsafeRegister(System.Action{System.Object},System.Object) +M:System.Threading.CancellationToken.get_CanBeCanceled +M:System.Threading.CancellationToken.get_IsCancellationRequested +M:System.Threading.CancellationToken.get_None +M:System.Threading.CancellationToken.get_WaitHandle +M:System.Threading.CancellationToken.op_Equality(System.Threading.CancellationToken,System.Threading.CancellationToken) +M:System.Threading.CancellationToken.op_Inequality(System.Threading.CancellationToken,System.Threading.CancellationToken) +T:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.#ctor +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.#ctor(System.Threading.Tasks.TaskScheduler) +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.#ctor(System.Threading.Tasks.TaskScheduler,System.Int32) +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.#ctor(System.Threading.Tasks.TaskScheduler,System.Int32,System.Int32) +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.Complete +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.get_Completion +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.get_ConcurrentScheduler +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.get_ExclusiveScheduler +T:System.Threading.Tasks.ConfigureAwaitOptions +F:System.Threading.Tasks.ConfigureAwaitOptions.ContinueOnCapturedContext +F:System.Threading.Tasks.ConfigureAwaitOptions.ForceYielding +F:System.Threading.Tasks.ConfigureAwaitOptions.None +F:System.Threading.Tasks.ConfigureAwaitOptions.SuppressThrowing +T:System.Threading.Tasks.Sources.IValueTaskSource +M:System.Threading.Tasks.Sources.IValueTaskSource.GetResult(System.Int16) +M:System.Threading.Tasks.Sources.IValueTaskSource.GetStatus(System.Int16) +M:System.Threading.Tasks.Sources.IValueTaskSource.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) +T:System.Threading.Tasks.Sources.IValueTaskSource`1 +M:System.Threading.Tasks.Sources.IValueTaskSource`1.GetResult(System.Int16) +M:System.Threading.Tasks.Sources.IValueTaskSource`1.GetStatus(System.Int16) +M:System.Threading.Tasks.Sources.IValueTaskSource`1.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) +T:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1 +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetResult(System.Int16) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetStatus(System.Int16) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.Reset +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.SetException(System.Exception) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.SetResult(`0) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.get_RunContinuationsAsynchronously +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.get_Version +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.set_RunContinuationsAsynchronously(System.Boolean) +T:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags +F:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags.FlowExecutionContext +F:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags.None +F:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags.UseSchedulingContext +T:System.Threading.Tasks.Sources.ValueTaskSourceStatus +F:System.Threading.Tasks.Sources.ValueTaskSourceStatus.Canceled +F:System.Threading.Tasks.Sources.ValueTaskSourceStatus.Faulted +F:System.Threading.Tasks.Sources.ValueTaskSourceStatus.Pending +F:System.Threading.Tasks.Sources.ValueTaskSourceStatus.Succeeded +T:System.Threading.Tasks.Task +M:System.Threading.Tasks.Task.ConfigureAwait(System.Boolean) +M:System.Threading.Tasks.Task.ConfigureAwait(System.Threading.Tasks.ConfigureAwaitOptions) +M:System.Threading.Tasks.Task.Dispose +M:System.Threading.Tasks.Task.Dispose(System.Boolean) +M:System.Threading.Tasks.Task.FromCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.Task.FromCanceled``1(System.Threading.CancellationToken) +M:System.Threading.Tasks.Task.FromException(System.Exception) +M:System.Threading.Tasks.Task.FromException``1(System.Exception) +M:System.Threading.Tasks.Task.FromResult``1(``0) +M:System.Threading.Tasks.Task.GetAwaiter +M:System.Threading.Tasks.Task.get_AsyncState +M:System.Threading.Tasks.Task.get_CompletedTask +M:System.Threading.Tasks.Task.get_CreationOptions +M:System.Threading.Tasks.Task.get_CurrentId +M:System.Threading.Tasks.Task.get_Exception +M:System.Threading.Tasks.Task.get_Factory +M:System.Threading.Tasks.Task.get_Id +M:System.Threading.Tasks.Task.get_IsCanceled +M:System.Threading.Tasks.Task.get_IsCompleted +M:System.Threading.Tasks.Task.get_IsCompletedSuccessfully +M:System.Threading.Tasks.Task.get_IsFaulted +M:System.Threading.Tasks.Task.get_Status +T:System.Threading.Tasks.TaskAsyncEnumerableExtensions +M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.ConfigureAwait(System.IAsyncDisposable,System.Boolean) +M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.ConfigureAwait``1(System.Collections.Generic.IAsyncEnumerable{``0},System.Boolean) +M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.ToBlockingEnumerable``1(System.Collections.Generic.IAsyncEnumerable{``0},System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.WithCancellation``1(System.Collections.Generic.IAsyncEnumerable{``0},System.Threading.CancellationToken) +T:System.Threading.Tasks.TaskCanceledException +M:System.Threading.Tasks.TaskCanceledException.#ctor +M:System.Threading.Tasks.TaskCanceledException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Threading.Tasks.TaskCanceledException.#ctor(System.String) +M:System.Threading.Tasks.TaskCanceledException.#ctor(System.String,System.Exception) +M:System.Threading.Tasks.TaskCanceledException.#ctor(System.String,System.Exception,System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCanceledException.#ctor(System.Threading.Tasks.Task) +M:System.Threading.Tasks.TaskCanceledException.get_Task +T:System.Threading.Tasks.TaskCompletionSource +M:System.Threading.Tasks.TaskCompletionSource.#ctor +M:System.Threading.Tasks.TaskCompletionSource.#ctor(System.Object) +M:System.Threading.Tasks.TaskCompletionSource.#ctor(System.Object,System.Threading.Tasks.TaskCreationOptions) +M:System.Threading.Tasks.TaskCompletionSource.#ctor(System.Threading.Tasks.TaskCreationOptions) +M:System.Threading.Tasks.TaskCompletionSource.SetCanceled +M:System.Threading.Tasks.TaskCompletionSource.SetCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCompletionSource.SetException(System.Collections.Generic.IEnumerable{System.Exception}) +M:System.Threading.Tasks.TaskCompletionSource.SetException(System.Exception) +M:System.Threading.Tasks.TaskCompletionSource.SetResult +M:System.Threading.Tasks.TaskCompletionSource.TrySetCanceled +M:System.Threading.Tasks.TaskCompletionSource.TrySetCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCompletionSource.TrySetException(System.Collections.Generic.IEnumerable{System.Exception}) +M:System.Threading.Tasks.TaskCompletionSource.TrySetException(System.Exception) +M:System.Threading.Tasks.TaskCompletionSource.TrySetResult +M:System.Threading.Tasks.TaskCompletionSource.get_Task +T:System.Threading.Tasks.TaskCompletionSource`1 +M:System.Threading.Tasks.TaskCompletionSource`1.#ctor +M:System.Threading.Tasks.TaskCompletionSource`1.#ctor(System.Object) +M:System.Threading.Tasks.TaskCompletionSource`1.#ctor(System.Object,System.Threading.Tasks.TaskCreationOptions) +M:System.Threading.Tasks.TaskCompletionSource`1.#ctor(System.Threading.Tasks.TaskCreationOptions) +M:System.Threading.Tasks.TaskCompletionSource`1.SetCanceled +M:System.Threading.Tasks.TaskCompletionSource`1.SetCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCompletionSource`1.SetException(System.Collections.Generic.IEnumerable{System.Exception}) +M:System.Threading.Tasks.TaskCompletionSource`1.SetException(System.Exception) +M:System.Threading.Tasks.TaskCompletionSource`1.SetResult(`0) +M:System.Threading.Tasks.TaskCompletionSource`1.TrySetCanceled +M:System.Threading.Tasks.TaskCompletionSource`1.TrySetCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCompletionSource`1.TrySetException(System.Collections.Generic.IEnumerable{System.Exception}) +M:System.Threading.Tasks.TaskCompletionSource`1.TrySetException(System.Exception) +M:System.Threading.Tasks.TaskCompletionSource`1.TrySetResult(`0) +M:System.Threading.Tasks.TaskCompletionSource`1.get_Task +T:System.Threading.Tasks.TaskContinuationOptions +F:System.Threading.Tasks.TaskContinuationOptions.AttachedToParent +F:System.Threading.Tasks.TaskContinuationOptions.DenyChildAttach +F:System.Threading.Tasks.TaskContinuationOptions.ExecuteSynchronously +F:System.Threading.Tasks.TaskContinuationOptions.HideScheduler +F:System.Threading.Tasks.TaskContinuationOptions.LazyCancellation +F:System.Threading.Tasks.TaskContinuationOptions.LongRunning +F:System.Threading.Tasks.TaskContinuationOptions.None +F:System.Threading.Tasks.TaskContinuationOptions.NotOnCanceled +F:System.Threading.Tasks.TaskContinuationOptions.NotOnFaulted +F:System.Threading.Tasks.TaskContinuationOptions.NotOnRanToCompletion +F:System.Threading.Tasks.TaskContinuationOptions.OnlyOnCanceled +F:System.Threading.Tasks.TaskContinuationOptions.OnlyOnFaulted +F:System.Threading.Tasks.TaskContinuationOptions.OnlyOnRanToCompletion +F:System.Threading.Tasks.TaskContinuationOptions.PreferFairness +F:System.Threading.Tasks.TaskContinuationOptions.RunContinuationsAsynchronously +T:System.Threading.Tasks.TaskCreationOptions +F:System.Threading.Tasks.TaskCreationOptions.AttachedToParent +F:System.Threading.Tasks.TaskCreationOptions.DenyChildAttach +F:System.Threading.Tasks.TaskCreationOptions.HideScheduler +F:System.Threading.Tasks.TaskCreationOptions.LongRunning +F:System.Threading.Tasks.TaskCreationOptions.None +F:System.Threading.Tasks.TaskCreationOptions.PreferFairness +F:System.Threading.Tasks.TaskCreationOptions.RunContinuationsAsynchronously +T:System.Threading.Tasks.TaskExtensions +M:System.Threading.Tasks.TaskExtensions.Unwrap(System.Threading.Tasks.Task{System.Threading.Tasks.Task}) +M:System.Threading.Tasks.TaskExtensions.Unwrap``1(System.Threading.Tasks.Task{System.Threading.Tasks.Task{``0}}) +T:System.Threading.Tasks.TaskSchedulerException +M:System.Threading.Tasks.TaskSchedulerException.#ctor +M:System.Threading.Tasks.TaskSchedulerException.#ctor(System.Exception) +M:System.Threading.Tasks.TaskSchedulerException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Threading.Tasks.TaskSchedulerException.#ctor(System.String) +M:System.Threading.Tasks.TaskSchedulerException.#ctor(System.String,System.Exception) +T:System.Threading.Tasks.TaskStatus +F:System.Threading.Tasks.TaskStatus.Canceled +F:System.Threading.Tasks.TaskStatus.Created +F:System.Threading.Tasks.TaskStatus.Faulted +F:System.Threading.Tasks.TaskStatus.RanToCompletion +F:System.Threading.Tasks.TaskStatus.Running +F:System.Threading.Tasks.TaskStatus.WaitingForActivation +F:System.Threading.Tasks.TaskStatus.WaitingForChildrenToComplete +F:System.Threading.Tasks.TaskStatus.WaitingToRun +T:System.Threading.Tasks.TaskToAsyncResult +M:System.Threading.Tasks.TaskToAsyncResult.Begin(System.Threading.Tasks.Task,System.AsyncCallback,System.Object) +M:System.Threading.Tasks.TaskToAsyncResult.End(System.IAsyncResult) +M:System.Threading.Tasks.TaskToAsyncResult.End``1(System.IAsyncResult) +M:System.Threading.Tasks.TaskToAsyncResult.Unwrap(System.IAsyncResult) +M:System.Threading.Tasks.TaskToAsyncResult.Unwrap``1(System.IAsyncResult) +T:System.Threading.Tasks.Task`1 +M:System.Threading.Tasks.Task`1.ConfigureAwait(System.Boolean) +M:System.Threading.Tasks.Task`1.ConfigureAwait(System.Threading.Tasks.ConfigureAwaitOptions) +M:System.Threading.Tasks.Task`1.GetAwaiter +M:System.Threading.Tasks.Task`1.get_Factory +M:System.Threading.Tasks.Task`1.get_Result +T:System.Threading.Tasks.UnobservedTaskExceptionEventArgs +M:System.Threading.Tasks.UnobservedTaskExceptionEventArgs.#ctor(System.AggregateException) +M:System.Threading.Tasks.UnobservedTaskExceptionEventArgs.SetObserved +M:System.Threading.Tasks.UnobservedTaskExceptionEventArgs.get_Exception +M:System.Threading.Tasks.UnobservedTaskExceptionEventArgs.get_Observed +T:System.Threading.Tasks.ValueTask +M:System.Threading.Tasks.ValueTask.#ctor(System.Threading.Tasks.Sources.IValueTaskSource,System.Int16) +M:System.Threading.Tasks.ValueTask.#ctor(System.Threading.Tasks.Task) +M:System.Threading.Tasks.ValueTask.AsTask +M:System.Threading.Tasks.ValueTask.ConfigureAwait(System.Boolean) +M:System.Threading.Tasks.ValueTask.Equals(System.Object) +M:System.Threading.Tasks.ValueTask.Equals(System.Threading.Tasks.ValueTask) +M:System.Threading.Tasks.ValueTask.FromCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.ValueTask.FromCanceled``1(System.Threading.CancellationToken) +M:System.Threading.Tasks.ValueTask.FromException(System.Exception) +M:System.Threading.Tasks.ValueTask.FromException``1(System.Exception) +M:System.Threading.Tasks.ValueTask.FromResult``1(``0) +M:System.Threading.Tasks.ValueTask.GetAwaiter +M:System.Threading.Tasks.ValueTask.GetHashCode +M:System.Threading.Tasks.ValueTask.Preserve +M:System.Threading.Tasks.ValueTask.get_CompletedTask +M:System.Threading.Tasks.ValueTask.get_IsCanceled +M:System.Threading.Tasks.ValueTask.get_IsCompleted +M:System.Threading.Tasks.ValueTask.get_IsCompletedSuccessfully +M:System.Threading.Tasks.ValueTask.get_IsFaulted +M:System.Threading.Tasks.ValueTask.op_Equality(System.Threading.Tasks.ValueTask,System.Threading.Tasks.ValueTask) +M:System.Threading.Tasks.ValueTask.op_Inequality(System.Threading.Tasks.ValueTask,System.Threading.Tasks.ValueTask) +T:System.Threading.Tasks.ValueTask`1 +M:System.Threading.Tasks.ValueTask`1.#ctor(System.Threading.Tasks.Sources.IValueTaskSource{`0},System.Int16) +M:System.Threading.Tasks.ValueTask`1.#ctor(System.Threading.Tasks.Task{`0}) +M:System.Threading.Tasks.ValueTask`1.#ctor(`0) +M:System.Threading.Tasks.ValueTask`1.AsTask +M:System.Threading.Tasks.ValueTask`1.ConfigureAwait(System.Boolean) +M:System.Threading.Tasks.ValueTask`1.Equals(System.Object) +M:System.Threading.Tasks.ValueTask`1.Equals(System.Threading.Tasks.ValueTask{`0}) +M:System.Threading.Tasks.ValueTask`1.GetAwaiter +M:System.Threading.Tasks.ValueTask`1.GetHashCode +M:System.Threading.Tasks.ValueTask`1.Preserve +M:System.Threading.Tasks.ValueTask`1.ToString +M:System.Threading.Tasks.ValueTask`1.get_IsCanceled +M:System.Threading.Tasks.ValueTask`1.get_IsCompleted +M:System.Threading.Tasks.ValueTask`1.get_IsCompletedSuccessfully +M:System.Threading.Tasks.ValueTask`1.get_IsFaulted +M:System.Threading.Tasks.ValueTask`1.get_Result +M:System.Threading.Tasks.ValueTask`1.op_Equality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0}) +M:System.Threading.Tasks.ValueTask`1.op_Inequality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0}) +T:System.TimeOnly +M:System.TimeOnly.#ctor(System.Int32,System.Int32) +M:System.TimeOnly.#ctor(System.Int32,System.Int32,System.Int32) +M:System.TimeOnly.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.TimeOnly.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.TimeOnly.#ctor(System.Int64) +M:System.TimeOnly.Add(System.TimeSpan) +M:System.TimeOnly.Add(System.TimeSpan,System.Int32@) +M:System.TimeOnly.AddHours(System.Double) +M:System.TimeOnly.AddHours(System.Double,System.Int32@) +M:System.TimeOnly.AddMinutes(System.Double) +M:System.TimeOnly.AddMinutes(System.Double,System.Int32@) +M:System.TimeOnly.CompareTo(System.Object) +M:System.TimeOnly.CompareTo(System.TimeOnly) +M:System.TimeOnly.Deconstruct(System.Int32@,System.Int32@) +M:System.TimeOnly.Deconstruct(System.Int32@,System.Int32@,System.Int32@) +M:System.TimeOnly.Deconstruct(System.Int32@,System.Int32@,System.Int32@,System.Int32@) +M:System.TimeOnly.Deconstruct(System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@) +M:System.TimeOnly.Equals(System.Object) +M:System.TimeOnly.Equals(System.TimeOnly) +M:System.TimeOnly.FromDateTime(System.DateTime) +M:System.TimeOnly.FromTimeSpan(System.TimeSpan) +M:System.TimeOnly.GetHashCode +M:System.TimeOnly.IsBetween(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeOnly.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.Parse(System.String) +M:System.TimeOnly.Parse(System.String,System.IFormatProvider) +M:System.TimeOnly.Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.ParseExact(System.ReadOnlySpan{System.Char},System.String[]) +M:System.TimeOnly.ParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.ParseExact(System.String,System.String) +M:System.TimeOnly.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.ParseExact(System.String,System.String[]) +M:System.TimeOnly.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.ToLongTimeString +M:System.TimeOnly.ToShortTimeString +M:System.TimeOnly.ToString +M:System.TimeOnly.ToString(System.IFormatProvider) +M:System.TimeOnly.ToString(System.String) +M:System.TimeOnly.ToString(System.String,System.IFormatProvider) +M:System.TimeOnly.ToTimeSpan +M:System.TimeOnly.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeOnly.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeOnly.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.TimeOnly@) +M:System.TimeOnly.TryParse(System.ReadOnlySpan{System.Char},System.TimeOnly@) +M:System.TimeOnly.TryParse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParse(System.String,System.IFormatProvider,System.TimeOnly@) +M:System.TimeOnly.TryParse(System.String,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.String,System.String,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.String,System.String[],System.TimeOnly@) +M:System.TimeOnly.get_Hour +M:System.TimeOnly.get_MaxValue +M:System.TimeOnly.get_Microsecond +M:System.TimeOnly.get_Millisecond +M:System.TimeOnly.get_MinValue +M:System.TimeOnly.get_Minute +M:System.TimeOnly.get_Nanosecond +M:System.TimeOnly.get_Second +M:System.TimeOnly.get_Ticks +M:System.TimeOnly.op_Equality(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_GreaterThan(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_GreaterThanOrEqual(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_Inequality(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_LessThan(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_LessThanOrEqual(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_Subtraction(System.TimeOnly,System.TimeOnly) +T:System.TimeProvider +M:System.TimeProvider.#ctor +M:System.TimeProvider.CreateTimer(System.Threading.TimerCallback,System.Object,System.TimeSpan,System.TimeSpan) +M:System.TimeProvider.GetElapsedTime(System.Int64) +M:System.TimeProvider.GetElapsedTime(System.Int64,System.Int64) +M:System.TimeProvider.GetLocalNow +M:System.TimeProvider.GetTimestamp +M:System.TimeProvider.GetUtcNow +M:System.TimeProvider.get_LocalTimeZone +M:System.TimeProvider.get_System +M:System.TimeProvider.get_TimestampFrequency +T:System.TimeSpan +M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32) +M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.TimeSpan.#ctor(System.Int64) +M:System.TimeSpan.Add(System.TimeSpan) +M:System.TimeSpan.Compare(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.CompareTo(System.Object) +M:System.TimeSpan.CompareTo(System.TimeSpan) +M:System.TimeSpan.Divide(System.Double) +M:System.TimeSpan.Divide(System.TimeSpan) +M:System.TimeSpan.Duration +M:System.TimeSpan.Equals(System.Object) +M:System.TimeSpan.Equals(System.TimeSpan) +M:System.TimeSpan.Equals(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.FromDays(System.Double) +M:System.TimeSpan.FromHours(System.Double) +M:System.TimeSpan.FromMicroseconds(System.Double) +M:System.TimeSpan.FromMilliseconds(System.Double) +M:System.TimeSpan.FromMinutes(System.Double) +M:System.TimeSpan.FromSeconds(System.Double) +M:System.TimeSpan.FromTicks(System.Int64) +M:System.TimeSpan.GetHashCode +F:System.TimeSpan.MaxValue +F:System.TimeSpan.MinValue +M:System.TimeSpan.Multiply(System.Double) +F:System.TimeSpan.NanosecondsPerTick +M:System.TimeSpan.Negate +M:System.TimeSpan.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeSpan.Parse(System.String) +M:System.TimeSpan.Parse(System.String,System.IFormatProvider) +M:System.TimeSpan.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.TimeSpanStyles) +M:System.TimeSpan.ParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.TimeSpanStyles) +M:System.TimeSpan.ParseExact(System.String,System.String,System.IFormatProvider) +M:System.TimeSpan.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.TimeSpanStyles) +M:System.TimeSpan.ParseExact(System.String,System.String[],System.IFormatProvider) +M:System.TimeSpan.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.TimeSpanStyles) +M:System.TimeSpan.Subtract(System.TimeSpan) +F:System.TimeSpan.TicksPerDay +F:System.TimeSpan.TicksPerHour +F:System.TimeSpan.TicksPerMicrosecond +F:System.TimeSpan.TicksPerMillisecond +F:System.TimeSpan.TicksPerMinute +F:System.TimeSpan.TicksPerSecond +M:System.TimeSpan.ToString +M:System.TimeSpan.ToString(System.String) +M:System.TimeSpan.ToString(System.String,System.IFormatProvider) +M:System.TimeSpan.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeSpan.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeSpan.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.TimeSpan@) +M:System.TimeSpan.TryParse(System.ReadOnlySpan{System.Char},System.TimeSpan@) +M:System.TimeSpan.TryParse(System.String,System.IFormatProvider,System.TimeSpan@) +M:System.TimeSpan.TryParse(System.String,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.TimeSpanStyles,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.TimeSpanStyles,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.TimeSpanStyles,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.String,System.String,System.IFormatProvider,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.TimeSpanStyles,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.String,System.String[],System.IFormatProvider,System.TimeSpan@) +F:System.TimeSpan.Zero +M:System.TimeSpan.get_Days +M:System.TimeSpan.get_Hours +M:System.TimeSpan.get_Microseconds +M:System.TimeSpan.get_Milliseconds +M:System.TimeSpan.get_Minutes +M:System.TimeSpan.get_Nanoseconds +M:System.TimeSpan.get_Seconds +M:System.TimeSpan.get_Ticks +M:System.TimeSpan.get_TotalDays +M:System.TimeSpan.get_TotalHours +M:System.TimeSpan.get_TotalMicroseconds +M:System.TimeSpan.get_TotalMilliseconds +M:System.TimeSpan.get_TotalMinutes +M:System.TimeSpan.get_TotalNanoseconds +M:System.TimeSpan.get_TotalSeconds +M:System.TimeSpan.op_Addition(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_Division(System.TimeSpan,System.Double) +M:System.TimeSpan.op_Division(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_Equality(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_GreaterThan(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_GreaterThanOrEqual(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_Inequality(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_LessThan(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_LessThanOrEqual(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_Multiply(System.Double,System.TimeSpan) +M:System.TimeSpan.op_Multiply(System.TimeSpan,System.Double) +M:System.TimeSpan.op_Subtraction(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_UnaryNegation(System.TimeSpan) +M:System.TimeSpan.op_UnaryPlus(System.TimeSpan) +T:System.TimeZone +M:System.TimeZone.#ctor +M:System.TimeZone.GetDaylightChanges(System.Int32) +M:System.TimeZone.GetUtcOffset(System.DateTime) +M:System.TimeZone.IsDaylightSavingTime(System.DateTime) +M:System.TimeZone.IsDaylightSavingTime(System.DateTime,System.Globalization.DaylightTime) +M:System.TimeZone.ToLocalTime(System.DateTime) +M:System.TimeZone.ToUniversalTime(System.DateTime) +M:System.TimeZone.get_CurrentTimeZone +M:System.TimeZone.get_DaylightName +M:System.TimeZone.get_StandardName +T:System.TimeZoneInfo +T:System.TimeZoneInfo.AdjustmentRule +M:System.TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo.TransitionTime,System.TimeZoneInfo.TransitionTime) +M:System.TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo.TransitionTime,System.TimeZoneInfo.TransitionTime,System.TimeSpan) +M:System.TimeZoneInfo.AdjustmentRule.Equals(System.Object) +M:System.TimeZoneInfo.AdjustmentRule.Equals(System.TimeZoneInfo.AdjustmentRule) +M:System.TimeZoneInfo.AdjustmentRule.GetHashCode +M:System.TimeZoneInfo.AdjustmentRule.get_BaseUtcOffsetDelta +M:System.TimeZoneInfo.AdjustmentRule.get_DateEnd +M:System.TimeZoneInfo.AdjustmentRule.get_DateStart +M:System.TimeZoneInfo.AdjustmentRule.get_DaylightDelta +M:System.TimeZoneInfo.AdjustmentRule.get_DaylightTransitionEnd +M:System.TimeZoneInfo.AdjustmentRule.get_DaylightTransitionStart +M:System.TimeZoneInfo.ClearCachedData +M:System.TimeZoneInfo.ConvertTime(System.DateTime,System.TimeZoneInfo) +M:System.TimeZoneInfo.ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo) +M:System.TimeZoneInfo.ConvertTime(System.DateTimeOffset,System.TimeZoneInfo) +M:System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(System.DateTime,System.String) +M:System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(System.DateTime,System.String,System.String) +M:System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(System.DateTimeOffset,System.String) +M:System.TimeZoneInfo.ConvertTimeFromUtc(System.DateTime,System.TimeZoneInfo) +M:System.TimeZoneInfo.ConvertTimeToUtc(System.DateTime) +M:System.TimeZoneInfo.ConvertTimeToUtc(System.DateTime,System.TimeZoneInfo) +M:System.TimeZoneInfo.CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String) +M:System.TimeZoneInfo.CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo.AdjustmentRule[]) +M:System.TimeZoneInfo.CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo.AdjustmentRule[],System.Boolean) +M:System.TimeZoneInfo.Equals(System.Object) +M:System.TimeZoneInfo.Equals(System.TimeZoneInfo) +M:System.TimeZoneInfo.FindSystemTimeZoneById(System.String) +M:System.TimeZoneInfo.FromSerializedString(System.String) +M:System.TimeZoneInfo.GetAdjustmentRules +M:System.TimeZoneInfo.GetAmbiguousTimeOffsets(System.DateTime) +M:System.TimeZoneInfo.GetAmbiguousTimeOffsets(System.DateTimeOffset) +M:System.TimeZoneInfo.GetHashCode +M:System.TimeZoneInfo.GetSystemTimeZones +M:System.TimeZoneInfo.GetSystemTimeZones(System.Boolean) +M:System.TimeZoneInfo.GetUtcOffset(System.DateTime) +M:System.TimeZoneInfo.GetUtcOffset(System.DateTimeOffset) +M:System.TimeZoneInfo.HasSameRules(System.TimeZoneInfo) +M:System.TimeZoneInfo.IsAmbiguousTime(System.DateTime) +M:System.TimeZoneInfo.IsAmbiguousTime(System.DateTimeOffset) +M:System.TimeZoneInfo.IsDaylightSavingTime(System.DateTime) +M:System.TimeZoneInfo.IsDaylightSavingTime(System.DateTimeOffset) +M:System.TimeZoneInfo.IsInvalidTime(System.DateTime) +M:System.TimeZoneInfo.ToSerializedString +M:System.TimeZoneInfo.ToString +T:System.TimeZoneInfo.TransitionTime +M:System.TimeZoneInfo.TransitionTime.CreateFixedDateRule(System.DateTime,System.Int32,System.Int32) +M:System.TimeZoneInfo.TransitionTime.CreateFloatingDateRule(System.DateTime,System.Int32,System.Int32,System.DayOfWeek) +M:System.TimeZoneInfo.TransitionTime.Equals(System.Object) +M:System.TimeZoneInfo.TransitionTime.Equals(System.TimeZoneInfo.TransitionTime) +M:System.TimeZoneInfo.TransitionTime.GetHashCode +M:System.TimeZoneInfo.TransitionTime.get_Day +M:System.TimeZoneInfo.TransitionTime.get_DayOfWeek +M:System.TimeZoneInfo.TransitionTime.get_IsFixedDateRule +M:System.TimeZoneInfo.TransitionTime.get_Month +M:System.TimeZoneInfo.TransitionTime.get_TimeOfDay +M:System.TimeZoneInfo.TransitionTime.get_Week +M:System.TimeZoneInfo.TransitionTime.op_Equality(System.TimeZoneInfo.TransitionTime,System.TimeZoneInfo.TransitionTime) +M:System.TimeZoneInfo.TransitionTime.op_Inequality(System.TimeZoneInfo.TransitionTime,System.TimeZoneInfo.TransitionTime) +M:System.TimeZoneInfo.TryConvertIanaIdToWindowsId(System.String,System.String@) +M:System.TimeZoneInfo.TryConvertWindowsIdToIanaId(System.String,System.String,System.String@) +M:System.TimeZoneInfo.TryConvertWindowsIdToIanaId(System.String,System.String@) +M:System.TimeZoneInfo.TryFindSystemTimeZoneById(System.String,System.TimeZoneInfo@) +M:System.TimeZoneInfo.get_BaseUtcOffset +M:System.TimeZoneInfo.get_DaylightName +M:System.TimeZoneInfo.get_DisplayName +M:System.TimeZoneInfo.get_HasIanaId +M:System.TimeZoneInfo.get_Id +M:System.TimeZoneInfo.get_Local +M:System.TimeZoneInfo.get_StandardName +M:System.TimeZoneInfo.get_SupportsDaylightSavingTime +M:System.TimeZoneInfo.get_Utc +T:System.TimeZoneNotFoundException +M:System.TimeZoneNotFoundException.#ctor +M:System.TimeZoneNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TimeZoneNotFoundException.#ctor(System.String) +M:System.TimeZoneNotFoundException.#ctor(System.String,System.Exception) +T:System.TimeoutException +M:System.TimeoutException.#ctor +M:System.TimeoutException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TimeoutException.#ctor(System.String) +M:System.TimeoutException.#ctor(System.String,System.Exception) +T:System.Tuple +M:System.Tuple.Create``1(``0) +M:System.Tuple.Create``2(``0,``1) +M:System.Tuple.Create``3(``0,``1,``2) +M:System.Tuple.Create``4(``0,``1,``2,``3) +M:System.Tuple.Create``5(``0,``1,``2,``3,``4) +M:System.Tuple.Create``6(``0,``1,``2,``3,``4,``5) +M:System.Tuple.Create``7(``0,``1,``2,``3,``4,``5,``6) +M:System.Tuple.Create``8(``0,``1,``2,``3,``4,``5,``6,``7) +T:System.TupleExtensions +M:System.TupleExtensions.Deconstruct``1(System.Tuple{``0},``0@) +M:System.TupleExtensions.Deconstruct``10(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@) +M:System.TupleExtensions.Deconstruct``11(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@) +M:System.TupleExtensions.Deconstruct``12(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@) +M:System.TupleExtensions.Deconstruct``13(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@) +M:System.TupleExtensions.Deconstruct``14(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@) +M:System.TupleExtensions.Deconstruct``15(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@) +M:System.TupleExtensions.Deconstruct``16(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@) +M:System.TupleExtensions.Deconstruct``17(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@,``16@) +M:System.TupleExtensions.Deconstruct``18(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@,``16@,``17@) +M:System.TupleExtensions.Deconstruct``19(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@,``16@,``17@,``18@) +M:System.TupleExtensions.Deconstruct``2(System.Tuple{``0,``1},``0@,``1@) +M:System.TupleExtensions.Deconstruct``20(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18,``19}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@,``16@,``17@,``18@,``19@) +M:System.TupleExtensions.Deconstruct``21(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18,``19,``20}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@,``16@,``17@,``18@,``19@,``20@) +M:System.TupleExtensions.Deconstruct``3(System.Tuple{``0,``1,``2},``0@,``1@,``2@) +M:System.TupleExtensions.Deconstruct``4(System.Tuple{``0,``1,``2,``3},``0@,``1@,``2@,``3@) +M:System.TupleExtensions.Deconstruct``5(System.Tuple{``0,``1,``2,``3,``4},``0@,``1@,``2@,``3@,``4@) +M:System.TupleExtensions.Deconstruct``6(System.Tuple{``0,``1,``2,``3,``4,``5},``0@,``1@,``2@,``3@,``4@,``5@) +M:System.TupleExtensions.Deconstruct``7(System.Tuple{``0,``1,``2,``3,``4,``5,``6},``0@,``1@,``2@,``3@,``4@,``5@,``6@) +M:System.TupleExtensions.Deconstruct``8(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@) +M:System.TupleExtensions.Deconstruct``9(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@) +M:System.TupleExtensions.ToTuple``1(System.ValueTuple{``0}) +M:System.TupleExtensions.ToTuple``10(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9}}) +M:System.TupleExtensions.ToTuple``11(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10}}) +M:System.TupleExtensions.ToTuple``12(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11}}) +M:System.TupleExtensions.ToTuple``13(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12}}) +M:System.TupleExtensions.ToTuple``14(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13}}) +M:System.TupleExtensions.ToTuple``15(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14}}}) +M:System.TupleExtensions.ToTuple``16(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15}}}) +M:System.TupleExtensions.ToTuple``17(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15,``16}}}) +M:System.TupleExtensions.ToTuple``18(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15,``16,``17}}}) +M:System.TupleExtensions.ToTuple``19(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15,``16,``17,``18}}}) +M:System.TupleExtensions.ToTuple``2(System.ValueTuple{``0,``1}) +M:System.TupleExtensions.ToTuple``20(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15,``16,``17,``18,``19}}}) +M:System.TupleExtensions.ToTuple``21(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15,``16,``17,``18,``19,``20}}}) +M:System.TupleExtensions.ToTuple``3(System.ValueTuple{``0,``1,``2}) +M:System.TupleExtensions.ToTuple``4(System.ValueTuple{``0,``1,``2,``3}) +M:System.TupleExtensions.ToTuple``5(System.ValueTuple{``0,``1,``2,``3,``4}) +M:System.TupleExtensions.ToTuple``6(System.ValueTuple{``0,``1,``2,``3,``4,``5}) +M:System.TupleExtensions.ToTuple``7(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6}) +M:System.TupleExtensions.ToTuple``8(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7}}) +M:System.TupleExtensions.ToTuple``9(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8}}) +M:System.TupleExtensions.ToValueTuple``1(System.Tuple{``0}) +M:System.TupleExtensions.ToValueTuple``10(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9}}) +M:System.TupleExtensions.ToValueTuple``11(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10}}) +M:System.TupleExtensions.ToValueTuple``12(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11}}) +M:System.TupleExtensions.ToValueTuple``13(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12}}) +M:System.TupleExtensions.ToValueTuple``14(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13}}) +M:System.TupleExtensions.ToValueTuple``15(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14}}}) +M:System.TupleExtensions.ToValueTuple``16(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15}}}) +M:System.TupleExtensions.ToValueTuple``17(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16}}}) +M:System.TupleExtensions.ToValueTuple``18(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17}}}) +M:System.TupleExtensions.ToValueTuple``19(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18}}}) +M:System.TupleExtensions.ToValueTuple``2(System.Tuple{``0,``1}) +M:System.TupleExtensions.ToValueTuple``20(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18,``19}}}) +M:System.TupleExtensions.ToValueTuple``21(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18,``19,``20}}}) +M:System.TupleExtensions.ToValueTuple``3(System.Tuple{``0,``1,``2}) +M:System.TupleExtensions.ToValueTuple``4(System.Tuple{``0,``1,``2,``3}) +M:System.TupleExtensions.ToValueTuple``5(System.Tuple{``0,``1,``2,``3,``4}) +M:System.TupleExtensions.ToValueTuple``6(System.Tuple{``0,``1,``2,``3,``4,``5}) +M:System.TupleExtensions.ToValueTuple``7(System.Tuple{``0,``1,``2,``3,``4,``5,``6}) +M:System.TupleExtensions.ToValueTuple``8(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7}}) +M:System.TupleExtensions.ToValueTuple``9(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8}}) +T:System.Tuple`1 +M:System.Tuple`1.#ctor(`0) +M:System.Tuple`1.Equals(System.Object) +M:System.Tuple`1.GetHashCode +M:System.Tuple`1.ToString +M:System.Tuple`1.get_Item1 +T:System.Tuple`2 +M:System.Tuple`2.#ctor(`0,`1) +M:System.Tuple`2.Equals(System.Object) +M:System.Tuple`2.GetHashCode +M:System.Tuple`2.ToString +M:System.Tuple`2.get_Item1 +M:System.Tuple`2.get_Item2 +T:System.Tuple`3 +M:System.Tuple`3.#ctor(`0,`1,`2) +M:System.Tuple`3.Equals(System.Object) +M:System.Tuple`3.GetHashCode +M:System.Tuple`3.ToString +M:System.Tuple`3.get_Item1 +M:System.Tuple`3.get_Item2 +M:System.Tuple`3.get_Item3 +T:System.Tuple`4 +M:System.Tuple`4.#ctor(`0,`1,`2,`3) +M:System.Tuple`4.Equals(System.Object) +M:System.Tuple`4.GetHashCode +M:System.Tuple`4.ToString +M:System.Tuple`4.get_Item1 +M:System.Tuple`4.get_Item2 +M:System.Tuple`4.get_Item3 +M:System.Tuple`4.get_Item4 +T:System.Tuple`5 +M:System.Tuple`5.#ctor(`0,`1,`2,`3,`4) +M:System.Tuple`5.Equals(System.Object) +M:System.Tuple`5.GetHashCode +M:System.Tuple`5.ToString +M:System.Tuple`5.get_Item1 +M:System.Tuple`5.get_Item2 +M:System.Tuple`5.get_Item3 +M:System.Tuple`5.get_Item4 +M:System.Tuple`5.get_Item5 +T:System.Tuple`6 +M:System.Tuple`6.#ctor(`0,`1,`2,`3,`4,`5) +M:System.Tuple`6.Equals(System.Object) +M:System.Tuple`6.GetHashCode +M:System.Tuple`6.ToString +M:System.Tuple`6.get_Item1 +M:System.Tuple`6.get_Item2 +M:System.Tuple`6.get_Item3 +M:System.Tuple`6.get_Item4 +M:System.Tuple`6.get_Item5 +M:System.Tuple`6.get_Item6 +T:System.Tuple`7 +M:System.Tuple`7.#ctor(`0,`1,`2,`3,`4,`5,`6) +M:System.Tuple`7.Equals(System.Object) +M:System.Tuple`7.GetHashCode +M:System.Tuple`7.ToString +M:System.Tuple`7.get_Item1 +M:System.Tuple`7.get_Item2 +M:System.Tuple`7.get_Item3 +M:System.Tuple`7.get_Item4 +M:System.Tuple`7.get_Item5 +M:System.Tuple`7.get_Item6 +M:System.Tuple`7.get_Item7 +T:System.Tuple`8 +M:System.Tuple`8.#ctor(`0,`1,`2,`3,`4,`5,`6,`7) +M:System.Tuple`8.Equals(System.Object) +M:System.Tuple`8.GetHashCode +M:System.Tuple`8.ToString +M:System.Tuple`8.get_Item1 +M:System.Tuple`8.get_Item2 +M:System.Tuple`8.get_Item3 +M:System.Tuple`8.get_Item4 +M:System.Tuple`8.get_Item5 +M:System.Tuple`8.get_Item6 +M:System.Tuple`8.get_Item7 +M:System.Tuple`8.get_Rest +T:System.Type +F:System.Type.Delimiter +F:System.Type.EmptyTypes +F:System.Type.FilterAttribute +F:System.Type.FilterName +F:System.Type.FilterNameIgnoreCase +F:System.Type.Missing +T:System.TypeAccessException +M:System.TypeAccessException.#ctor +M:System.TypeAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TypeAccessException.#ctor(System.String) +M:System.TypeAccessException.#ctor(System.String,System.Exception) +T:System.TypeCode +F:System.TypeCode.Boolean +F:System.TypeCode.Byte +F:System.TypeCode.Char +F:System.TypeCode.DBNull +F:System.TypeCode.DateTime +F:System.TypeCode.Decimal +F:System.TypeCode.Double +F:System.TypeCode.Empty +F:System.TypeCode.Int16 +F:System.TypeCode.Int32 +F:System.TypeCode.Int64 +F:System.TypeCode.Object +F:System.TypeCode.SByte +F:System.TypeCode.Single +F:System.TypeCode.String +F:System.TypeCode.UInt16 +F:System.TypeCode.UInt32 +F:System.TypeCode.UInt64 +T:System.TypeInitializationException +M:System.TypeInitializationException.#ctor(System.String,System.Exception) +M:System.TypeInitializationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TypeInitializationException.get_TypeName +T:System.TypeLoadException +M:System.TypeLoadException.#ctor +M:System.TypeLoadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TypeLoadException.#ctor(System.String) +M:System.TypeLoadException.#ctor(System.String,System.Exception) +M:System.TypeLoadException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TypeLoadException.get_Message +M:System.TypeLoadException.get_TypeName +T:System.TypeUnloadedException +M:System.TypeUnloadedException.#ctor +M:System.TypeUnloadedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TypeUnloadedException.#ctor(System.String) +M:System.TypeUnloadedException.#ctor(System.String,System.Exception) +T:System.TypedReference +M:System.TypedReference.Equals(System.Object) +M:System.TypedReference.GetHashCode +M:System.TypedReference.GetTargetType(System.TypedReference) +M:System.TypedReference.MakeTypedReference(System.Object,System.Reflection.FieldInfo[]) +M:System.TypedReference.SetTypedReference(System.TypedReference,System.Object) +M:System.TypedReference.TargetTypeToken(System.TypedReference) +M:System.TypedReference.ToObject(System.TypedReference) +T:System.UInt128 +M:System.UInt128.#ctor(System.UInt64,System.UInt64) +M:System.UInt128.Clamp(System.UInt128,System.UInt128,System.UInt128) +M:System.UInt128.CompareTo(System.Object) +M:System.UInt128.CompareTo(System.UInt128) +M:System.UInt128.CreateChecked``1(``0) +M:System.UInt128.CreateSaturating``1(``0) +M:System.UInt128.CreateTruncating``1(``0) +M:System.UInt128.DivRem(System.UInt128,System.UInt128) +M:System.UInt128.Equals(System.Object) +M:System.UInt128.Equals(System.UInt128) +M:System.UInt128.GetHashCode +M:System.UInt128.IsEvenInteger(System.UInt128) +M:System.UInt128.IsOddInteger(System.UInt128) +M:System.UInt128.IsPow2(System.UInt128) +M:System.UInt128.LeadingZeroCount(System.UInt128) +M:System.UInt128.Log2(System.UInt128) +M:System.UInt128.Max(System.UInt128,System.UInt128) +M:System.UInt128.Min(System.UInt128,System.UInt128) +M:System.UInt128.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt128.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.UInt128.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt128.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt128.Parse(System.String) +M:System.UInt128.Parse(System.String,System.Globalization.NumberStyles) +M:System.UInt128.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt128.Parse(System.String,System.IFormatProvider) +M:System.UInt128.PopCount(System.UInt128) +M:System.UInt128.RotateLeft(System.UInt128,System.Int32) +M:System.UInt128.RotateRight(System.UInt128,System.Int32) +M:System.UInt128.Sign(System.UInt128) +M:System.UInt128.ToString +M:System.UInt128.ToString(System.IFormatProvider) +M:System.UInt128.ToString(System.String) +M:System.UInt128.ToString(System.String,System.IFormatProvider) +M:System.UInt128.TrailingZeroCount(System.UInt128) +M:System.UInt128.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt128.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Byte},System.UInt128@) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Char},System.UInt128@) +M:System.UInt128.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.String,System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.String,System.UInt128@) +M:System.UInt128.get_MaxValue +M:System.UInt128.get_MinValue +M:System.UInt128.get_One +M:System.UInt128.get_Zero +M:System.UInt128.op_Addition(System.UInt128,System.UInt128) +M:System.UInt128.op_BitwiseAnd(System.UInt128,System.UInt128) +M:System.UInt128.op_BitwiseOr(System.UInt128,System.UInt128) +M:System.UInt128.op_CheckedAddition(System.UInt128,System.UInt128) +M:System.UInt128.op_CheckedDecrement(System.UInt128) +M:System.UInt128.op_CheckedDivision(System.UInt128,System.UInt128) +M:System.UInt128.op_CheckedExplicit(System.Double)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.Int16)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.Int32)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.Int64)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.IntPtr)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.SByte)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.Single)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Byte +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Char +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Int128 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Int16 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Int32 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Int64 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.IntPtr +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.SByte +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.UInt16 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.UInt32 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.UInt64 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.UIntPtr +M:System.UInt128.op_CheckedIncrement(System.UInt128) +M:System.UInt128.op_CheckedMultiply(System.UInt128,System.UInt128) +M:System.UInt128.op_CheckedSubtraction(System.UInt128,System.UInt128) +M:System.UInt128.op_CheckedUnaryNegation(System.UInt128) +M:System.UInt128.op_Decrement(System.UInt128) +M:System.UInt128.op_Division(System.UInt128,System.UInt128) +M:System.UInt128.op_Equality(System.UInt128,System.UInt128) +M:System.UInt128.op_ExclusiveOr(System.UInt128,System.UInt128) +M:System.UInt128.op_Explicit(System.Decimal)~System.UInt128 +M:System.UInt128.op_Explicit(System.Double)~System.UInt128 +M:System.UInt128.op_Explicit(System.Int16)~System.UInt128 +M:System.UInt128.op_Explicit(System.Int32)~System.UInt128 +M:System.UInt128.op_Explicit(System.Int64)~System.UInt128 +M:System.UInt128.op_Explicit(System.IntPtr)~System.UInt128 +M:System.UInt128.op_Explicit(System.SByte)~System.UInt128 +M:System.UInt128.op_Explicit(System.Single)~System.UInt128 +M:System.UInt128.op_Explicit(System.UInt128)~System.Byte +M:System.UInt128.op_Explicit(System.UInt128)~System.Char +M:System.UInt128.op_Explicit(System.UInt128)~System.Decimal +M:System.UInt128.op_Explicit(System.UInt128)~System.Double +M:System.UInt128.op_Explicit(System.UInt128)~System.Half +M:System.UInt128.op_Explicit(System.UInt128)~System.Int128 +M:System.UInt128.op_Explicit(System.UInt128)~System.Int16 +M:System.UInt128.op_Explicit(System.UInt128)~System.Int32 +M:System.UInt128.op_Explicit(System.UInt128)~System.Int64 +M:System.UInt128.op_Explicit(System.UInt128)~System.IntPtr +M:System.UInt128.op_Explicit(System.UInt128)~System.SByte +M:System.UInt128.op_Explicit(System.UInt128)~System.Single +M:System.UInt128.op_Explicit(System.UInt128)~System.UInt16 +M:System.UInt128.op_Explicit(System.UInt128)~System.UInt32 +M:System.UInt128.op_Explicit(System.UInt128)~System.UInt64 +M:System.UInt128.op_Explicit(System.UInt128)~System.UIntPtr +M:System.UInt128.op_GreaterThan(System.UInt128,System.UInt128) +M:System.UInt128.op_GreaterThanOrEqual(System.UInt128,System.UInt128) +M:System.UInt128.op_Implicit(System.Byte)~System.UInt128 +M:System.UInt128.op_Implicit(System.Char)~System.UInt128 +M:System.UInt128.op_Implicit(System.UInt16)~System.UInt128 +M:System.UInt128.op_Implicit(System.UInt32)~System.UInt128 +M:System.UInt128.op_Implicit(System.UInt64)~System.UInt128 +M:System.UInt128.op_Implicit(System.UIntPtr)~System.UInt128 +M:System.UInt128.op_Increment(System.UInt128) +M:System.UInt128.op_Inequality(System.UInt128,System.UInt128) +M:System.UInt128.op_LeftShift(System.UInt128,System.Int32) +M:System.UInt128.op_LessThan(System.UInt128,System.UInt128) +M:System.UInt128.op_LessThanOrEqual(System.UInt128,System.UInt128) +M:System.UInt128.op_Modulus(System.UInt128,System.UInt128) +M:System.UInt128.op_Multiply(System.UInt128,System.UInt128) +M:System.UInt128.op_OnesComplement(System.UInt128) +M:System.UInt128.op_RightShift(System.UInt128,System.Int32) +M:System.UInt128.op_Subtraction(System.UInt128,System.UInt128) +M:System.UInt128.op_UnaryNegation(System.UInt128) +M:System.UInt128.op_UnaryPlus(System.UInt128) +M:System.UInt128.op_UnsignedRightShift(System.UInt128,System.Int32) +T:System.UInt16 +M:System.UInt16.Clamp(System.UInt16,System.UInt16,System.UInt16) +M:System.UInt16.CompareTo(System.Object) +M:System.UInt16.CompareTo(System.UInt16) +M:System.UInt16.CreateChecked``1(``0) +M:System.UInt16.CreateSaturating``1(``0) +M:System.UInt16.CreateTruncating``1(``0) +M:System.UInt16.DivRem(System.UInt16,System.UInt16) +M:System.UInt16.Equals(System.Object) +M:System.UInt16.Equals(System.UInt16) +M:System.UInt16.GetHashCode +M:System.UInt16.GetTypeCode +M:System.UInt16.IsEvenInteger(System.UInt16) +M:System.UInt16.IsOddInteger(System.UInt16) +M:System.UInt16.IsPow2(System.UInt16) +M:System.UInt16.LeadingZeroCount(System.UInt16) +M:System.UInt16.Log2(System.UInt16) +M:System.UInt16.Max(System.UInt16,System.UInt16) +F:System.UInt16.MaxValue +M:System.UInt16.Min(System.UInt16,System.UInt16) +F:System.UInt16.MinValue +M:System.UInt16.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt16.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.UInt16.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt16.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt16.Parse(System.String) +M:System.UInt16.Parse(System.String,System.Globalization.NumberStyles) +M:System.UInt16.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt16.Parse(System.String,System.IFormatProvider) +M:System.UInt16.PopCount(System.UInt16) +M:System.UInt16.RotateLeft(System.UInt16,System.Int32) +M:System.UInt16.RotateRight(System.UInt16,System.Int32) +M:System.UInt16.Sign(System.UInt16) +M:System.UInt16.ToString +M:System.UInt16.ToString(System.IFormatProvider) +M:System.UInt16.ToString(System.String) +M:System.UInt16.ToString(System.String,System.IFormatProvider) +M:System.UInt16.TrailingZeroCount(System.UInt16) +M:System.UInt16.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt16.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Byte},System.UInt16@) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Char},System.UInt16@) +M:System.UInt16.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.String,System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.String,System.UInt16@) +T:System.UInt32 +M:System.UInt32.Clamp(System.UInt32,System.UInt32,System.UInt32) +M:System.UInt32.CompareTo(System.Object) +M:System.UInt32.CompareTo(System.UInt32) +M:System.UInt32.CreateChecked``1(``0) +M:System.UInt32.CreateSaturating``1(``0) +M:System.UInt32.CreateTruncating``1(``0) +M:System.UInt32.DivRem(System.UInt32,System.UInt32) +M:System.UInt32.Equals(System.Object) +M:System.UInt32.Equals(System.UInt32) +M:System.UInt32.GetHashCode +M:System.UInt32.GetTypeCode +M:System.UInt32.IsEvenInteger(System.UInt32) +M:System.UInt32.IsOddInteger(System.UInt32) +M:System.UInt32.IsPow2(System.UInt32) +M:System.UInt32.LeadingZeroCount(System.UInt32) +M:System.UInt32.Log2(System.UInt32) +M:System.UInt32.Max(System.UInt32,System.UInt32) +F:System.UInt32.MaxValue +M:System.UInt32.Min(System.UInt32,System.UInt32) +F:System.UInt32.MinValue +M:System.UInt32.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt32.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.UInt32.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt32.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt32.Parse(System.String) +M:System.UInt32.Parse(System.String,System.Globalization.NumberStyles) +M:System.UInt32.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt32.Parse(System.String,System.IFormatProvider) +M:System.UInt32.PopCount(System.UInt32) +M:System.UInt32.RotateLeft(System.UInt32,System.Int32) +M:System.UInt32.RotateRight(System.UInt32,System.Int32) +M:System.UInt32.Sign(System.UInt32) +M:System.UInt32.ToString +M:System.UInt32.ToString(System.IFormatProvider) +M:System.UInt32.ToString(System.String) +M:System.UInt32.ToString(System.String,System.IFormatProvider) +M:System.UInt32.TrailingZeroCount(System.UInt32) +M:System.UInt32.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt32.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Byte},System.UInt32@) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Char},System.UInt32@) +M:System.UInt32.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.String,System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.String,System.UInt32@) +T:System.UInt64 +M:System.UInt64.Clamp(System.UInt64,System.UInt64,System.UInt64) +M:System.UInt64.CompareTo(System.Object) +M:System.UInt64.CompareTo(System.UInt64) +M:System.UInt64.CreateChecked``1(``0) +M:System.UInt64.CreateSaturating``1(``0) +M:System.UInt64.CreateTruncating``1(``0) +M:System.UInt64.DivRem(System.UInt64,System.UInt64) +M:System.UInt64.Equals(System.Object) +M:System.UInt64.Equals(System.UInt64) +M:System.UInt64.GetHashCode +M:System.UInt64.GetTypeCode +M:System.UInt64.IsEvenInteger(System.UInt64) +M:System.UInt64.IsOddInteger(System.UInt64) +M:System.UInt64.IsPow2(System.UInt64) +M:System.UInt64.LeadingZeroCount(System.UInt64) +M:System.UInt64.Log2(System.UInt64) +M:System.UInt64.Max(System.UInt64,System.UInt64) +F:System.UInt64.MaxValue +M:System.UInt64.Min(System.UInt64,System.UInt64) +F:System.UInt64.MinValue +M:System.UInt64.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt64.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.UInt64.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt64.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt64.Parse(System.String) +M:System.UInt64.Parse(System.String,System.Globalization.NumberStyles) +M:System.UInt64.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt64.Parse(System.String,System.IFormatProvider) +M:System.UInt64.PopCount(System.UInt64) +M:System.UInt64.RotateLeft(System.UInt64,System.Int32) +M:System.UInt64.RotateRight(System.UInt64,System.Int32) +M:System.UInt64.Sign(System.UInt64) +M:System.UInt64.ToString +M:System.UInt64.ToString(System.IFormatProvider) +M:System.UInt64.ToString(System.String) +M:System.UInt64.ToString(System.String,System.IFormatProvider) +M:System.UInt64.TrailingZeroCount(System.UInt64) +M:System.UInt64.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt64.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Byte},System.UInt64@) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Char},System.UInt64@) +M:System.UInt64.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.String,System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.String,System.UInt64@) +T:System.UIntPtr +M:System.UIntPtr.#ctor(System.UInt32) +M:System.UIntPtr.#ctor(System.UInt64) +M:System.UIntPtr.#ctor(System.Void*) +M:System.UIntPtr.Add(System.UIntPtr,System.Int32) +M:System.UIntPtr.Clamp(System.UIntPtr,System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.CompareTo(System.Object) +M:System.UIntPtr.CompareTo(System.UIntPtr) +M:System.UIntPtr.CreateChecked``1(``0) +M:System.UIntPtr.CreateSaturating``1(``0) +M:System.UIntPtr.CreateTruncating``1(``0) +M:System.UIntPtr.DivRem(System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.Equals(System.Object) +M:System.UIntPtr.Equals(System.UIntPtr) +M:System.UIntPtr.GetHashCode +M:System.UIntPtr.IsEvenInteger(System.UIntPtr) +M:System.UIntPtr.IsOddInteger(System.UIntPtr) +M:System.UIntPtr.IsPow2(System.UIntPtr) +M:System.UIntPtr.LeadingZeroCount(System.UIntPtr) +M:System.UIntPtr.Log2(System.UIntPtr) +M:System.UIntPtr.Max(System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.Min(System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UIntPtr.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.UIntPtr.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UIntPtr.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UIntPtr.Parse(System.String) +M:System.UIntPtr.Parse(System.String,System.Globalization.NumberStyles) +M:System.UIntPtr.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UIntPtr.Parse(System.String,System.IFormatProvider) +M:System.UIntPtr.PopCount(System.UIntPtr) +M:System.UIntPtr.RotateLeft(System.UIntPtr,System.Int32) +M:System.UIntPtr.RotateRight(System.UIntPtr,System.Int32) +M:System.UIntPtr.Sign(System.UIntPtr) +M:System.UIntPtr.Subtract(System.UIntPtr,System.Int32) +M:System.UIntPtr.ToPointer +M:System.UIntPtr.ToString +M:System.UIntPtr.ToString(System.IFormatProvider) +M:System.UIntPtr.ToString(System.String) +M:System.UIntPtr.ToString(System.String,System.IFormatProvider) +M:System.UIntPtr.ToUInt32 +M:System.UIntPtr.ToUInt64 +M:System.UIntPtr.TrailingZeroCount(System.UIntPtr) +M:System.UIntPtr.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UIntPtr.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Byte},System.UIntPtr@) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Char},System.UIntPtr@) +M:System.UIntPtr.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.String,System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.String,System.UIntPtr@) +F:System.UIntPtr.Zero +M:System.UIntPtr.get_MaxValue +M:System.UIntPtr.get_MinValue +M:System.UIntPtr.get_Size +M:System.UIntPtr.op_Addition(System.UIntPtr,System.Int32) +M:System.UIntPtr.op_Equality(System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.op_Explicit(System.UInt32)~System.UIntPtr +M:System.UIntPtr.op_Explicit(System.UInt64)~System.UIntPtr +M:System.UIntPtr.op_Explicit(System.UIntPtr)~System.UInt32 +M:System.UIntPtr.op_Explicit(System.UIntPtr)~System.UInt64 +M:System.UIntPtr.op_Explicit(System.UIntPtr)~System.Void* +M:System.UIntPtr.op_Explicit(System.Void*)~System.UIntPtr +M:System.UIntPtr.op_Inequality(System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.op_Subtraction(System.UIntPtr,System.Int32) +T:System.UnauthorizedAccessException +M:System.UnauthorizedAccessException.#ctor +M:System.UnauthorizedAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.UnauthorizedAccessException.#ctor(System.String) +M:System.UnauthorizedAccessException.#ctor(System.String,System.Exception) +T:System.UnhandledExceptionEventArgs +M:System.UnhandledExceptionEventArgs.#ctor(System.Object,System.Boolean) +M:System.UnhandledExceptionEventArgs.get_ExceptionObject +M:System.UnhandledExceptionEventArgs.get_IsTerminating +T:System.UnhandledExceptionEventHandler +M:System.UnhandledExceptionEventHandler.#ctor(System.Object,System.IntPtr) +M:System.UnhandledExceptionEventHandler.BeginInvoke(System.Object,System.UnhandledExceptionEventArgs,System.AsyncCallback,System.Object) +M:System.UnhandledExceptionEventHandler.EndInvoke(System.IAsyncResult) +M:System.UnhandledExceptionEventHandler.Invoke(System.Object,System.UnhandledExceptionEventArgs) +T:System.Uri +M:System.Uri.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Uri.#ctor(System.String) +M:System.Uri.#ctor(System.String,System.Boolean) +M:System.Uri.#ctor(System.String,System.UriCreationOptions@) +M:System.Uri.#ctor(System.String,System.UriKind) +M:System.Uri.#ctor(System.Uri,System.String) +M:System.Uri.#ctor(System.Uri,System.String,System.Boolean) +M:System.Uri.#ctor(System.Uri,System.Uri) +M:System.Uri.Canonicalize +M:System.Uri.CheckHostName(System.String) +M:System.Uri.CheckSchemeName(System.String) +M:System.Uri.CheckSecurity +M:System.Uri.Compare(System.Uri,System.Uri,System.UriComponents,System.UriFormat,System.StringComparison) +M:System.Uri.Equals(System.Object) +M:System.Uri.Escape +M:System.Uri.EscapeDataString(System.String) +M:System.Uri.EscapeString(System.String) +M:System.Uri.EscapeUriString(System.String) +M:System.Uri.FromHex(System.Char) +M:System.Uri.GetComponents(System.UriComponents,System.UriFormat) +M:System.Uri.GetHashCode +M:System.Uri.GetLeftPart(System.UriPartial) +M:System.Uri.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Uri.HexEscape(System.Char) +M:System.Uri.HexUnescape(System.String,System.Int32@) +M:System.Uri.IsBadFileSystemCharacter(System.Char) +M:System.Uri.IsBaseOf(System.Uri) +M:System.Uri.IsExcludedCharacter(System.Char) +M:System.Uri.IsHexDigit(System.Char) +M:System.Uri.IsHexEncoding(System.String,System.Int32) +M:System.Uri.IsReservedCharacter(System.Char) +M:System.Uri.IsWellFormedOriginalString +M:System.Uri.IsWellFormedUriString(System.String,System.UriKind) +M:System.Uri.MakeRelative(System.Uri) +M:System.Uri.MakeRelativeUri(System.Uri) +M:System.Uri.Parse +F:System.Uri.SchemeDelimiter +M:System.Uri.ToString +M:System.Uri.TryCreate(System.String,System.UriCreationOptions@,System.Uri@) +M:System.Uri.TryCreate(System.String,System.UriKind,System.Uri@) +M:System.Uri.TryCreate(System.Uri,System.String,System.Uri@) +M:System.Uri.TryCreate(System.Uri,System.Uri,System.Uri@) +M:System.Uri.TryFormat(System.Span{System.Char},System.Int32@) +M:System.Uri.Unescape(System.String) +M:System.Uri.UnescapeDataString(System.String) +F:System.Uri.UriSchemeFile +F:System.Uri.UriSchemeFtp +F:System.Uri.UriSchemeFtps +F:System.Uri.UriSchemeGopher +F:System.Uri.UriSchemeHttp +F:System.Uri.UriSchemeHttps +F:System.Uri.UriSchemeMailto +F:System.Uri.UriSchemeNetPipe +F:System.Uri.UriSchemeNetTcp +F:System.Uri.UriSchemeNews +F:System.Uri.UriSchemeNntp +F:System.Uri.UriSchemeSftp +F:System.Uri.UriSchemeSsh +F:System.Uri.UriSchemeTelnet +F:System.Uri.UriSchemeWs +F:System.Uri.UriSchemeWss +M:System.Uri.get_AbsolutePath +M:System.Uri.get_AbsoluteUri +M:System.Uri.get_Authority +M:System.Uri.get_DnsSafeHost +M:System.Uri.get_Fragment +M:System.Uri.get_Host +M:System.Uri.get_HostNameType +M:System.Uri.get_IdnHost +M:System.Uri.get_IsAbsoluteUri +M:System.Uri.get_IsDefaultPort +M:System.Uri.get_IsFile +M:System.Uri.get_IsLoopback +M:System.Uri.get_IsUnc +M:System.Uri.get_LocalPath +M:System.Uri.get_OriginalString +M:System.Uri.get_PathAndQuery +M:System.Uri.get_Port +M:System.Uri.get_Query +M:System.Uri.get_Scheme +M:System.Uri.get_Segments +M:System.Uri.get_UserEscaped +M:System.Uri.get_UserInfo +M:System.Uri.op_Equality(System.Uri,System.Uri) +M:System.Uri.op_Inequality(System.Uri,System.Uri) +T:System.UriBuilder +M:System.UriBuilder.#ctor +M:System.UriBuilder.#ctor(System.String) +M:System.UriBuilder.#ctor(System.String,System.String) +M:System.UriBuilder.#ctor(System.String,System.String,System.Int32) +M:System.UriBuilder.#ctor(System.String,System.String,System.Int32,System.String) +M:System.UriBuilder.#ctor(System.String,System.String,System.Int32,System.String,System.String) +M:System.UriBuilder.#ctor(System.Uri) +M:System.UriBuilder.Equals(System.Object) +M:System.UriBuilder.GetHashCode +M:System.UriBuilder.ToString +M:System.UriBuilder.get_Fragment +M:System.UriBuilder.get_Host +M:System.UriBuilder.get_Password +M:System.UriBuilder.get_Path +M:System.UriBuilder.get_Port +M:System.UriBuilder.get_Query +M:System.UriBuilder.get_Scheme +M:System.UriBuilder.get_Uri +M:System.UriBuilder.get_UserName +M:System.UriBuilder.set_Fragment(System.String) +M:System.UriBuilder.set_Host(System.String) +M:System.UriBuilder.set_Password(System.String) +M:System.UriBuilder.set_Path(System.String) +M:System.UriBuilder.set_Port(System.Int32) +M:System.UriBuilder.set_Query(System.String) +M:System.UriBuilder.set_Scheme(System.String) +M:System.UriBuilder.set_UserName(System.String) +T:System.UriComponents +F:System.UriComponents.AbsoluteUri +F:System.UriComponents.Fragment +F:System.UriComponents.Host +F:System.UriComponents.HostAndPort +F:System.UriComponents.HttpRequestUrl +F:System.UriComponents.KeepDelimiter +F:System.UriComponents.NormalizedHost +F:System.UriComponents.Path +F:System.UriComponents.PathAndQuery +F:System.UriComponents.Port +F:System.UriComponents.Query +F:System.UriComponents.Scheme +F:System.UriComponents.SchemeAndServer +F:System.UriComponents.SerializationInfoString +F:System.UriComponents.StrongAuthority +F:System.UriComponents.StrongPort +F:System.UriComponents.UserInfo +T:System.UriCreationOptions +M:System.UriCreationOptions.get_DangerousDisablePathAndQueryCanonicalization +M:System.UriCreationOptions.set_DangerousDisablePathAndQueryCanonicalization(System.Boolean) +T:System.UriFormat +F:System.UriFormat.SafeUnescaped +F:System.UriFormat.Unescaped +F:System.UriFormat.UriEscaped +T:System.UriFormatException +M:System.UriFormatException.#ctor +M:System.UriFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.UriFormatException.#ctor(System.String) +M:System.UriFormatException.#ctor(System.String,System.Exception) +T:System.UriHostNameType +F:System.UriHostNameType.Basic +F:System.UriHostNameType.Dns +F:System.UriHostNameType.IPv4 +F:System.UriHostNameType.IPv6 +F:System.UriHostNameType.Unknown +T:System.UriKind +F:System.UriKind.Absolute +F:System.UriKind.Relative +F:System.UriKind.RelativeOrAbsolute +T:System.UriParser +M:System.UriParser.#ctor +M:System.UriParser.GetComponents(System.Uri,System.UriComponents,System.UriFormat) +M:System.UriParser.InitializeAndValidate(System.Uri,System.UriFormatException@) +M:System.UriParser.IsBaseOf(System.Uri,System.Uri) +M:System.UriParser.IsKnownScheme(System.String) +M:System.UriParser.IsWellFormedOriginalString(System.Uri) +M:System.UriParser.OnNewUri +M:System.UriParser.OnRegister(System.String,System.Int32) +M:System.UriParser.Register(System.UriParser,System.String,System.Int32) +M:System.UriParser.Resolve(System.Uri,System.Uri,System.UriFormatException@) +T:System.UriPartial +F:System.UriPartial.Authority +F:System.UriPartial.Path +F:System.UriPartial.Query +F:System.UriPartial.Scheme +T:System.ValueTuple +M:System.ValueTuple.CompareTo(System.ValueTuple) +M:System.ValueTuple.Create +M:System.ValueTuple.Create``1(``0) +M:System.ValueTuple.Create``2(``0,``1) +M:System.ValueTuple.Create``3(``0,``1,``2) +M:System.ValueTuple.Create``4(``0,``1,``2,``3) +M:System.ValueTuple.Create``5(``0,``1,``2,``3,``4) +M:System.ValueTuple.Create``6(``0,``1,``2,``3,``4,``5) +M:System.ValueTuple.Create``7(``0,``1,``2,``3,``4,``5,``6) +M:System.ValueTuple.Create``8(``0,``1,``2,``3,``4,``5,``6,``7) +M:System.ValueTuple.Equals(System.Object) +M:System.ValueTuple.Equals(System.ValueTuple) +M:System.ValueTuple.GetHashCode +M:System.ValueTuple.ToString +T:System.ValueTuple`1 +M:System.ValueTuple`1.#ctor(`0) +M:System.ValueTuple`1.CompareTo(System.ValueTuple{`0}) +M:System.ValueTuple`1.Equals(System.Object) +M:System.ValueTuple`1.Equals(System.ValueTuple{`0}) +M:System.ValueTuple`1.GetHashCode +F:System.ValueTuple`1.Item1 +M:System.ValueTuple`1.ToString +T:System.ValueTuple`2 +M:System.ValueTuple`2.#ctor(`0,`1) +M:System.ValueTuple`2.CompareTo(System.ValueTuple{`0,`1}) +M:System.ValueTuple`2.Equals(System.Object) +M:System.ValueTuple`2.Equals(System.ValueTuple{`0,`1}) +M:System.ValueTuple`2.GetHashCode +F:System.ValueTuple`2.Item1 +F:System.ValueTuple`2.Item2 +M:System.ValueTuple`2.ToString +T:System.ValueTuple`3 +M:System.ValueTuple`3.#ctor(`0,`1,`2) +M:System.ValueTuple`3.CompareTo(System.ValueTuple{`0,`1,`2}) +M:System.ValueTuple`3.Equals(System.Object) +M:System.ValueTuple`3.Equals(System.ValueTuple{`0,`1,`2}) +M:System.ValueTuple`3.GetHashCode +F:System.ValueTuple`3.Item1 +F:System.ValueTuple`3.Item2 +F:System.ValueTuple`3.Item3 +M:System.ValueTuple`3.ToString +T:System.ValueTuple`4 +M:System.ValueTuple`4.#ctor(`0,`1,`2,`3) +M:System.ValueTuple`4.CompareTo(System.ValueTuple{`0,`1,`2,`3}) +M:System.ValueTuple`4.Equals(System.Object) +M:System.ValueTuple`4.Equals(System.ValueTuple{`0,`1,`2,`3}) +M:System.ValueTuple`4.GetHashCode +F:System.ValueTuple`4.Item1 +F:System.ValueTuple`4.Item2 +F:System.ValueTuple`4.Item3 +F:System.ValueTuple`4.Item4 +M:System.ValueTuple`4.ToString +T:System.ValueTuple`5 +M:System.ValueTuple`5.#ctor(`0,`1,`2,`3,`4) +M:System.ValueTuple`5.CompareTo(System.ValueTuple{`0,`1,`2,`3,`4}) +M:System.ValueTuple`5.Equals(System.Object) +M:System.ValueTuple`5.Equals(System.ValueTuple{`0,`1,`2,`3,`4}) +M:System.ValueTuple`5.GetHashCode +F:System.ValueTuple`5.Item1 +F:System.ValueTuple`5.Item2 +F:System.ValueTuple`5.Item3 +F:System.ValueTuple`5.Item4 +F:System.ValueTuple`5.Item5 +M:System.ValueTuple`5.ToString +T:System.ValueTuple`6 +M:System.ValueTuple`6.#ctor(`0,`1,`2,`3,`4,`5) +M:System.ValueTuple`6.CompareTo(System.ValueTuple{`0,`1,`2,`3,`4,`5}) +M:System.ValueTuple`6.Equals(System.Object) +M:System.ValueTuple`6.Equals(System.ValueTuple{`0,`1,`2,`3,`4,`5}) +M:System.ValueTuple`6.GetHashCode +F:System.ValueTuple`6.Item1 +F:System.ValueTuple`6.Item2 +F:System.ValueTuple`6.Item3 +F:System.ValueTuple`6.Item4 +F:System.ValueTuple`6.Item5 +F:System.ValueTuple`6.Item6 +M:System.ValueTuple`6.ToString +T:System.ValueTuple`7 +M:System.ValueTuple`7.#ctor(`0,`1,`2,`3,`4,`5,`6) +M:System.ValueTuple`7.CompareTo(System.ValueTuple{`0,`1,`2,`3,`4,`5,`6}) +M:System.ValueTuple`7.Equals(System.Object) +M:System.ValueTuple`7.Equals(System.ValueTuple{`0,`1,`2,`3,`4,`5,`6}) +M:System.ValueTuple`7.GetHashCode +F:System.ValueTuple`7.Item1 +F:System.ValueTuple`7.Item2 +F:System.ValueTuple`7.Item3 +F:System.ValueTuple`7.Item4 +F:System.ValueTuple`7.Item5 +F:System.ValueTuple`7.Item6 +F:System.ValueTuple`7.Item7 +M:System.ValueTuple`7.ToString +T:System.ValueTuple`8 +M:System.ValueTuple`8.#ctor(`0,`1,`2,`3,`4,`5,`6,`7) +M:System.ValueTuple`8.CompareTo(System.ValueTuple{`0,`1,`2,`3,`4,`5,`6,`7}) +M:System.ValueTuple`8.Equals(System.Object) +M:System.ValueTuple`8.Equals(System.ValueTuple{`0,`1,`2,`3,`4,`5,`6,`7}) +M:System.ValueTuple`8.GetHashCode +F:System.ValueTuple`8.Item1 +F:System.ValueTuple`8.Item2 +F:System.ValueTuple`8.Item3 +F:System.ValueTuple`8.Item4 +F:System.ValueTuple`8.Item5 +F:System.ValueTuple`8.Item6 +F:System.ValueTuple`8.Item7 +F:System.ValueTuple`8.Rest +M:System.ValueTuple`8.ToString +T:System.ValueType +M:System.ValueType.#ctor +M:System.ValueType.Equals(System.Object) +M:System.ValueType.GetHashCode +M:System.ValueType.ToString +T:System.Version +M:System.Version.#ctor +M:System.Version.#ctor(System.Int32,System.Int32) +M:System.Version.#ctor(System.Int32,System.Int32,System.Int32) +M:System.Version.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Version.#ctor(System.String) +M:System.Version.Clone +M:System.Version.CompareTo(System.Object) +M:System.Version.CompareTo(System.Version) +M:System.Version.Equals(System.Object) +M:System.Version.Equals(System.Version) +M:System.Version.GetHashCode +M:System.Version.Parse(System.ReadOnlySpan{System.Char}) +M:System.Version.Parse(System.String) +M:System.Version.ToString +M:System.Version.ToString(System.Int32) +M:System.Version.TryFormat(System.Span{System.Byte},System.Int32,System.Int32@) +M:System.Version.TryFormat(System.Span{System.Byte},System.Int32@) +M:System.Version.TryFormat(System.Span{System.Char},System.Int32,System.Int32@) +M:System.Version.TryFormat(System.Span{System.Char},System.Int32@) +M:System.Version.TryParse(System.ReadOnlySpan{System.Char},System.Version@) +M:System.Version.TryParse(System.String,System.Version@) +M:System.Version.get_Build +M:System.Version.get_Major +M:System.Version.get_MajorRevision +M:System.Version.get_Minor +M:System.Version.get_MinorRevision +M:System.Version.get_Revision +M:System.Version.op_Equality(System.Version,System.Version) +M:System.Version.op_GreaterThan(System.Version,System.Version) +M:System.Version.op_GreaterThanOrEqual(System.Version,System.Version) +M:System.Version.op_Inequality(System.Version,System.Version) +M:System.Version.op_LessThan(System.Version,System.Version) +M:System.Version.op_LessThanOrEqual(System.Version,System.Version) +T:System.Void +T:System.WeakReference +M:System.WeakReference.#ctor(System.Object) +M:System.WeakReference.#ctor(System.Object,System.Boolean) +M:System.WeakReference.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.WeakReference.Finalize +M:System.WeakReference.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.WeakReference.get_IsAlive +M:System.WeakReference.get_Target +M:System.WeakReference.get_TrackResurrection +M:System.WeakReference.set_Target(System.Object) +T:System.WeakReference`1 +M:System.WeakReference`1.#ctor(`0) +M:System.WeakReference`1.#ctor(`0,System.Boolean) +M:System.WeakReference`1.Finalize +M:System.WeakReference`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.WeakReference`1.SetTarget(`0) +M:System.WeakReference`1.TryGetTarget(`0@) \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/Microsoft.CodeAnalysis.CSharp.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/Microsoft.CodeAnalysis.CSharp.txt new file mode 100644 index 0000000000000..c8a0bee214e00 --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/Microsoft.CodeAnalysis.CSharp.txt @@ -0,0 +1,6243 @@ +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp1 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp10 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp11 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp12 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp2 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp3 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp4 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp5 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp6 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp7 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp7_1 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp7_2 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp7_3 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp8 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.CSharp9 +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.Default +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.Latest +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.LatestMajor +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.Preview +F:Microsoft.CodeAnalysis.CSharp.LanguageVersion.value__ +F:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind.Parameter +F:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind.ParameterReference +F:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind.TypeParameter +F:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind.TypeParameterReference +F:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind.value__ +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AbstractKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AccessorList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AddAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AddAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AddExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AddKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AddressOfExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AliasKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AliasQualifiedName +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AllowsConstraintClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AllowsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AmpersandAmpersandToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AmpersandEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AmpersandToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AndAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AndKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AndPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AnnotationsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AnonymousMethodExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AnonymousObjectCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AnonymousObjectMemberDeclarator +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArgListExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArgListKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Argument +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArgumentList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArrayCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArrayInitializerExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArrayRankSpecifier +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArrayType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ArrowExpressionClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AscendingKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AscendingOrdering +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AsExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AssemblyKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AsteriskEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AsteriskToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AsyncKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Attribute +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AttributeArgument +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AttributeArgumentList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AttributeList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AttributeTargetSpecifier +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AwaitExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.AwaitKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BackslashToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BadDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BadToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BarBarToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BarEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BarToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BaseConstructorInitializer +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BaseExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BaseKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BaseList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BitwiseAndExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BitwiseNotExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BitwiseOrExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Block +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BoolKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BracketedArgumentList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BracketedParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BreakKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.BreakStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ByKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ByteKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CaretEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CaretToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CaseKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CasePatternSwitchLabel +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CaseSwitchLabel +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CastExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CatchClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CatchDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CatchFilterClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CatchKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CharacterLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CharacterLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CharKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CheckedExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CheckedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CheckedStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ChecksumKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ClassConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ClassDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ClassKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CloseBraceToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CloseBracketToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CloseParenToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CoalesceAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CoalesceExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CollectionExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CollectionInitializerExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ColonColonToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ColonToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CommaToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CompilationUnit +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ComplexElementInitializerExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConditionalAccessExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConditionalExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConflictMarkerTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConstantPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConstKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConstructorConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConstructorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ContinueKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ContinueStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConversionOperatorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ConversionOperatorMemberCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CrefBracketedParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CrefParameter +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.CrefParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DecimalKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DeclarationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DeclarationPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefaultConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefaultExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefaultKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefaultLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefaultSwitchLabel +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefineDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DefineKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DelegateDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DelegateKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DescendingKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DescendingOrdering +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DestructorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DisabledTextTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DisableKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DiscardDesignation +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DiscardPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DivideAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DivideExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DocumentationCommentExteriorTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DoKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DollarToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DoStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DotDotToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DotToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DoubleKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.DoubleQuoteToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElementAccessExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElementBindingExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElifDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElifKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElseClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElseDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ElseKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EmptyStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EnableKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndIfDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndIfKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndOfDirectiveToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndOfDocumentationCommentToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndOfFileToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndOfLineTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndRegionDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EndRegionKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EnumDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EnumKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EnumMemberDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsGreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EqualsValueClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ErrorDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ErrorKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EventDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EventFieldDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.EventKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExclamationEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExclamationToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExclusiveOrAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExclusiveOrExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExplicitInterfaceSpecifier +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExplicitKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExpressionColon +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExpressionElement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExpressionStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExternAliasDirective +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ExternKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FalseKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FalseLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FieldDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FieldKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FileKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FileScopedNamespaceDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FinallyClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FinallyKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FixedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FixedStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FloatKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ForEachKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ForEachStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ForEachVariableStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ForKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ForStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FromClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FromKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerCallingConvention +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerParameter +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerUnmanagedCallingConvention +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.FunctionPointerUnmanagedCallingConventionList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GenericName +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GetAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GetKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GlobalKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GlobalStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GotoCaseStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GotoDefaultStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GotoKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GotoStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanGreaterThanEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanGreaterThanGreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanGreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanOrEqualExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GroupClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.GroupKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.HashToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.HiddenKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IdentifierName +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IdentifierToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IfDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IfKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IfStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ImplicitArrayCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ImplicitElementAccess +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ImplicitKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ImplicitObjectCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ImplicitStackAllocArrayCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IncompleteMember +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IndexerDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IndexerMemberCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IndexExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InitAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InitKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterfaceDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterfaceKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InternalKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedMultiLineRawStringStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedRawStringEndToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedSingleLineRawStringStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringEndToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringText +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringTextToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedStringToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolatedVerbatimStringStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Interpolation +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolationAlignmentClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InterpolationFormatClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IntKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IntoKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.InvocationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IsExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.IsPatternExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.JoinClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.JoinIntoClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.JoinKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LabeledStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LeftShiftAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LeftShiftExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanLessThanEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanLessThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanOrEqualExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanSlashToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LessThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LetClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LetKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LineDirectivePosition +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LineDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LineKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LineSpanDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.List +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ListPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LoadDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LoadKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LocalDeclarationStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LocalFunctionStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LockKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LockStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LogicalAndExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LogicalNotExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LogicalOrExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.LongKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MakeRefExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MakeRefKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ManagedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MemberBindingExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MethodDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MethodKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MinusEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MinusGreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MinusMinusToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MinusToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ModuleKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ModuloAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ModuloExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MultiLineCommentTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MultiLineDocumentationCommentTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MultiLineRawStringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MultiplyAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.MultiplyExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NameColon +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NameEquals +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NameMemberCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NameOfKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NamespaceDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NamespaceKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NewKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.None +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NotEqualsExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NotKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NotPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NullableDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NullableKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NullableType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NullKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NullLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NumericLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.NumericLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ObjectCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ObjectInitializerExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ObjectKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OmittedArraySizeExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OmittedArraySizeExpressionToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OmittedTypeArgument +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OmittedTypeArgumentToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OnKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OpenBraceToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OpenBracketToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OpenParenToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OperatorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OperatorKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OperatorMemberCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OrAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OrderByClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OrderByKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OrKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OrPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OutKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.OverrideKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Parameter +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParamKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParamsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParenthesizedExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParenthesizedLambdaExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParenthesizedPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ParenthesizedVariableDesignation +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PartialKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PercentEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PercentToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PlusEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PlusPlusToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PlusToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PointerIndirectionExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PointerMemberAccessExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PointerType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PositionalPatternClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PostDecrementExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PostIncrementExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PragmaChecksumDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PragmaKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PragmaWarningDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PreDecrementExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PredefinedType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PreIncrementExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PreprocessingMessageTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PrimaryConstructorBaseType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PrivateKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PropertyDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PropertyKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PropertyPatternClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ProtectedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.PublicKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QualifiedCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QualifiedName +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QueryBody +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QueryContinuation +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QueryExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QuestionQuestionEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QuestionQuestionToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.QuestionToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RangeExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RazorContentToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ReadOnlyKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RecordDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RecordKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RecordStructDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RecursivePattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ReferenceDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ReferenceKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefStructConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefTypeExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefTypeKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefValueExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RefValueKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RegionDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RegionKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RelationalPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RemoveAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RemoveKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RequiredKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RestoreKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ReturnKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ReturnStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RightShiftAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.RightShiftExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SByteKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ScopedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ScopedType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SealedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SelectClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SelectKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SemicolonToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SetAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SetKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ShebangDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ShortKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SimpleAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SimpleBaseType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SimpleLambdaExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SimpleMemberAccessExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SingleLineCommentTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SingleLineDocumentationCommentTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SingleLineRawStringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SingleQuoteToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SingleVariableDesignation +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SizeOfExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SizeOfKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SkippedTokensTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SlashEqualsToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SlashGreaterThanToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SlashToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SlicePattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SpreadElement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StackAllocArrayCreationExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StackAllocKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StaticKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StringKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StringLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StructConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StructDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.StructKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Subpattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SubtractAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SubtractExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SuppressNullableWarningExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SwitchExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SwitchExpressionArm +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SwitchKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SwitchSection +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.SwitchStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThisConstructorInitializer +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThisExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThisKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThrowExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThrowKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ThrowStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TildeToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TrueKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TrueLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TryKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TryStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TupleElement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TupleExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TupleType +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeArgumentList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeConstraint +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeCref +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeOfExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeOfKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeParameter +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeParameterConstraintClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeParameterList +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypePattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.TypeVarKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UIntKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.ULongKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnaryMinusExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnaryPlusExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UncheckedExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UncheckedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UncheckedStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UndefDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UndefKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnderscoreToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnknownAccessorDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnmanagedKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnsafeKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnsafeStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnsignedRightShiftAssignmentExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UnsignedRightShiftExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UShortKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UsingDirective +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UsingKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.UsingStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Utf8MultiLineRawStringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Utf8SingleLineRawStringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Utf8StringLiteralExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.Utf8StringLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.value__ +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VariableDeclaration +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VariableDeclarator +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VarKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VarPattern +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VirtualKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VoidKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.VolatileKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WarningDirectiveTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WarningKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WarningsKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhenClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhenKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhereClause +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhereKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhileKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhileStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WhitespaceTrivia +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WithExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WithInitializerExpression +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.WithKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCDataEndToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCDataSection +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCDataStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlComment +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCommentEndToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCommentStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlCrefAttribute +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlElement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlElementEndTag +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlElementStartTag +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlEmptyElement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlEntityLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlName +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlNameAttribute +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlPrefix +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlProcessingInstruction +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlProcessingInstructionEndToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlProcessingInstructionStartToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlText +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlTextAttribute +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlTextLiteralNewLineToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.XmlTextLiteralToken +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.YieldBreakStatement +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.YieldKeyword +F:Microsoft.CodeAnalysis.CSharp.SyntaxKind.YieldReturnStatement +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.Equals(Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo) +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.get_GetAwaiterMethod +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.get_GetResultMethod +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.get_IsCompletedProperty +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.get_IsDynamic +M:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.Conversion.Equals(Microsoft.CodeAnalysis.CSharp.Conversion) +M:Microsoft.CodeAnalysis.CSharp.Conversion.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_ConstrainedToType +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_Exists +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsAnonymousFunction +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsBoxing +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsCollectionExpression +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsConditionalExpression +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsConstantExpression +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsDefaultLiteral +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsDynamic +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsEnumeration +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsExplicit +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsIdentity +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsImplicit +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsInlineArray +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsInterpolatedString +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsInterpolatedStringHandler +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsIntPtr +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsMethodGroup +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsNullable +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsNullLiteral +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsNumeric +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsObjectCreation +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsPointer +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsReference +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsStackAlloc +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsSwitchExpression +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsThrow +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsTupleConversion +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsTupleLiteralConversion +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsUnboxing +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_IsUserDefined +M:Microsoft.CodeAnalysis.CSharp.Conversion.get_MethodSymbol +M:Microsoft.CodeAnalysis.CSharp.Conversion.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.Conversion.op_Equality(Microsoft.CodeAnalysis.CSharp.Conversion,Microsoft.CodeAnalysis.CSharp.Conversion) +M:Microsoft.CodeAnalysis.CSharp.Conversion.op_Inequality(Microsoft.CodeAnalysis.CSharp.Conversion,Microsoft.CodeAnalysis.CSharp.Conversion) +M:Microsoft.CodeAnalysis.CSharp.Conversion.ToCommonConversion +M:Microsoft.CodeAnalysis.CSharp.Conversion.ToString +M:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineArguments.get_CompilationOptions +M:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineArguments.get_CompilationOptionsCore +M:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineArguments.get_ParseOptions +M:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineArguments.get_ParseOptionsCore +M:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineParser.get_Default +M:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineParser.get_RegularFileExtension +M:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineParser.get_Script +M:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineParser.get_ScriptFileExtension +M:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineParser.Parse(System.Collections.Generic.IEnumerable{System.String},System.String,System.String,System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineParser.ParseConditionalCompilationSymbols(System.String,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Diagnostic}@) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.AddReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.AddReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.AddSyntaxTrees(Microsoft.CodeAnalysis.SyntaxTree[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.AddSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.AppendDefaultVersionResource(System.IO.Stream) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ClassifyCommonConversion(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ClassifyConversion(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.Clone +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonAddSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonClone +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonContainsSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateAnonymousTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{System.Boolean},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateArrayTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,System.Int32,Microsoft.CodeAnalysis.NullableAnnotation) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateErrorNamespaceSymbol(Microsoft.CodeAnalysis.INamespaceSymbol,System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateErrorTypeSymbol(Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String,System.Int32) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateFunctionPointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.RefKind,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.RefKind},System.Reflection.Metadata.SignatureCallingConvention,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.INamedTypeSymbol}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateNativeIntegerTypeSymbol(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreatePointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateTupleTypeSymbol(Microsoft.CodeAnalysis.INamedTypeSymbol,System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonCreateTupleTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonGetAssemblyOrModuleSymbol(Microsoft.CodeAnalysis.MetadataReference) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonGetCompilationNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonGetEntryPoint(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonGetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SemanticModelOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonGetTypeByMetadataName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonRemoveAllSyntaxTrees +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonRemoveSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonReplaceSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonWithAssemblyName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonWithOptions(Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonWithReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonWithScriptCompilationInfo(Microsoft.CodeAnalysis.ScriptCompilationInfo) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ContainsSymbolsWithName(System.Func{System.String,System.Boolean},Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ContainsSymbolsWithName(System.String,Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ContainsSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.Create(System.String,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference},Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CreateScriptCompilation(System.String,Microsoft.CodeAnalysis.SyntaxTree,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference},Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions,Microsoft.CodeAnalysis.CSharp.CSharpCompilation,System.Type,System.Type) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonAssembly +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonDynamicType +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonGlobalNamespace +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonObjectType +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonOptions +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonScriptClass +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonScriptGlobalsType +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonSourceModule +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_CommonSyntaxTrees +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_DirectiveReferences +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_IsCaseSensitive +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_Language +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_LanguageVersion +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_Options +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_ReferencedAssemblyNames +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_ScriptCompilationInfo +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.get_SyntaxTrees +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetDeclarationDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetDirectiveReference(Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetMetadataReference(Microsoft.CodeAnalysis.IAssemblySymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetMethodBodyDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetParseDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SemanticModelOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetSymbolsWithName(System.Func{System.String,System.Boolean},Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetSymbolsWithName(System.String,Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetUsedAssemblyReferences(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveAllReferences +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveAllSyntaxTrees +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveSyntaxTrees(Microsoft.CodeAnalysis.SyntaxTree[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.RemoveSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ReplaceReference(Microsoft.CodeAnalysis.MetadataReference,Microsoft.CodeAnalysis.MetadataReference) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ReplaceSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.ToMetadataReference(System.Collections.Immutable.ImmutableArray{System.String},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithAssemblyName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithOptions(Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithScriptCompilationInfo(Microsoft.CodeAnalysis.CSharp.CSharpScriptCompilationInfo) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.#ctor(Microsoft.CodeAnalysis.OutputKind,System.Boolean,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Microsoft.CodeAnalysis.OptimizationLevel,System.Boolean,System.Boolean,System.String,System.String,System.Collections.Immutable.ImmutableArray{System.Byte},System.Nullable{System.Boolean},Microsoft.CodeAnalysis.Platform,Microsoft.CodeAnalysis.ReportDiagnostic,System.Int32,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}},System.Boolean,System.Boolean,Microsoft.CodeAnalysis.XmlReferenceResolver,Microsoft.CodeAnalysis.SourceReferenceResolver,Microsoft.CodeAnalysis.MetadataReferenceResolver,Microsoft.CodeAnalysis.AssemblyIdentityComparer,Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.#ctor(Microsoft.CodeAnalysis.OutputKind,System.Boolean,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Microsoft.CodeAnalysis.OptimizationLevel,System.Boolean,System.Boolean,System.String,System.String,System.Collections.Immutable.ImmutableArray{System.Byte},System.Nullable{System.Boolean},Microsoft.CodeAnalysis.Platform,Microsoft.CodeAnalysis.ReportDiagnostic,System.Int32,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}},System.Boolean,System.Boolean,Microsoft.CodeAnalysis.XmlReferenceResolver,Microsoft.CodeAnalysis.SourceReferenceResolver,Microsoft.CodeAnalysis.MetadataReferenceResolver,Microsoft.CodeAnalysis.AssemblyIdentityComparer,Microsoft.CodeAnalysis.StrongNameProvider,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.#ctor(Microsoft.CodeAnalysis.OutputKind,System.Boolean,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Microsoft.CodeAnalysis.OptimizationLevel,System.Boolean,System.Boolean,System.String,System.String,System.Collections.Immutable.ImmutableArray{System.Byte},System.Nullable{System.Boolean},Microsoft.CodeAnalysis.Platform,Microsoft.CodeAnalysis.ReportDiagnostic,System.Int32,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}},System.Boolean,System.Boolean,Microsoft.CodeAnalysis.XmlReferenceResolver,Microsoft.CodeAnalysis.SourceReferenceResolver,Microsoft.CodeAnalysis.MetadataReferenceResolver,Microsoft.CodeAnalysis.AssemblyIdentityComparer,Microsoft.CodeAnalysis.StrongNameProvider,System.Boolean,Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.#ctor(Microsoft.CodeAnalysis.OutputKind,System.Boolean,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Microsoft.CodeAnalysis.OptimizationLevel,System.Boolean,System.Boolean,System.String,System.String,System.Collections.Immutable.ImmutableArray{System.Byte},System.Nullable{System.Boolean},Microsoft.CodeAnalysis.Platform,Microsoft.CodeAnalysis.ReportDiagnostic,System.Int32,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}},System.Boolean,System.Boolean,Microsoft.CodeAnalysis.XmlReferenceResolver,Microsoft.CodeAnalysis.SourceReferenceResolver,Microsoft.CodeAnalysis.MetadataReferenceResolver,Microsoft.CodeAnalysis.AssemblyIdentityComparer,Microsoft.CodeAnalysis.StrongNameProvider,System.Boolean,Microsoft.CodeAnalysis.MetadataImportOptions,Microsoft.CodeAnalysis.NullableContextOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.#ctor(Microsoft.CodeAnalysis.OutputKind,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Microsoft.CodeAnalysis.OptimizationLevel,System.Boolean,System.Boolean,System.String,System.String,System.Collections.Immutable.ImmutableArray{System.Byte},System.Nullable{System.Boolean},Microsoft.CodeAnalysis.Platform,Microsoft.CodeAnalysis.ReportDiagnostic,System.Int32,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}},System.Boolean,Microsoft.CodeAnalysis.XmlReferenceResolver,Microsoft.CodeAnalysis.SourceReferenceResolver,Microsoft.CodeAnalysis.MetadataReferenceResolver,Microsoft.CodeAnalysis.AssemblyIdentityComparer,Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.#ctor(Microsoft.CodeAnalysis.OutputKind,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Microsoft.CodeAnalysis.OptimizationLevel,System.Boolean,System.Boolean,System.String,System.String,System.Collections.Immutable.ImmutableArray{System.Byte},System.Nullable{System.Boolean},Microsoft.CodeAnalysis.Platform,Microsoft.CodeAnalysis.ReportDiagnostic,System.Int32,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}},System.Boolean,System.Boolean,Microsoft.CodeAnalysis.XmlReferenceResolver,Microsoft.CodeAnalysis.SourceReferenceResolver,Microsoft.CodeAnalysis.MetadataReferenceResolver,Microsoft.CodeAnalysis.AssemblyIdentityComparer,Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithAssemblyIdentityComparer(Microsoft.CodeAnalysis.AssemblyIdentityComparer) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithCheckOverflow(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithConcurrentBuild(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithCryptoKeyContainer(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithCryptoKeyFile(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithCryptoPublicKey(System.Collections.Immutable.ImmutableArray{System.Byte}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithDelaySign(System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithDeterministic(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithFeatures(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithGeneralDiagnosticOption(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithMainTypeName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithMetadataImportOptions(Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithMetadataReferenceResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithModuleName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithOptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithOutputKind(Microsoft.CodeAnalysis.OutputKind) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithPlatform(Microsoft.CodeAnalysis.Platform) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithPublicSign(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithReportSuppressedDiagnostics(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithScriptClassName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithSourceReferenceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithSpecificDiagnosticOptions(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithSpecificDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithStrongNameProvider(Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithSyntaxTreeOptionsProvider(Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.CommonWithXmlReferenceResolver(Microsoft.CodeAnalysis.XmlReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.ComputeHashCode +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.Equals(Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.get_AllowUnsafe +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.get_Language +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.get_NullableContextOptions +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.get_Usings +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.set_NullableContextOptions(Microsoft.CodeAnalysis.NullableContextOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithAllowUnsafe(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithAssemblyIdentityComparer(Microsoft.CodeAnalysis.AssemblyIdentityComparer) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithConcurrentBuild(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithCryptoKeyContainer(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithCryptoKeyFile(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithCryptoPublicKey(System.Collections.Immutable.ImmutableArray{System.Byte}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithDelaySign(System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithDeterministic(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithGeneralDiagnosticOption(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithMainTypeName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithMetadataImportOptions(Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithMetadataReferenceResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithModuleName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithNullableContextOptions(Microsoft.CodeAnalysis.NullableContextOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithOptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithOutputKind(Microsoft.CodeAnalysis.OutputKind) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithOverflowChecks(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithPlatform(Microsoft.CodeAnalysis.Platform) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithPublicSign(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithReportSuppressedDiagnostics(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithScriptClassName(System.String) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithSourceReferenceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithSpecificDiagnosticOptions(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithSpecificDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithStrongNameProvider(Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithSyntaxTreeOptionsProvider(Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithUsings(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithUsings(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithUsings(System.String[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithWarningLevel(System.Int32) +M:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.WithXmlReferenceResolver(Microsoft.CodeAnalysis.XmlReferenceResolver) +M:Microsoft.CodeAnalysis.CSharp.CSharpDiagnosticFormatter.get_Instance +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeControlFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeControlFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.ClassifyConversion(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.ClassifyConversion(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.ITypeSymbol,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.ClassifyConversion(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.ITypeSymbol,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetAliasInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetAwaitExpressionInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetCollectionInitializerSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetCompilationUnitRoot(Microsoft.CodeAnalysis.SyntaxTree,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetConstantValue(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetConversion(Microsoft.CodeAnalysis.Operations.IConversionOperation) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetConversion(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeconstructionInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetDeconstructionInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetElementConversion(Microsoft.CodeAnalysis.Operations.ISpreadOperation) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetFirstDirective(Microsoft.CodeAnalysis.SyntaxNode,System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetForEachStatementInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetForEachStatementInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetInConversion(Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetIndexerGroup(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetInterceptableLocation(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetInterceptorMethod(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetInterceptsLocationAttributeSyntax(Microsoft.CodeAnalysis.CSharp.InterceptableLocation) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetLastDirective(Microsoft.CodeAnalysis.SyntaxNode,System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetMemberGroup(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetMemberGroup(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetMemberGroup(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetOutConversion(Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetQueryClauseInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeAliasInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeConversion(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSpeculativeTypeInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetTypeInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetTypeInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetTypeInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetTypeInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.Insert(Microsoft.CodeAnalysis.SyntaxTokenList,System.Int32,Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.IsContextualKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.IsKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.IsReservedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.IsVerbatimIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.IsVerbatimStringLiteral(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.Kind(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.Kind(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.Kind(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.Kind(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.ReplaceTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.ReplaceTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModel(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SemanticModel@,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModelForMethodBody(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.TryGetSpeculativeSemanticModelForMethodBody(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax,Microsoft.CodeAnalysis.SemanticModel@) +M:Microsoft.CodeAnalysis.CSharp.CSharpExtensions.VarianceKindFromToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpFileSystemExtensions.Emit(Microsoft.CodeAnalysis.CSharp.CSharpCompilation,System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ResourceDescription},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpGeneratorDriver.Create(Microsoft.CodeAnalysis.IIncrementalGenerator[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpGeneratorDriver.Create(Microsoft.CodeAnalysis.ISourceGenerator[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpGeneratorDriver.Create(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ISourceGenerator},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.AdditionalText},Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider) +M:Microsoft.CodeAnalysis.CSharp.CSharpGeneratorDriver.Create(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ISourceGenerator},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.AdditionalText},Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider,Microsoft.CodeAnalysis.GeneratorDriverOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.#ctor(Microsoft.CodeAnalysis.CSharp.LanguageVersion,Microsoft.CodeAnalysis.DocumentationMode,Microsoft.CodeAnalysis.SourceCodeKind,System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.CommonWithDocumentationMode(Microsoft.CodeAnalysis.DocumentationMode) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.CommonWithFeatures(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}}) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.CommonWithKind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.Equals(Microsoft.CodeAnalysis.CSharp.CSharpParseOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_Default +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_Features +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_Language +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_LanguageVersion +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_PreprocessorSymbolNames +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.get_SpecifiedLanguageVersion +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithDocumentationMode(Microsoft.CodeAnalysis.DocumentationMode) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithFeatures(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}}) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithKind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithLanguageVersion(Microsoft.CodeAnalysis.CSharp.LanguageVersion) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithPreprocessorSymbols(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithPreprocessorSymbols(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions.WithPreprocessorSymbols(System.String[]) +M:Microsoft.CodeAnalysis.CSharp.CSharpScriptCompilationInfo.get_PreviousScriptCompilation +M:Microsoft.CodeAnalysis.CSharp.CSharpScriptCompilationInfo.WithPreviousScriptCompilation(Microsoft.CodeAnalysis.CSharp.CSharpCompilation) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.DeserializeFrom(System.IO.Stream,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.EquivalentToCore(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.FindToken(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.FindTrivia(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.FindTrivia(System.Int32,System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.get_Language +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.get_SyntaxTreeCore +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetDiagnostics +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetFirstDirective(System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetFirstToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetLastDirective(System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetLastToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetLeadingTrivia +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetLocation +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.GetTrailingTrivia +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.InsertNodesInListCore(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.InsertTokensInListCore(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.InsertTriviaInListCore(Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.IsEquivalentToCore(Microsoft.CodeAnalysis.SyntaxNode,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.Kind +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.NormalizeWhitespaceCore(System.String,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.RemoveNodesCore(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},Microsoft.CodeAnalysis.SyntaxRemoveOptions) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.ReplaceCore``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``0,Microsoft.CodeAnalysis.SyntaxNode},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Func{Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.ReplaceNodeInListCore(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.ReplaceTokenInListCore(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode.ReplaceTriviaInListCore(Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.#ctor(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.get_VisitIntoStructuredTrivia +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.Visit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAccessorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAliasQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAllowsConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAnonymousMethodExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAnonymousObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAnonymousObjectMemberDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArgument(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArrayRankSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArrayType(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitArrowExpressionClause(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAssignmentExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAttributeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAttributeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAttributeList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAttributeTargetSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitAwaitExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBaseExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBinaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBinaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBracketedArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitBreakStatement(Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCasePatternSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCaseSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCastExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCatchClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCatchDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCatchFilterClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCheckedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCheckedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitClassDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCollectionExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCompilationUnit(Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConditionalAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConditionalExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConstantPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConstructorConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConstructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConstructorInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitContinueStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConversionOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitConversionOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCrefBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCrefParameter(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitCrefParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDeclarationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDeclarationPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDefaultConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDefaultExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDefaultSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDefineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDelegateDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDestructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDiscardDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDiscardPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitDoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitElementAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitElementBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitElifDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitElseClause(Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitElseDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEmptyStatement(Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEndIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEndRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEnumDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEnumMemberDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEqualsValueClause(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitErrorDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEventDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitEventFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitExpressionColon(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitExpressionElement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitExpressionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitExternAliasDirective(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFinallyClause(Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFixedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitForEachStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitForEachVariableStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitForStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFromClause(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerParameter(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerUnmanagedCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitFunctionPointerUnmanagedCallingConventionList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitGenericName(Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitGlobalStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitGotoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitGroupClause(Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIdentifierName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIfStatement(Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitImplicitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitImplicitElementAccess(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitImplicitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitImplicitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIncompleteMember(Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIndexerDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIndexerMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInitializerExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterfaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterpolatedStringExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterpolatedStringText(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterpolation(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterpolationAlignmentClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInterpolationFormatClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitInvocationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitIsPatternExpression(Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitJoinClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitJoinIntoClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLabeledStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLetClause(Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLineDirectivePosition(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLineSpanDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitList(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitList(Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitList``1(Microsoft.CodeAnalysis.SeparatedSyntaxList{``0}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitList``1(Microsoft.CodeAnalysis.SyntaxList{``0}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitListElement(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitListElement``1(``0) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitListPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitListSeparator(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLiteralExpression(Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLoadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLocalDeclarationStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLocalFunctionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitLockStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitMakeRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitMemberAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitMemberBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitMethodDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNameMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNullableDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitNullableType(Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOmittedArraySizeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOmittedTypeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOrderByClause(Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitOrdering(Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParameter(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParenthesizedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParenthesizedPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitParenthesizedVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPositionalPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPragmaChecksumDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPredefinedType(Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPrimaryConstructorBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPropertyDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitPropertyPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitQualifiedCref(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitQueryBody(Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitQueryContinuation(Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitQueryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRangeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRecordDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRecursivePattern(Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitReferenceDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRefStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRefType(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRefTypeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRefValueExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitRelationalPattern(Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitReturnStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitScopedType(Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSelectClause(Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitShebangDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSimpleBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSingleVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSizeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSkippedTokensTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSlicePattern(Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSpreadElement(Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitStructDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSubpattern(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSwitchSection(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitSwitchStatement(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitThisExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitThrowExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitThrowStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTrivia(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTryStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTupleElement(Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTupleExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTupleType(Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeParameter(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeParameterConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitTypePattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitUnaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitUndefDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitUnsafeStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitUsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitUsingStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitVariableDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitVariableDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitVarPattern(Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitWhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitWhereClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitWhileStatement(Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitWithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlCDataSection(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlComment(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlElementEndTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlElementStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlEmptyElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlPrefix(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlProcessingInstruction(Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlText(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitXmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter.VisitYieldStatement(Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.#ctor +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.CloneNodeAsRoot``1(``0) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.Create(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.Create(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.Create(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.get_Options +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.get_OptionsCore +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetChangedSpans(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetChanges(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetCompilationUnitRoot(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetLineMappings(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetLineSpan(Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetLineVisibility(System.Int32,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetLocation(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetMappedLineSpan(Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetRoot(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetRootAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetRootAsyncCore(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.GetRootCore(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.HasHiddenRegions +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxTree,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Nullable{System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(System.String,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Nullable{System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(System.String,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.ParseText(System.String,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions,System.String,System.Text.Encoding,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.TryGetRoot(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode@) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.TryGetRootCore(Microsoft.CodeAnalysis.SyntaxNode@) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree.WithChangedText(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.#ctor +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.DefaultVisit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.Visit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAccessorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAliasQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAllowsConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAnonymousMethodExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAnonymousObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAnonymousObjectMemberDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArgument(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArrayRankSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArrayType(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitArrowExpressionClause(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAssignmentExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAttributeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAttributeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAttributeList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAttributeTargetSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitAwaitExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBaseExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBinaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBinaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBracketedArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitBreakStatement(Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCasePatternSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCaseSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCastExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCatchClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCatchDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCatchFilterClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCheckedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCheckedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitClassDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCollectionExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCompilationUnit(Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConditionalAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConditionalExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConstantPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConstructorConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConstructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConstructorInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitContinueStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConversionOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitConversionOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCrefBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCrefParameter(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitCrefParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDeclarationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDeclarationPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDefaultConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDefaultExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDefaultSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDefineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDelegateDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDestructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDiscardDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDiscardPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitDoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitElementAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitElementBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitElifDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitElseClause(Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitElseDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEmptyStatement(Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEndIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEndRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEnumDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEnumMemberDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEqualsValueClause(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitErrorDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEventDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitEventFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitExpressionColon(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitExpressionElement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitExpressionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitExternAliasDirective(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFinallyClause(Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFixedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitForEachStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitForEachVariableStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitForStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFromClause(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerParameter(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerUnmanagedCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitFunctionPointerUnmanagedCallingConventionList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitGenericName(Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitGlobalStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitGotoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitGroupClause(Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIdentifierName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIfStatement(Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitImplicitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitImplicitElementAccess(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitImplicitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitImplicitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIncompleteMember(Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIndexerDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIndexerMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInitializerExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterfaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterpolatedStringExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterpolatedStringText(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterpolation(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterpolationAlignmentClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInterpolationFormatClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitInvocationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitIsPatternExpression(Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitJoinClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitJoinIntoClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLabeledStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLetClause(Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLineDirectivePosition(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLineSpanDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitListPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLiteralExpression(Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLoadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLocalDeclarationStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLocalFunctionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitLockStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitMakeRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitMemberAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitMemberBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitMethodDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNameMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNullableDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitNullableType(Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOmittedArraySizeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOmittedTypeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOrderByClause(Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitOrdering(Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParameter(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParenthesizedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParenthesizedPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitParenthesizedVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPositionalPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPragmaChecksumDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPredefinedType(Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPrimaryConstructorBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPropertyDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitPropertyPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitQualifiedCref(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitQueryBody(Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitQueryContinuation(Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitQueryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRangeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRecordDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRecursivePattern(Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitReferenceDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRefStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRefType(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRefTypeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRefValueExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitRelationalPattern(Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitReturnStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitScopedType(Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSelectClause(Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitShebangDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSimpleBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSingleVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSizeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSkippedTokensTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSlicePattern(Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSpreadElement(Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitStructDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSubpattern(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSwitchSection(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitSwitchStatement(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitThisExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitThrowExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitThrowStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTryStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTupleElement(Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTupleExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTupleType(Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeParameter(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeParameterConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitTypePattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitUnaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitUndefDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitUnsafeStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitUsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitUsingStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitVariableDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitVariableDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitVarPattern(Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitWhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitWhereClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitWhileStatement(Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitWithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlCDataSection(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlComment(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlElementEndTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlElementStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlEmptyElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlPrefix(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlProcessingInstruction(Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlText(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitXmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor.VisitYieldStatement(Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.#ctor +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.DefaultVisit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.Visit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAccessorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAliasQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAllowsConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAnonymousMethodExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAnonymousObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAnonymousObjectMemberDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArgument(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArrayRankSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArrayType(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitArrowExpressionClause(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAssignmentExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAttributeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAttributeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAttributeList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAttributeTargetSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitAwaitExpression(Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBaseExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBinaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBinaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBracketedArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitBreakStatement(Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCasePatternSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCaseSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCastExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCatchClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCatchDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCatchFilterClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCheckedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCheckedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitClassDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCollectionExpression(Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCompilationUnit(Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConditionalAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConditionalExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConstantPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConstructorConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConstructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConstructorInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitContinueStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConversionOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitConversionOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCrefBracketedParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCrefParameter(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitCrefParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDeclarationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDeclarationPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDefaultConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDefaultExpression(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDefaultSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDefineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDelegateDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDestructorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDiscardDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDiscardPattern(Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitDoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitElementAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitElementBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitElifDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitElseClause(Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitElseDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEmptyStatement(Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEndIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEndRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEnumDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEnumMemberDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEqualsValueClause(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitErrorDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEventDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitEventFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitExpressionColon(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitExpressionElement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitExpressionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitExternAliasDirective(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFinallyClause(Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFixedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitForEachStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitForEachVariableStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitForStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFromClause(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerParameter(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerUnmanagedCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitFunctionPointerUnmanagedCallingConventionList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitGenericName(Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitGlobalStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitGotoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitGroupClause(Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIdentifierName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIfStatement(Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitImplicitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitImplicitElementAccess(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitImplicitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitImplicitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIncompleteMember(Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIndexerDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIndexerMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInitializerExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterfaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterpolatedStringExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterpolatedStringText(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterpolation(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterpolationAlignmentClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInterpolationFormatClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitInvocationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitIsPatternExpression(Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitJoinClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitJoinIntoClause(Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLabeledStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLetClause(Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLineDirectivePosition(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLineDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLineSpanDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitListPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLiteralExpression(Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLoadDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLocalDeclarationStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLocalFunctionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitLockStatement(Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitMakeRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitMemberAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitMemberBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitMethodDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNameMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNullableDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitNullableType(Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOmittedArraySizeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOmittedTypeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOperatorMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOrderByClause(Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitOrdering(Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParameter(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParenthesizedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParenthesizedPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitParenthesizedVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPositionalPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPragmaChecksumDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPredefinedType(Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPrimaryConstructorBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPropertyDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitPropertyPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitQualifiedCref(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitQueryBody(Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitQueryContinuation(Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitQueryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRangeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRecordDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRecursivePattern(Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitReferenceDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRefStructConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRefType(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRefTypeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRefValueExpression(Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRegionDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitRelationalPattern(Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitReturnStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitScopedType(Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSelectClause(Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitShebangDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSimpleBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSingleVariableDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSizeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSkippedTokensTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSlicePattern(Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSpreadElement(Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitStructDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSubpattern(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSwitchSection(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitSwitchStatement(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitThisExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitThrowExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitThrowStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTryStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTupleElement(Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTupleExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTupleType(Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeParameter(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeParameterConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitTypePattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitUnaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitUndefDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitUnsafeStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitUsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitUsingStatement(Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitVariableDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitVariableDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitVarPattern(Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitWarningDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitWhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitWhereClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitWhileStatement(Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitWithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlCDataSection(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlComment(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlElementEndTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlElementStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlEmptyElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlPrefix(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlProcessingInstruction(Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlText(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitXmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1.VisitYieldStatement(Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.#ctor(Microsoft.CodeAnalysis.SyntaxWalkerDepth) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.DefaultVisit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.get_Depth +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.Visit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.VisitLeadingTrivia(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.VisitToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.VisitTrailingTrivia(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker.VisitTrivia(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.DeconstructionInfo.get_Conversion +M:Microsoft.CodeAnalysis.CSharp.DeconstructionInfo.get_Method +M:Microsoft.CodeAnalysis.CSharp.DeconstructionInfo.get_Nested +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.Equals(Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo) +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_CurrentConversion +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_CurrentProperty +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_DisposeMethod +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_ElementConversion +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_ElementType +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_GetEnumeratorMethod +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_IsAsynchronous +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.get_MoveNextMethod +M:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.InterceptableLocation.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.InterceptableLocation.get_Data +M:Microsoft.CodeAnalysis.CSharp.InterceptableLocation.get_Version +M:Microsoft.CodeAnalysis.CSharp.InterceptableLocation.GetDisplayLocation +M:Microsoft.CodeAnalysis.CSharp.InterceptableLocation.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.LanguageVersionFacts.MapSpecifiedToEffectiveVersion(Microsoft.CodeAnalysis.CSharp.LanguageVersion) +M:Microsoft.CodeAnalysis.CSharp.LanguageVersionFacts.ToDisplayString(Microsoft.CodeAnalysis.CSharp.LanguageVersion) +M:Microsoft.CodeAnalysis.CSharp.LanguageVersionFacts.TryParse(System.String,Microsoft.CodeAnalysis.CSharp.LanguageVersion@) +M:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo.Equals(Microsoft.CodeAnalysis.CSharp.QueryClauseInfo) +M:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo.get_CastInfo +M:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo.get_OperationInfo +M:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo.GetHashCode +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.FormatLiteral(System.Char,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.FormatLiteral(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.FormatPrimitive(System.Object,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayParts(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayParts(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableAnnotation,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayParts(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayString(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayString(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableAnnotation,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToDisplayString(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayParts(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayParts(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableAnnotation,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayParts(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayString(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayString(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableAnnotation,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.SymbolDisplay.ToMinimalDisplayString(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.AddAccessors(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.get_Accessors +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.WithAccessors(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.get_Alias +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.get_ColonColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.WithAlias(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.WithColonColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.AddConstraints(Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.get_AllowsKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.get_Constraints +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.WithAllowsKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax.WithConstraints(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.get_AsyncKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.WithAsyncKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_AsyncKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_DelegateKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithAsyncKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithDelegateKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.AddInitializers(Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.get_Initializers +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.WithInitializers(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.get_NameEquals +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax.WithNameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.get_NameColon +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.get_RefKindKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.get_RefOrOutKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.WithNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.WithRefKindKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax.WithRefOrOutKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.AddTypeRankSpecifiers(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.AddSizes(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.get_Rank +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.get_Sizes +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax.WithSizes(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.AddRankSpecifiers(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.get_ElementType +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.get_RankSpecifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.WithElementType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax.WithRankSpecifiers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.get_ArrowToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.WithArrowToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.get_Left +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.get_Right +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.WithLeft(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax.WithRight(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.get_NameColon +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.get_NameEquals +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.WithNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax.WithNameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.AddAttributes(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.get_Attributes +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.get_Target +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.WithAttributes(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax.WithTarget(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseArgumentListSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseArgumentListSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseArgumentListSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseCrefParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseCrefParameterListSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseCrefParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax.get_Token +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax.WithToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.AddDeclarationVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.AddTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.get_Types +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax.WithTypes(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.AddExterns(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.AddUsings(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.get_Externs +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.get_NamespaceKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.get_Usings +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithExterns(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithNamespaceKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax.WithUsings(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterListSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.AddAccessorListAccessors(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.get_AccessorList +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.WithAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.get_Left +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.get_Right +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.WithLeft(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax.WithRight(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.get_Left +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.get_Right +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.WithLeft(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax.WithRight(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.AddStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.get_Statements +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax.WithStatements(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BranchingDirectiveTriviaSyntax.get_BranchTaken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BranchingDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BranchingDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.get_BreakKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.WithBreakKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.get_Pattern +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.get_WhenClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax.WithWhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.get_Value +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax.WithValue(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.get_CatchKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.get_Filter +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.WithCatchKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax.WithFilter(Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.get_FilterExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.get_WhenKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.WithFilterExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax.WithWhenKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.get_TypeParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.get_ClassOrStructKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.get_QuestionToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.WithClassOrStructKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax.WithQuestionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.AddElements(Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.get_Elements +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.WithElements(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_ForEachKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_InKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithForEachKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithInKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.AddExterns(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.AddUsings(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.get_EndOfFileToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.get_Externs +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.get_Usings +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.GetLoadDirectives +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.GetReferenceDirectives +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.WithEndOfFileToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.WithExterns(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax.WithUsings(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.get_WhenNotNull +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax.WithWhenNotNull(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalDirectiveTriviaSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalDirectiveTriviaSyntax.get_ConditionValue +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalDirectiveTriviaSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.get_QuestionToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.get_WhenFalse +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.get_WhenTrue +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.WithQuestionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.WithWhenFalse(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax.WithWhenTrue(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.get_ThisOrBaseKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax.WithThisOrBaseKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.get_ContinueKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.WithContinueKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_CheckedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_ImplicitOrExplicitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_OperatorKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithCheckedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithImplicitOrExplicitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithOperatorKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.AddParametersParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.get_CheckedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.get_ImplicitOrExplicitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.get_OperatorKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.WithCheckedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.WithImplicitOrExplicitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.WithOperatorKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.WithParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.get_ReadOnlyKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.get_RefKindKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.get_RefOrOutKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.WithReadOnlyKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.WithRefKindKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.WithRefOrOutKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.get_Designation +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.WithDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.get_Designation +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.WithDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax.get_DefaultKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax.WithDefaultKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.get_DefineKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.WithDefineKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax.WithName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_Arity +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_DelegateKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_ReturnType +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.get_TypeParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithDelegateKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithReturnType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.get_TildeToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax.WithTildeToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.get_DirectiveNameToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.GetNextDirective(System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.GetPreviousDirective(System.Func{Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.GetRelatedDirectives +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax.get_UnderscoreToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax.WithUnderscoreToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax.get_UnderscoreToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax.WithUnderscoreToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.AddContent(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.get_Content +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.get_EndOfComment +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.WithContent(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax.WithEndOfComment(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_DoKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.get_WhileKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithDoKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax.WithWhileKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_BranchTaken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_ConditionValue +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_ElifKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithBranchTaken(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithConditionValue(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithElifKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.get_ElseKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.WithElseKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.get_BranchTaken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.get_ElseKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.WithBranchTaken(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.WithElseKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.get_EndIfKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.WithEndIfKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.get_EndRegionKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.WithEndRegionKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_EnumKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithEnumKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.get_EqualsValue +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.WithEqualsValue(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.get_Value +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax.WithValue(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.get_ErrorKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.WithErrorKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.AddAccessorListAccessors(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_AccessorList +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_EventKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithEventKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.AddDeclarationVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.get_EventKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.WithEventKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.get_DotToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.WithDotToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.get_AllowsAnyExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.get_AliasKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.get_ExternKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.WithAliasKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.WithExternKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.AddDeclarationVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.AddExterns(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.AddUsings(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_Externs +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_NamespaceKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.get_Usings +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithExterns(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithNamespaceKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax.WithUsings(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.get_FinallyKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax.WithFinallyKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.AddDeclarationVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_FixedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithFixedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_ForEachKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_InKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithForEachKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithInKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_ForEachKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_InKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.get_Variable +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithForEachKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithInKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax.WithVariable(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.AddIncrementors(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.AddInitializers(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_FirstSemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_ForKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_Incrementors +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_Initializers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_SecondSemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithFirstSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithForKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithIncrementors(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithInitializers(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithSecondSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.get_FromKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.get_InKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.WithFromKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.WithInKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.AddUnmanagedCallingConventionListCallingConventions(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.get_ManagedOrUnmanagedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.get_UnmanagedCallingConventionList +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.WithManagedOrUnmanagedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax.WithUnmanagedCallingConventionList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.get_GreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.get_LessThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.WithGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.WithLessThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.get_AsteriskToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.get_CallingConvention +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.get_DelegateKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.WithAsteriskToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.WithCallingConvention(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.WithDelegateKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.AddCallingConventions(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.get_CallingConventions +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.WithCallingConventions(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax.WithName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.AddTypeArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.get_IsUnboundGenericName +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.get_TypeArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax.WithTypeArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.get_CaseOrDefaultKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.get_GotoKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.WithCaseOrDefaultKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.WithGotoKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.get_ByExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.get_ByKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.get_GroupExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.get_GroupKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.WithByExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.WithByKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.WithGroupExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax.WithGroupKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_BranchTaken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_ConditionValue +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_IfKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithBranchTaken(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithConditionValue(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithIfKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_Else +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_IfKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithElse(Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithIfKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.AddCommas(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.AddInitializerExpressions(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.get_Commas +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.WithCommas(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.AddInitializerExpressions(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.get_StackAllocKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax.WithStackAllocKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.AddAccessorListAccessors(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_AccessorList +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_Semicolon +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_ThisKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithSemicolon(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithThisKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.AddParametersParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.get_ThisKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.WithParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax.WithThisKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.AddExpressions(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.get_Expressions +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.WithExpressions(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.get_TypeParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.AddContents(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.get_Contents +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.get_StringEndToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.get_StringStartToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.WithContents(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.WithStringEndToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax.WithStringStartToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax.get_TextToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax.WithTextToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.get_CommaToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.get_Value +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.WithCommaToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax.WithValue(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.get_FormatStringToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax.WithFormatStringToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.get_AlignmentClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.get_FormatClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.WithAlignmentClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.WithFormatClause(Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.get_IsKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.get_Pattern +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.WithIsKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_EqualsKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_InExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_InKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_Into +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_JoinKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_LeftExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_OnKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_RightExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithEqualsKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithInExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithInKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithInto(Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithJoinKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithLeftExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithOnKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithRightExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.get_IntoKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax.WithIntoKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.get_ArrowToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithArrowToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithAsyncKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.get_LetKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax.WithLetKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.get_Character +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.get_CommaToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.get_Line +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.WithCharacter(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.WithCommaToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.WithLine(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_Line +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.get_LineKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithLine(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax.WithLineKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.get_LineKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax.WithLineKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_CharacterOffset +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_End +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_LineKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_MinusToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.get_Start +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithCharacterOffset(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithEnd(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithLineKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithMinusToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax.WithStart(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.AddPatterns(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.get_CloseBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.get_Designation +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.get_OpenBracketToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.get_Patterns +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.WithCloseBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.WithDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.WithOpenBracketToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax.WithPatterns(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax.get_Token +M:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax.WithToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.get_LoadKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax.WithLoadKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.AddDeclarationVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_IsConst +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.get_UsingKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax.WithUsingKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_ReturnType +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.get_TypeParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithReturnType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_LockKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithLockKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_Arity +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_ReturnType +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.get_TypeParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithReturnType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.AddParametersParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax.WithParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.AddExterns(Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.AddUsings(Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_Externs +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_NamespaceKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.get_Usings +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithExterns(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithNamespaceKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax.WithUsings(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax.get_Arity +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_NullableKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_SettingToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.get_TargetToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithNullableKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithSettingToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax.WithTargetToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.get_ElementType +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.get_QuestionToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.WithElementType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax.WithQuestionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.get_NewKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.WithNewKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax.get_OmittedArraySizeExpressionToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax.WithOmittedArraySizeExpressionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax.get_OmittedTypeArgumentToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax.WithOmittedTypeArgumentToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.AddBodyAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.AddBodyStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_CheckedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_OperatorKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_ReturnType +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithCheckedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithOperatorKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithReturnType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.AddParametersParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.get_CheckedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.get_OperatorKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.WithCheckedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.WithOperatorKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax.WithParameters(Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.AddOrderings(Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.get_OrderByKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.get_Orderings +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.WithOrderByKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax.WithOrderings(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.get_AscendingOrDescendingKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.WithAscendingOrDescendingKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.get_Default +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.WithDefault(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_ArrowToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_AsyncKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.get_ReturnType +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithArrowToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithAsyncKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax.WithReturnType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.get_Pattern +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.AddVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.get_Variables +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax.WithVariables(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.get_AsteriskToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.get_ElementType +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.WithAsteriskToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax.WithElementType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.AddSubpatterns(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.get_Subpatterns +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax.WithSubpatterns(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.get_Operand +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.WithOperand(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_Bytes +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_ChecksumKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_Guid +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.get_PragmaKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithBytes(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithChecksumKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithGuid(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax.WithPragmaKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.AddErrorCodes(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_DisableOrRestoreKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_ErrorCodes +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_PragmaKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.get_WarningKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithDisableOrRestoreKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithErrorCodes(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithPragmaKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax.WithWarningKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.get_Operand +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.WithOperand(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.AddAccessorListAccessors(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_AccessorList +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_ExplicitInterfaceSpecifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_Semicolon +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithAccessorList(Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithSemicolon(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.AddSubpatterns(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.get_Subpatterns +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax.WithSubpatterns(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.get_Container +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.get_DotToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.get_Member +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.MemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.WithContainer(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.WithDotToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax.WithMember(Microsoft.CodeAnalysis.CSharp.Syntax.MemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.get_DotToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.get_Left +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.get_Right +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.WithDotToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.WithLeft(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.WithRight(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.AddClauses(Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.get_Clauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.get_Continuation +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.get_SelectOrGroup +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.WithClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.WithContinuation(Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax.WithSelectOrGroup(Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.AddBodyClauses(Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.get_IntoKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax.WithIntoKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.AddBodyClauses(Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.get_Body +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.get_FromClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax.WithFromClause(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.get_LeftOperand +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.get_RightOperand +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.WithLeftOperand(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax.WithRightOperand(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_ClassOrStructKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.get_TypeParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithClassOrStructKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.AddPositionalPatternClauseSubpatterns(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.AddPropertyPatternClauseSubpatterns(Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.get_Designation +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.get_PositionalPatternClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.get_PropertyPatternClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.WithDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.WithPositionalPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.WithPropertyPatternClause(Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.get_File +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.get_ReferenceKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.WithFile(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax.WithReferenceKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.get_RefKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax.WithRefKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.get_RefKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.get_StructKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.WithRefKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax.WithStructKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.get_ReadOnlyKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.get_RefKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.WithReadOnlyKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.WithRefKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_Comma +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithComma(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.get_RegionKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax.WithRegionKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.get_ReturnKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.WithReturnKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.get_ScopedKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.WithScopedKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.get_SelectKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax.WithSelectKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.get_ExclamationToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.WithExclamationToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddParameterAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.AddParameterModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_ArrowToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_AsyncKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_ExpressionBody +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.get_Parameter +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithArrowToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithAsyncKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithBody(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithExpressionBody(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax.WithParameter(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.AddTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.get_Tokens +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax.WithTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.get_DotDotToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.get_Pattern +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.WithDotDotToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.get_StackAllocKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.WithStackAllocKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_BaseList +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_Modifiers +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.get_TypeParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.StructuredTriviaSyntax.get_ParentTrivia +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.get_ExpressionColon +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.get_NameColon +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.get_Pattern +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.WithExpressionColon(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.WithNameColon(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.get_EqualsGreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.get_Pattern +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.get_WhenClause +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.WithEqualsGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax.WithWhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.AddArms(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.get_Arms +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.get_GoverningExpression +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.get_SwitchKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.WithArms(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.WithGoverningExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax.WithSwitchKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.AddLabels(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.AddStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.get_Labels +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.get_Statements +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.WithLabels(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax.WithStatements(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.AddSections(Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_CloseBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_OpenBraceToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_Sections +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.get_SwitchKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithSections(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax.WithSwitchKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax.get_Token +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax.WithToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.get_ThrowKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax.WithThrowKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.get_ThrowKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax.WithThrowKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.AddCatches(Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.get_Catches +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.get_Finally +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.get_TryKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.WithCatches(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.WithFinally(Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax.WithTryKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.AddElements(Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.get_Elements +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.WithElements(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.AddArguments(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.get_Arguments +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.get_GreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.get_LessThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.WithArguments(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.WithGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax.WithLessThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddBaseListTypes(Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddConstraintClauses(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddMembers(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddModifiers(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.AddTypeParameterListParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_Arity +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_ConstraintClauses +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_Members +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_ParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.get_TypeParameterList +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithBaseList(Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithCloseBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithConstraintClauses(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithMembers(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithModifiers(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithOpenBraceToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax.WithTypeParameterList(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.get_Keyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.WithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.AddConstraints(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.get_Constraints +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.get_WhereKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.WithConstraints(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax.WithWhereKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.AddParameters(Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.get_GreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.get_LessThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.get_Parameters +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.WithGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.WithLessThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax.WithParameters(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.get_VarianceKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax.WithVarianceKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax.get_IsNint +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax.get_IsNotNull +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax.get_IsNuint +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax.get_IsUnmanaged +M:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax.get_IsVar +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.get_OperatorToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.get_Pattern +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.WithOperatorToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax.WithPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.get_UndefKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.WithName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax.WithUndefKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.AddBlockAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.AddBlockStatements(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.get_Block +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.get_UnsafeKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.WithBlock(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax.WithUnsafeKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_Alias +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_GlobalKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_NamespaceOrType +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_StaticKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_UnsafeKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.get_UsingKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithAlias(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithGlobalKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithNamespaceOrType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithStaticKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithUnsafeKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax.WithUsingKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_AwaitKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_Declaration +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.get_UsingKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithAwaitKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax.WithUsingKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.AddVariables(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.get_Type +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.get_Variables +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.WithType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax.WithVariables(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.AddArgumentListArguments(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.get_ArgumentList +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.WithArgumentList(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.WithIdentifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.get_Designation +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.get_VarKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.WithDesignation(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax.WithVarKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.get_EndOfDirectiveToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.get_HashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.get_IsActive +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.get_WarningKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.WithEndOfDirectiveToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.WithHashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.WithIsActive(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax.WithWarningKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.get_WhenKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax.WithWhenKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.get_WhereKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax.WithWhereKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_CloseParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_Condition +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_OpenParenToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_Statement +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.get_WhileKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithCloseParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithCondition(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithOpenParenToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax.WithWhileKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.AddInitializerExpressions(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.get_Initializer +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.get_WithKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.WithInitializer(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax.WithWithKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.get_EndQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.get_StartQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.WithEndQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.WithStartQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.AddTextTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.get_EndCDataToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.get_StartCDataToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.get_TextTokens +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.WithEndCDataToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.WithStartCDataToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax.WithTextTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.AddTextTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.get_LessThanExclamationMinusMinusToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.get_MinusMinusGreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.get_TextTokens +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.WithLessThanExclamationMinusMinusToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.WithMinusMinusGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax.WithTextTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.get_Cref +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.get_EndQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.get_StartQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.WithCref(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.WithEndQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax.WithStartQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.get_GreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.get_LessThanSlashToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.WithGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.WithLessThanSlashToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.AddAttributes(Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.get_Attributes +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.get_GreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.get_LessThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.WithAttributes(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.WithGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.WithLessThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.AddContent(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.AddStartTagAttributes(Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.get_Content +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.get_EndTag +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.get_StartTag +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.WithContent(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.WithEndTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax.WithStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.AddAttributes(Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.get_Attributes +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.get_LessThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.get_SlashGreaterThanToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.WithAttributes(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.WithLessThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax.WithSlashGreaterThanToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.get_EndQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.get_Identifier +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.get_StartQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.WithEndQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.WithIdentifier(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax.WithStartQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.get_LocalName +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.get_Prefix +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.WithLocalName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax.WithPrefix(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.get_ColonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.get_Prefix +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.WithColonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax.WithPrefix(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.AddTextTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.get_EndProcessingInstructionToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.get_StartProcessingInstructionToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.get_TextTokens +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.WithEndProcessingInstructionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.WithStartProcessingInstructionToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax.WithTextTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.AddTextTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.get_EndQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.get_EqualsToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.get_Name +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.get_StartQuoteToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.get_TextTokens +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.Update(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.WithEndQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.WithEqualsToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.WithName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.WithStartQuoteToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax.WithTextTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.AddTextTokens(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.get_TextTokens +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.Update(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax.WithTextTokens(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.Accept(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.Accept``1(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor{``0}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.AddAttributeLists(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.get_AttributeLists +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.get_Expression +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.get_ReturnOrBreakKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.get_SemicolonToken +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.get_YieldKeyword +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.Update(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.WithAttributeLists(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.WithReturnOrBreakKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.WithSemicolonToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax.WithYieldKeyword(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.NormalizeWhitespace(Microsoft.CodeAnalysis.SyntaxToken,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.NormalizeWhitespace(Microsoft.CodeAnalysis.SyntaxToken,System.String,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.NormalizeWhitespace(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.NormalizeWhitespace(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.ToSyntaxTriviaList(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.Update(Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.Update(Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.Update(Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions.WithIdentifier(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorList(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AccessorList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AliasQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AliasQualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AliasQualifiedName(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AllowsConstraintClause(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AllowsConstraintClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousMethodExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousObjectCreationExpression(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousObjectCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousObjectMemberDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AnonymousObjectMemberDeclarator(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode,System.Func{Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxTree,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent``1(Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent``1(Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},System.Func{Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent``1(Microsoft.CodeAnalysis.SyntaxList{``0},Microsoft.CodeAnalysis.SyntaxList{``0},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AreEquivalent``1(Microsoft.CodeAnalysis.SyntaxList{``0},Microsoft.CodeAnalysis.SyntaxList{``0},System.Func{Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.Boolean}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Argument(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Argument(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArgumentList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArgumentList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayRankSpecifier(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayRankSpecifier(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrayType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrowExpressionClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ArrowExpressionClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AssignmentExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AssignmentExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Attribute(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Attribute(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeArgument(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeArgumentList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeArgumentList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeList(Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeTargetSpecifier(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AttributeTargetSpecifier(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AwaitExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.AwaitExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BadDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BadDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BadToken(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BaseExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BaseExpression(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BaseList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BaseList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BinaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BinaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BinaryPattern(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BinaryPattern(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Block(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BracketedArgumentList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BracketedArgumentList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BracketedParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BracketedParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BreakStatement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BreakStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BreakStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.BreakStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CasePatternSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CasePatternSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CasePatternSwitchLabel(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CaseSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CaseSwitchLabel(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CaseSwitchLabel(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CastExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CastExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchClause +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchClause(Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchDeclaration(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchFilterClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CatchFilterClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CheckedStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ClassOrStructConstraint(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CollectionExpression(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CollectionExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Comment(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CompilationUnit +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CompilationUnit(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CompilationUnit(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConditionalAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConditionalAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConditionalExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConditionalExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstantPattern(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorConstraint +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorConstraint(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorInitializer(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConstructorInitializer(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ContinueStatement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ContinueStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ContinueStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ContinueStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorDeclaration(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ConversionOperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CreateTokenParser(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefBracketedParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefBracketedParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefParameter(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefParameter(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefParameter(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.CrefParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DeclarationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DeclarationPattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultConstraint +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultConstraint(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultSwitchLabel +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultSwitchLabel(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefaultSwitchLabel(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefineDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefineDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DefineDirectiveTrivia(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DelegateDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DelegateDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DelegateDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DelegateDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DestructorDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DisabledText(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DiscardDesignation +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DiscardDesignation(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DiscardPattern +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DiscardPattern(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DocumentationComment(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DocumentationCommentExterior(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DoStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DoStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DoStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.DoStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElasticEndOfLine(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElasticWhitespace(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElementAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElementAccessExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElementBindingExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElementBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElifDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElifDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElseClause(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElseClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElseDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ElseDirectiveTrivia(System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EmptyStatement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EmptyStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EmptyStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EmptyStatement(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndIfDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndIfDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndOfLine(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndOfLine(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndRegionDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EndRegionDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumMemberDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumMemberDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumMemberDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EnumMemberDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EqualsValueClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EqualsValueClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ErrorDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ErrorDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventFieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventFieldDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.EventFieldDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExplicitInterfaceSpecifier(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionColon(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionElement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExpressionStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExternAliasDirective(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExternAliasDirective(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ExternAliasDirective(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FieldDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FieldDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FieldDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FileScopedNamespaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FinallyClause(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FinallyClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FixedStatement(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FixedStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FixedStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FixedStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachVariableStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachVariableStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachVariableStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachVariableStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForEachVariableStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForStatement(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ForStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FromClause(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FromClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FromClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FromClause(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerCallingConvention(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerCallingConvention(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerParameter(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerParameter(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerType +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerType(Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerType(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerUnmanagedCallingConvention(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerUnmanagedCallingConventionList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.FunctionPointerUnmanagedCallingConventionList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GenericName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GenericName(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GenericName(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_CarriageReturn +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_CarriageReturnLineFeed +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticCarriageReturn +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticCarriageReturnLineFeed +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticLineFeed +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticMarker +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticSpace +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_ElasticTab +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_LineFeed +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_Space +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.get_Tab +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GetNonGenericExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GetStandaloneExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GlobalStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GlobalStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GotoStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GotoStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GotoStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GotoStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GotoStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GroupClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.GroupClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Identifier(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Identifier(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Identifier(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IdentifierName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IdentifierName(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IfStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitElementAccess +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitElementAccess(Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitObjectCreationExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitObjectCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ImplicitStackAllocArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IncompleteMember(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IncompleteMember(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IndexerMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InitializerExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InitializerExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterfaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterfaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterfaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterfaceDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterfaceDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringExpression(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringText +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolatedStringText(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Interpolation(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Interpolation(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Interpolation(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolationAlignmentClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolationFormatClause(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InterpolationFormatClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InvocationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.InvocationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IsCompleteSubmission(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IsPatternExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.IsPatternExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinClause(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinClause(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinIntoClause(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinIntoClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.JoinIntoClause(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LabeledStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LabeledStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LabeledStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LabeledStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LabeledStatement(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LetClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LetClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LetClause(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineDirectivePosition(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineDirectivePosition(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineSpanDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineSpanDirectiveTrivia(Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LineSpanDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.List``1 +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.List``1(System.Collections.Generic.IEnumerable{``0}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ListPattern(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ListPattern(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ListPattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Char,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Decimal,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Double,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Int32,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Int64,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.Single,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.UInt32,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.UInt64,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Decimal) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Double) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Int32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Int64) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.Single) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Decimal) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Double) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Int32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Int64) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.Single) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.UInt32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.String,System.UInt64) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.UInt32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Literal(System.UInt64) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LiteralExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LiteralExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LoadDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LoadDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalDeclarationStatement(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LocalFunctionStatement(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LockStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LockStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LockStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.LockStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MakeRefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MakeRefExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MemberAccessExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MemberAccessExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MemberBindingExpression(Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MemberBindingExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MethodDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MethodDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MethodDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MethodDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MethodDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MissingToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.MissingToken(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameColon(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameColon(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameColon(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameEquals(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameEquals(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NameMemberCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NamespaceDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NamespaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NamespaceDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NamespaceDeclaration(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NodeOrTokenList +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NodeOrTokenList(Microsoft.CodeAnalysis.SyntaxNodeOrToken[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NodeOrTokenList(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NullableDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NullableDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NullableDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NullableType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.NullableType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ObjectCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ObjectCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OmittedArraySizeExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OmittedArraySizeExpression(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OmittedTypeArgument +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OmittedTypeArgument(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OperatorMemberCref(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OrderByClause(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.OrderByClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Ordering(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Ordering(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Parameter(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Parameter(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedLambdaExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedPattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedVariableDesignation(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParenthesizedVariableDesignation(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseArgumentList(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseAttributeArgumentList(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseBracketedArgumentList(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseBracketedParameterList(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseCompilationUnit(System.String,System.Int32,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseExpression(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseLeadingTrivia(System.String,System.Int32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseMemberDeclaration(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseName(System.String,System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseParameterList(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseStatement(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Nullable{System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(System.String,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Nullable{System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(System.String,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Text.Encoding,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseSyntaxTree(System.String,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Text.Encoding,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseToken(System.String,System.Int32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseTokens(System.String,System.Int32,System.Int32,Microsoft.CodeAnalysis.CSharp.CSharpParseOptions) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseTrailingTrivia(System.String,System.Int32) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseTypeName(System.String,System.Int32,Microsoft.CodeAnalysis.ParseOptions,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ParseTypeName(System.String,System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PointerType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PointerType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PositionalPatternClause(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PositionalPatternClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PragmaChecksumDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PragmaChecksumDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax},Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PragmaWarningDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PredefinedType(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PreprocessingMessage(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PrimaryConstructorBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PrimaryConstructorBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyPatternClause(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.PropertyPatternClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QualifiedCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.MemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QualifiedCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.MemberCrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QualifiedName(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryBody(Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryBody(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryContinuation(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryContinuation(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryContinuation(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.QueryExpression(Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RangeExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RangeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RangeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecordDeclaration(Microsoft.CodeAnalysis.SyntaxToken,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecursivePattern +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RecursivePattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReferenceDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReferenceDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefStructConstraint +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefStructConstraint(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefType(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefType(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefTypeExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefTypeExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefValueExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RefValueExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RegionDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RegionDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.RelationalPattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReturnStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReturnStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReturnStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ReturnStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ScopedType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ScopedType(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SelectClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SelectClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SeparatedList``1 +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SeparatedList``1(Microsoft.CodeAnalysis.SyntaxNodeOrTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SeparatedList``1(System.Collections.Generic.IEnumerable{``0}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SeparatedList``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SeparatedList``1(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ShebangDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ShebangDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleBaseType(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SimpleLambdaExpression(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SingletonList``1(``0) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SingletonSeparatedList``1(``0) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SingleVariableDesignation(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SizeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SizeOfExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SkippedTokensTrivia +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SkippedTokensTrivia(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SlicePattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SlicePattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SpreadElement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SpreadElement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StackAllocArrayCreationExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StackAllocArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StackAllocArrayCreationExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.StructDeclaration(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Subpattern(Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Subpattern(Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Subpattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchExpressionArm(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchSection +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchSection(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax},Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SwitchStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SyntaxTree(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.ParseOptions,System.String,System.Text.Encoding) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.SyntaxTrivia(Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThisExpression +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThisExpression(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.ThrowStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Token(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Token(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Token(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TokenList +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TokenList(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TokenList(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TokenList(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Trivia(Microsoft.CodeAnalysis.CSharp.Syntax.StructuredTriviaSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TriviaList +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TriviaList(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TriviaList(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TriviaList(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TryStatement(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TryStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TryStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TryStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TryStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleElement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleElement(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleExpression(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleType(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TupleType(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeArgumentList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeArgumentList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeConstraint(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeCref(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeOfExpression(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeOfExpression(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameter(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameter(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameter(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterConstraintClause(Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterConstraintClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterConstraintClause(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterList(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypeParameterList(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.TypePattern(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnaryPattern(Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnaryPattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UndefDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UndefDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UndefDirectiveTrivia(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnsafeStatement(Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnsafeStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnsafeStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UnsafeStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingDirective(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.UsingStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VariableDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VariableDeclaration(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax,Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VariableDeclarator(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VariableDeclarator(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VariableDeclarator(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VarPattern(Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VarPattern(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.VerbatimIdentifier(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WarningDirectiveTrivia(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WarningDirectiveTrivia(System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhenClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhenClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhereClause(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhereClause(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhileStatement(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhileStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhileStatement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WhileStatement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Whitespace(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.Whitespace(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.WithExpression(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCDataSection(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCDataSection(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlComment(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlComment(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlCrefAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElement(System.String,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElementEndTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElementEndTag(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElementStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElementStartTag(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlElementStartTag(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlEmptyElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlEmptyElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlEmptyElement(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax},Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlEmptyElement(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlEntity(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlExampleElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlExampleElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlExceptionElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlExceptionElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlMultiLineElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlMultiLineElement(System.String,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlName(Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlName(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlName(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNameAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,System.String,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNameAttribute(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNewLine(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlNullKeywordElement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlParaElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlParaElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlParamElement(System.String,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlParamElement(System.String,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlParamRefElement(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPermissionElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPermissionElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPlaceholderElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPlaceholderElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPrefix(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPrefix(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPrefix(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlPreliminaryElement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlProcessingInstruction(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlProcessingInstruction(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlProcessingInstruction(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlRemarksElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlRemarksElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlReturnsElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlReturnsElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlSeeAlsoElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlSeeAlsoElement(System.Uri,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlSeeElement(Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlSummaryElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlSummaryElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlText +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlText(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlText(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlText(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(System.String,Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(System.String,Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextAttribute(System.String,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextLiteral(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextLiteral(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextLiteral(System.String,System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextNewLine(Microsoft.CodeAnalysis.SyntaxTriviaList,System.String,System.String,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextNewLine(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlTextNewLine(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlThreadSafetyElement +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlThreadSafetyElement(System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlValueElement(Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax[]) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.XmlValueElement(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax}) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.YieldStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.YieldStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.YieldStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax},Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFactory.YieldStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.get_EqualityComparer +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetAccessorDeclarationKind(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetAssignmentExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetBaseTypeDeclarationKind(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetBinaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetCheckStatement(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetContextualKeywordKind(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetContextualKeywordKinds +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetInstanceExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetKeywordKind(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetKeywordKinds +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetLiteralExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetOperatorKind(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPreprocessorKeywordKind(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPreprocessorKeywordKinds +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPrimaryFunction(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetPunctuationKinds +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetReservedKeywordKinds +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetSwitchLabelKind(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetText(Microsoft.CodeAnalysis.Accessibility) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetText(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.GetTypeDeclarationKind(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAccessibilityModifier(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAccessorDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAccessorDeclarationKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAliasQualifier(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAnyOverloadableOperator(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAnyToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAnyUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAssignmentExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAssignmentExpressionOperatorToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAttributeName(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsAttributeTargetSpecifier(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsBinaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsBinaryExpressionOperatorToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsCheckedOperator(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsContextualKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsDocumentationCommentTrivia(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsFixedStatementExpression(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsGlobalMemberDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsIdentifierPartCharacter(System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsIdentifierStartCharacter(System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsIndexed(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsInNamespaceOrTypeContext(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsInstanceExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsInTypeOnlyContext(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsInvoked(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsKeywordKind(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsLambdaBody(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsLanguagePunctuation(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsLiteralExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsName(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsNamedArgumentName(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsNamespaceAliasQualifier(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsNamespaceMemberDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsNewLine(System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsOverloadableBinaryOperator(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsOverloadableUnaryOperator(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPostfixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPostfixUnaryExpressionToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPredefinedType(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPrefixUnaryExpression(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPrefixUnaryExpressionOperatorToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPreprocessorDirective(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPreprocessorKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPreprocessorPunctuation(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPrimaryFunction(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPunctuation(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsPunctuationOrKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsQueryContextualKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsReservedKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsReservedTupleElementName(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsTrivia(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsTypeDeclaration(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsTypeParameterVarianceKeyword(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsTypeSyntax(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsUnaryOperatorDeclarationToken(Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsValidIdentifier(System.String) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.IsWhitespace(System.Char) +M:Microsoft.CodeAnalysis.CSharp.SyntaxFacts.TryGetInferredMemberName(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.Dispose +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.ParseLeadingTrivia +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.ParseNextToken +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.ParseTrailingTrivia +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.ResetTo(Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.Result) +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.Result.get_ContextualKind +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.Result.get_Token +M:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.SkipForwardTo(System.Int32) +M:Microsoft.CodeAnalysis.CSharp.TypedConstantExtensions.ToCSharpString(Microsoft.CodeAnalysis.TypedConstant) +M:Microsoft.CodeAnalysis.CSharpExtensions.Any(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.Any(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.Any``1(Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.Any``1(Microsoft.CodeAnalysis.SyntaxList{``0},Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.ContainsDirective(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IndexOf(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IndexOf(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IndexOf``1(Microsoft.CodeAnalysis.SeparatedSyntaxList{``0},Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IndexOf``1(Microsoft.CodeAnalysis.SyntaxList{``0},Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IsKind(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IsKind(Microsoft.CodeAnalysis.SyntaxNodeOrToken,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IsKind(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +M:Microsoft.CodeAnalysis.CSharpExtensions.IsKind(Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.CSharp.SyntaxKind) +T:Microsoft.CodeAnalysis.CSharp.AwaitExpressionInfo +T:Microsoft.CodeAnalysis.CSharp.Conversion +T:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineArguments +T:Microsoft.CodeAnalysis.CSharp.CSharpCommandLineParser +T:Microsoft.CodeAnalysis.CSharp.CSharpCompilation +T:Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions +T:Microsoft.CodeAnalysis.CSharp.CSharpDiagnosticFormatter +T:Microsoft.CodeAnalysis.CSharp.CSharpExtensions +T:Microsoft.CodeAnalysis.CSharp.CSharpFileSystemExtensions +T:Microsoft.CodeAnalysis.CSharp.CSharpGeneratorDriver +T:Microsoft.CodeAnalysis.CSharp.CSharpParseOptions +T:Microsoft.CodeAnalysis.CSharp.CSharpScriptCompilationInfo +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxNode +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxRewriter +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxTree +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxVisitor`1 +T:Microsoft.CodeAnalysis.CSharp.CSharpSyntaxWalker +T:Microsoft.CodeAnalysis.CSharp.DeconstructionInfo +T:Microsoft.CodeAnalysis.CSharp.ForEachStatementInfo +T:Microsoft.CodeAnalysis.CSharp.InterceptableLocation +T:Microsoft.CodeAnalysis.CSharp.LanguageVersion +T:Microsoft.CodeAnalysis.CSharp.LanguageVersionFacts +T:Microsoft.CodeAnalysis.CSharp.QueryClauseInfo +T:Microsoft.CodeAnalysis.CSharp.SymbolDisplay +T:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AccessorListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AllowsConstraintSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousFunctionExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousMethodExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectCreationExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AnonymousObjectMemberDeclaratorSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArgumentSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayCreationExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayRankSpecifierSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArrayTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ArrowExpressionClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AssignmentExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeArgumentSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AttributeTargetSpecifierSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.AwaitExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BadDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseArgumentListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseCrefParameterListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionColonSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseFieldDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseNamespaceDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseObjectCreationExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BinaryPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BlockSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedArgumentListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BracketedParameterListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BranchingDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.BreakStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CasePatternSwitchLabelSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CaseSwitchLabelSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CastExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CatchClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CatchDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CatchFilterClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CheckedStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ClassDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ClassOrStructConstraintSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionElementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CollectionExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CommonForEachStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CompilationUnitSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalAccessExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConditionalExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConstantPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorConstraintSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConstructorInitializerSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ContinueStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ConversionOperatorMemberCrefSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CrefBracketedParameterListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CrefParameterSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.CrefSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DeclarationPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultConstraintSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DefaultSwitchLabelSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DefineDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DelegateDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DestructorDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardDesignationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DiscardPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DocumentationCommentTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.DoStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ElementAccessExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ElementBindingExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ElifDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ElseClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ElseDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.EmptyStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.EndIfDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.EndRegionDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.EnumDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.EnumMemberDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.EqualsValueClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ErrorDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.EventDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.EventFieldDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExplicitInterfaceSpecifierSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionColonSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionElementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionOrPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ExternAliasDirectiveSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FieldDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FileScopedNamespaceDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FinallyClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FixedStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ForEachVariableStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ForStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FromClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerCallingConventionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerParameterSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.FunctionPointerUnmanagedCallingConventionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.GenericNameSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.GlobalStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.GotoStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.GroupClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.IdentifierNameSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.IfDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.IfStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitArrayCreationExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitElementAccessSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitObjectCreationExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ImplicitStackAllocArrayCreationExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.IncompleteMemberSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.IndexerMemberCrefSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InitializerExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InstanceExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterfaceDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringContentSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolatedStringTextSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationAlignmentClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationFormatClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InterpolationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.IsPatternExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.JoinClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.JoinIntoClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LabeledStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LambdaExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LetClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectivePositionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LineDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LineOrSpanDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LineSpanDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ListPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LiteralExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LoadDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LocalDeclarationStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LocalFunctionStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.LockStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.MakeRefExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.MemberAccessExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.MemberBindingExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.MemberCrefSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.NameColonSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.NameEqualsSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.NameMemberCrefSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.NamespaceDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.NullableDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.NullableTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ObjectCreationExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedArraySizeExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.OmittedTypeArgumentSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.OperatorMemberCrefSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.OrderByClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.OrderingSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParameterSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedLambdaExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ParenthesizedVariableDesignationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PointerTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PositionalPatternClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PostfixUnaryExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaChecksumDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PragmaWarningDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PredefinedTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PrefixUnaryExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PrimaryConstructorBaseTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.PropertyPatternClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedCrefSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.QueryBodySyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.QueryClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.QueryContinuationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.QueryExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.RangeExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.RecordDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.RecursivePatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ReferenceDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.RefExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.RefStructConstraintSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.RefTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.RefValueExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.RegionDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.RelationalPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ReturnStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ScopedTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SelectClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SelectOrGroupClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ShebangDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleBaseTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleLambdaExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SimpleNameSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SingleVariableDesignationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SizeOfExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SkippedTokensTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SlicePatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SpreadElementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.StackAllocArrayCreationExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.StructDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.StructuredTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SubpatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionArmSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchLabelSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchSectionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.SwitchStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ThisExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.ThrowStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TryStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TupleElementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TupleExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TupleTypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeArgumentListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeConstraintSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeCrefSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeOfExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterConstraintSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypePatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.UnaryPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.UndefDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.UnsafeStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.UsingDirectiveSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.UsingStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclarationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDeclaratorSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.VariableDesignationSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.VarPatternSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.WarningDirectiveTriviaSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.WhenClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.WhereClauseSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.WhileStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.WithExpressionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCDataSectionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCommentSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlCrefAttributeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementEndTagSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementStartTagSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlElementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlEmptyElementSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeElementKind +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameAttributeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNameSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlNodeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlPrefixSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlProcessingInstructionSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextAttributeSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.XmlTextSyntax +T:Microsoft.CodeAnalysis.CSharp.Syntax.YieldStatementSyntax +T:Microsoft.CodeAnalysis.CSharp.SyntaxExtensions +T:Microsoft.CodeAnalysis.CSharp.SyntaxFactory +T:Microsoft.CodeAnalysis.CSharp.SyntaxFacts +T:Microsoft.CodeAnalysis.CSharp.SyntaxKind +T:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser +T:Microsoft.CodeAnalysis.CSharp.SyntaxTokenParser.Result +T:Microsoft.CodeAnalysis.CSharp.TypedConstantExtensions +T:Microsoft.CodeAnalysis.CSharpExtensions \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/Microsoft.CodeAnalysis.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/Microsoft.CodeAnalysis.txt new file mode 100644 index 0000000000000..4cf6b5e5b832f --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/Microsoft.CodeAnalysis.txt @@ -0,0 +1,4333 @@ +F:Microsoft.CodeAnalysis.Accessibility.Friend +F:Microsoft.CodeAnalysis.Accessibility.Internal +F:Microsoft.CodeAnalysis.Accessibility.NotApplicable +F:Microsoft.CodeAnalysis.Accessibility.Private +F:Microsoft.CodeAnalysis.Accessibility.Protected +F:Microsoft.CodeAnalysis.Accessibility.ProtectedAndFriend +F:Microsoft.CodeAnalysis.Accessibility.ProtectedAndInternal +F:Microsoft.CodeAnalysis.Accessibility.ProtectedOrFriend +F:Microsoft.CodeAnalysis.Accessibility.ProtectedOrInternal +F:Microsoft.CodeAnalysis.Accessibility.Public +F:Microsoft.CodeAnalysis.Accessibility.value__ +F:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ComparisonResult.Equivalent +F:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ComparisonResult.EquivalentIgnoringVersion +F:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ComparisonResult.NotEquivalent +F:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ComparisonResult.value__ +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.ContentType +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.Culture +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.Name +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.PublicKey +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.PublicKeyOrToken +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.PublicKeyToken +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.Retargetability +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.Unknown +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.value__ +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.Version +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.VersionBuild +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.VersionMajor +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.VersionMinor +F:Microsoft.CodeAnalysis.AssemblyIdentityParts.VersionRevision +F:Microsoft.CodeAnalysis.CandidateReason.Ambiguous +F:Microsoft.CodeAnalysis.CandidateReason.Inaccessible +F:Microsoft.CodeAnalysis.CandidateReason.LateBound +F:Microsoft.CodeAnalysis.CandidateReason.MemberGroup +F:Microsoft.CodeAnalysis.CandidateReason.None +F:Microsoft.CodeAnalysis.CandidateReason.NotAnAttributeType +F:Microsoft.CodeAnalysis.CandidateReason.NotAnEvent +F:Microsoft.CodeAnalysis.CandidateReason.NotATypeOrNamespace +F:Microsoft.CodeAnalysis.CandidateReason.NotAValue +F:Microsoft.CodeAnalysis.CandidateReason.NotAVariable +F:Microsoft.CodeAnalysis.CandidateReason.NotAWithEventsMember +F:Microsoft.CodeAnalysis.CandidateReason.NotCreatable +F:Microsoft.CodeAnalysis.CandidateReason.NotInvocable +F:Microsoft.CodeAnalysis.CandidateReason.NotReferencable +F:Microsoft.CodeAnalysis.CandidateReason.OverloadResolutionFailure +F:Microsoft.CodeAnalysis.CandidateReason.StaticInstanceMismatch +F:Microsoft.CodeAnalysis.CandidateReason.value__ +F:Microsoft.CodeAnalysis.CandidateReason.WrongArity +F:Microsoft.CodeAnalysis.Compilation._features +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.NoAnalyzers +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.None +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.ReferencesFramework +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.ReferencesNewerCompiler +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.UnableToCreateAnalyzer +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.UnableToLoadAnalyzer +F:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode.value__ +F:Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags.Analyze +F:Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags.None +F:Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags.ReportDiagnostics +F:Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags.value__ +F:Microsoft.CodeAnalysis.DiagnosticSeverity.Error +F:Microsoft.CodeAnalysis.DiagnosticSeverity.Hidden +F:Microsoft.CodeAnalysis.DiagnosticSeverity.Info +F:Microsoft.CodeAnalysis.DiagnosticSeverity.value__ +F:Microsoft.CodeAnalysis.DiagnosticSeverity.Warning +F:Microsoft.CodeAnalysis.DocumentationMode.Diagnose +F:Microsoft.CodeAnalysis.DocumentationMode.None +F:Microsoft.CodeAnalysis.DocumentationMode.Parse +F:Microsoft.CodeAnalysis.DocumentationMode.value__ +F:Microsoft.CodeAnalysis.Emit.DebugInformationFormat.Embedded +F:Microsoft.CodeAnalysis.Emit.DebugInformationFormat.Pdb +F:Microsoft.CodeAnalysis.Emit.DebugInformationFormat.PortablePdb +F:Microsoft.CodeAnalysis.Emit.DebugInformationFormat.value__ +F:Microsoft.CodeAnalysis.Emit.InstrumentationKind.ModuleCancellation +F:Microsoft.CodeAnalysis.Emit.InstrumentationKind.None +F:Microsoft.CodeAnalysis.Emit.InstrumentationKind.StackOverflowProbing +F:Microsoft.CodeAnalysis.Emit.InstrumentationKind.TestCoverage +F:Microsoft.CodeAnalysis.Emit.InstrumentationKind.value__ +F:Microsoft.CodeAnalysis.Emit.SemanticEditKind.Delete +F:Microsoft.CodeAnalysis.Emit.SemanticEditKind.Insert +F:Microsoft.CodeAnalysis.Emit.SemanticEditKind.None +F:Microsoft.CodeAnalysis.Emit.SemanticEditKind.Replace +F:Microsoft.CodeAnalysis.Emit.SemanticEditKind.Update +F:Microsoft.CodeAnalysis.Emit.SemanticEditKind.value__ +F:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlockKind.Block +F:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlockKind.Entry +F:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlockKind.Exit +F:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlockKind.value__ +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.Error +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.None +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.ProgramTermination +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.Regular +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.Rethrow +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.Return +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.StructuredExceptionHandling +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.Throw +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics.value__ +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowConditionKind.None +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowConditionKind.value__ +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowConditionKind.WhenFalse +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowConditionKind.WhenTrue +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.Catch +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.ErroneousBody +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.Filter +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.FilterAndHandler +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.Finally +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.LocalLifetime +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.Root +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.StaticLocalInitializer +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.Try +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.TryAndCatch +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.TryAndFinally +F:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind.value__ +F:Microsoft.CodeAnalysis.GeneratedKind.MarkedGenerated +F:Microsoft.CodeAnalysis.GeneratedKind.NotGenerated +F:Microsoft.CodeAnalysis.GeneratedKind.Unknown +F:Microsoft.CodeAnalysis.GeneratedKind.value__ +F:Microsoft.CodeAnalysis.GeneratorDriverOptions.DisabledOutputs +F:Microsoft.CodeAnalysis.GeneratorDriverOptions.TrackIncrementalGeneratorSteps +F:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind.Implementation +F:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind.None +F:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind.PostInit +F:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind.Source +F:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind.value__ +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.Cached +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.Modified +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.New +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.Removed +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.Unchanged +F:Microsoft.CodeAnalysis.IncrementalStepRunReason.value__ +F:Microsoft.CodeAnalysis.LanguageNames.CSharp +F:Microsoft.CodeAnalysis.LanguageNames.FSharp +F:Microsoft.CodeAnalysis.LanguageNames.VisualBasic +F:Microsoft.CodeAnalysis.LineVisibility.BeforeFirstLineDirective +F:Microsoft.CodeAnalysis.LineVisibility.Hidden +F:Microsoft.CodeAnalysis.LineVisibility.value__ +F:Microsoft.CodeAnalysis.LineVisibility.Visible +F:Microsoft.CodeAnalysis.LocationKind.ExternalFile +F:Microsoft.CodeAnalysis.LocationKind.MetadataFile +F:Microsoft.CodeAnalysis.LocationKind.None +F:Microsoft.CodeAnalysis.LocationKind.SourceFile +F:Microsoft.CodeAnalysis.LocationKind.value__ +F:Microsoft.CodeAnalysis.LocationKind.XmlFile +F:Microsoft.CodeAnalysis.MetadataImageKind.Assembly +F:Microsoft.CodeAnalysis.MetadataImageKind.Module +F:Microsoft.CodeAnalysis.MetadataImageKind.value__ +F:Microsoft.CodeAnalysis.MetadataImportOptions.All +F:Microsoft.CodeAnalysis.MetadataImportOptions.Internal +F:Microsoft.CodeAnalysis.MetadataImportOptions.Public +F:Microsoft.CodeAnalysis.MetadataImportOptions.value__ +F:Microsoft.CodeAnalysis.MethodKind.AnonymousFunction +F:Microsoft.CodeAnalysis.MethodKind.BuiltinOperator +F:Microsoft.CodeAnalysis.MethodKind.Constructor +F:Microsoft.CodeAnalysis.MethodKind.Conversion +F:Microsoft.CodeAnalysis.MethodKind.DeclareMethod +F:Microsoft.CodeAnalysis.MethodKind.DelegateInvoke +F:Microsoft.CodeAnalysis.MethodKind.Destructor +F:Microsoft.CodeAnalysis.MethodKind.EventAdd +F:Microsoft.CodeAnalysis.MethodKind.EventRaise +F:Microsoft.CodeAnalysis.MethodKind.EventRemove +F:Microsoft.CodeAnalysis.MethodKind.ExplicitInterfaceImplementation +F:Microsoft.CodeAnalysis.MethodKind.FunctionPointerSignature +F:Microsoft.CodeAnalysis.MethodKind.LambdaMethod +F:Microsoft.CodeAnalysis.MethodKind.LocalFunction +F:Microsoft.CodeAnalysis.MethodKind.Ordinary +F:Microsoft.CodeAnalysis.MethodKind.PropertyGet +F:Microsoft.CodeAnalysis.MethodKind.PropertySet +F:Microsoft.CodeAnalysis.MethodKind.ReducedExtension +F:Microsoft.CodeAnalysis.MethodKind.SharedConstructor +F:Microsoft.CodeAnalysis.MethodKind.StaticConstructor +F:Microsoft.CodeAnalysis.MethodKind.UserDefinedOperator +F:Microsoft.CodeAnalysis.MethodKind.value__ +F:Microsoft.CodeAnalysis.NamespaceKind.Assembly +F:Microsoft.CodeAnalysis.NamespaceKind.Compilation +F:Microsoft.CodeAnalysis.NamespaceKind.Module +F:Microsoft.CodeAnalysis.NamespaceKind.value__ +F:Microsoft.CodeAnalysis.NullableAnnotation.Annotated +F:Microsoft.CodeAnalysis.NullableAnnotation.None +F:Microsoft.CodeAnalysis.NullableAnnotation.NotAnnotated +F:Microsoft.CodeAnalysis.NullableAnnotation.value__ +F:Microsoft.CodeAnalysis.NullableContext.AnnotationsContextInherited +F:Microsoft.CodeAnalysis.NullableContext.AnnotationsEnabled +F:Microsoft.CodeAnalysis.NullableContext.ContextInherited +F:Microsoft.CodeAnalysis.NullableContext.Disabled +F:Microsoft.CodeAnalysis.NullableContext.Enabled +F:Microsoft.CodeAnalysis.NullableContext.value__ +F:Microsoft.CodeAnalysis.NullableContext.WarningsContextInherited +F:Microsoft.CodeAnalysis.NullableContext.WarningsEnabled +F:Microsoft.CodeAnalysis.NullableContextOptions.Annotations +F:Microsoft.CodeAnalysis.NullableContextOptions.Disable +F:Microsoft.CodeAnalysis.NullableContextOptions.Enable +F:Microsoft.CodeAnalysis.NullableContextOptions.value__ +F:Microsoft.CodeAnalysis.NullableContextOptions.Warnings +F:Microsoft.CodeAnalysis.NullableFlowState.MaybeNull +F:Microsoft.CodeAnalysis.NullableFlowState.None +F:Microsoft.CodeAnalysis.NullableFlowState.NotNull +F:Microsoft.CodeAnalysis.NullableFlowState.value__ +F:Microsoft.CodeAnalysis.OperationKind.AddressOf +F:Microsoft.CodeAnalysis.OperationKind.AnonymousFunction +F:Microsoft.CodeAnalysis.OperationKind.AnonymousObjectCreation +F:Microsoft.CodeAnalysis.OperationKind.Argument +F:Microsoft.CodeAnalysis.OperationKind.ArrayCreation +F:Microsoft.CodeAnalysis.OperationKind.ArrayElementReference +F:Microsoft.CodeAnalysis.OperationKind.ArrayInitializer +F:Microsoft.CodeAnalysis.OperationKind.Attribute +F:Microsoft.CodeAnalysis.OperationKind.Await +F:Microsoft.CodeAnalysis.OperationKind.Binary +F:Microsoft.CodeAnalysis.OperationKind.BinaryOperator +F:Microsoft.CodeAnalysis.OperationKind.BinaryPattern +F:Microsoft.CodeAnalysis.OperationKind.Block +F:Microsoft.CodeAnalysis.OperationKind.Branch +F:Microsoft.CodeAnalysis.OperationKind.CaseClause +F:Microsoft.CodeAnalysis.OperationKind.CatchClause +F:Microsoft.CodeAnalysis.OperationKind.CaughtException +F:Microsoft.CodeAnalysis.OperationKind.Coalesce +F:Microsoft.CodeAnalysis.OperationKind.CoalesceAssignment +F:Microsoft.CodeAnalysis.OperationKind.CollectionElementInitializer +F:Microsoft.CodeAnalysis.OperationKind.CollectionExpression +F:Microsoft.CodeAnalysis.OperationKind.CompoundAssignment +F:Microsoft.CodeAnalysis.OperationKind.Conditional +F:Microsoft.CodeAnalysis.OperationKind.ConditionalAccess +F:Microsoft.CodeAnalysis.OperationKind.ConditionalAccessInstance +F:Microsoft.CodeAnalysis.OperationKind.ConstantPattern +F:Microsoft.CodeAnalysis.OperationKind.ConstructorBody +F:Microsoft.CodeAnalysis.OperationKind.ConstructorBodyOperation +F:Microsoft.CodeAnalysis.OperationKind.Conversion +F:Microsoft.CodeAnalysis.OperationKind.DeclarationExpression +F:Microsoft.CodeAnalysis.OperationKind.DeclarationPattern +F:Microsoft.CodeAnalysis.OperationKind.DeconstructionAssignment +F:Microsoft.CodeAnalysis.OperationKind.Decrement +F:Microsoft.CodeAnalysis.OperationKind.DefaultValue +F:Microsoft.CodeAnalysis.OperationKind.DelegateCreation +F:Microsoft.CodeAnalysis.OperationKind.Discard +F:Microsoft.CodeAnalysis.OperationKind.DiscardPattern +F:Microsoft.CodeAnalysis.OperationKind.DynamicIndexerAccess +F:Microsoft.CodeAnalysis.OperationKind.DynamicInvocation +F:Microsoft.CodeAnalysis.OperationKind.DynamicMemberReference +F:Microsoft.CodeAnalysis.OperationKind.DynamicObjectCreation +F:Microsoft.CodeAnalysis.OperationKind.Empty +F:Microsoft.CodeAnalysis.OperationKind.End +F:Microsoft.CodeAnalysis.OperationKind.EventAssignment +F:Microsoft.CodeAnalysis.OperationKind.EventReference +F:Microsoft.CodeAnalysis.OperationKind.ExpressionStatement +F:Microsoft.CodeAnalysis.OperationKind.FieldInitializer +F:Microsoft.CodeAnalysis.OperationKind.FieldReference +F:Microsoft.CodeAnalysis.OperationKind.FlowAnonymousFunction +F:Microsoft.CodeAnalysis.OperationKind.FlowCapture +F:Microsoft.CodeAnalysis.OperationKind.FlowCaptureReference +F:Microsoft.CodeAnalysis.OperationKind.FunctionPointerInvocation +F:Microsoft.CodeAnalysis.OperationKind.ImplicitIndexerReference +F:Microsoft.CodeAnalysis.OperationKind.Increment +F:Microsoft.CodeAnalysis.OperationKind.InlineArrayAccess +F:Microsoft.CodeAnalysis.OperationKind.InstanceReference +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedString +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringAddition +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringAppendFormatted +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringAppendInvalid +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringAppendLiteral +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringHandlerArgumentPlaceholder +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringHandlerCreation +F:Microsoft.CodeAnalysis.OperationKind.InterpolatedStringText +F:Microsoft.CodeAnalysis.OperationKind.Interpolation +F:Microsoft.CodeAnalysis.OperationKind.Invalid +F:Microsoft.CodeAnalysis.OperationKind.Invocation +F:Microsoft.CodeAnalysis.OperationKind.IsNull +F:Microsoft.CodeAnalysis.OperationKind.IsPattern +F:Microsoft.CodeAnalysis.OperationKind.IsType +F:Microsoft.CodeAnalysis.OperationKind.Labeled +F:Microsoft.CodeAnalysis.OperationKind.ListPattern +F:Microsoft.CodeAnalysis.OperationKind.Literal +F:Microsoft.CodeAnalysis.OperationKind.LocalFunction +F:Microsoft.CodeAnalysis.OperationKind.LocalReference +F:Microsoft.CodeAnalysis.OperationKind.Lock +F:Microsoft.CodeAnalysis.OperationKind.Loop +F:Microsoft.CodeAnalysis.OperationKind.MemberInitializer +F:Microsoft.CodeAnalysis.OperationKind.MethodBody +F:Microsoft.CodeAnalysis.OperationKind.MethodBodyOperation +F:Microsoft.CodeAnalysis.OperationKind.MethodReference +F:Microsoft.CodeAnalysis.OperationKind.NameOf +F:Microsoft.CodeAnalysis.OperationKind.NegatedPattern +F:Microsoft.CodeAnalysis.OperationKind.None +F:Microsoft.CodeAnalysis.OperationKind.ObjectCreation +F:Microsoft.CodeAnalysis.OperationKind.ObjectOrCollectionInitializer +F:Microsoft.CodeAnalysis.OperationKind.OmittedArgument +F:Microsoft.CodeAnalysis.OperationKind.ParameterInitializer +F:Microsoft.CodeAnalysis.OperationKind.ParameterReference +F:Microsoft.CodeAnalysis.OperationKind.Parenthesized +F:Microsoft.CodeAnalysis.OperationKind.PropertyInitializer +F:Microsoft.CodeAnalysis.OperationKind.PropertyReference +F:Microsoft.CodeAnalysis.OperationKind.PropertySubpattern +F:Microsoft.CodeAnalysis.OperationKind.RaiseEvent +F:Microsoft.CodeAnalysis.OperationKind.Range +F:Microsoft.CodeAnalysis.OperationKind.RecursivePattern +F:Microsoft.CodeAnalysis.OperationKind.ReDim +F:Microsoft.CodeAnalysis.OperationKind.ReDimClause +F:Microsoft.CodeAnalysis.OperationKind.RelationalPattern +F:Microsoft.CodeAnalysis.OperationKind.Return +F:Microsoft.CodeAnalysis.OperationKind.SimpleAssignment +F:Microsoft.CodeAnalysis.OperationKind.SizeOf +F:Microsoft.CodeAnalysis.OperationKind.SlicePattern +F:Microsoft.CodeAnalysis.OperationKind.Spread +F:Microsoft.CodeAnalysis.OperationKind.StaticLocalInitializationSemaphore +F:Microsoft.CodeAnalysis.OperationKind.Stop +F:Microsoft.CodeAnalysis.OperationKind.Switch +F:Microsoft.CodeAnalysis.OperationKind.SwitchCase +F:Microsoft.CodeAnalysis.OperationKind.SwitchExpression +F:Microsoft.CodeAnalysis.OperationKind.SwitchExpressionArm +F:Microsoft.CodeAnalysis.OperationKind.Throw +F:Microsoft.CodeAnalysis.OperationKind.TranslatedQuery +F:Microsoft.CodeAnalysis.OperationKind.Try +F:Microsoft.CodeAnalysis.OperationKind.Tuple +F:Microsoft.CodeAnalysis.OperationKind.TupleBinary +F:Microsoft.CodeAnalysis.OperationKind.TupleBinaryOperator +F:Microsoft.CodeAnalysis.OperationKind.TypeOf +F:Microsoft.CodeAnalysis.OperationKind.TypeParameterObjectCreation +F:Microsoft.CodeAnalysis.OperationKind.TypePattern +F:Microsoft.CodeAnalysis.OperationKind.Unary +F:Microsoft.CodeAnalysis.OperationKind.UnaryOperator +F:Microsoft.CodeAnalysis.OperationKind.Using +F:Microsoft.CodeAnalysis.OperationKind.UsingDeclaration +F:Microsoft.CodeAnalysis.OperationKind.Utf8String +F:Microsoft.CodeAnalysis.OperationKind.value__ +F:Microsoft.CodeAnalysis.OperationKind.VariableDeclaration +F:Microsoft.CodeAnalysis.OperationKind.VariableDeclarationGroup +F:Microsoft.CodeAnalysis.OperationKind.VariableDeclarator +F:Microsoft.CodeAnalysis.OperationKind.VariableInitializer +F:Microsoft.CodeAnalysis.OperationKind.With +F:Microsoft.CodeAnalysis.OperationKind.YieldBreak +F:Microsoft.CodeAnalysis.OperationKind.YieldReturn +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.DefaultValue +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.Explicit +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.None +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.ParamArray +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.ParamCollection +F:Microsoft.CodeAnalysis.Operations.ArgumentKind.value__ +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Add +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.And +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Concatenate +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.ConditionalAnd +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.ConditionalOr +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Divide +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Equals +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.ExclusiveOr +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.GreaterThan +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.GreaterThanOrEqual +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.IntegerDivide +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.LeftShift +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.LessThan +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.LessThanOrEqual +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Like +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Multiply +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.None +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.NotEquals +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.ObjectValueEquals +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.ObjectValueNotEquals +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Or +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Power +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Remainder +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.RightShift +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.Subtract +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.UnsignedRightShift +F:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind.value__ +F:Microsoft.CodeAnalysis.Operations.BranchKind.Break +F:Microsoft.CodeAnalysis.Operations.BranchKind.Continue +F:Microsoft.CodeAnalysis.Operations.BranchKind.GoTo +F:Microsoft.CodeAnalysis.Operations.BranchKind.None +F:Microsoft.CodeAnalysis.Operations.BranchKind.value__ +F:Microsoft.CodeAnalysis.Operations.CaseKind.Default +F:Microsoft.CodeAnalysis.Operations.CaseKind.None +F:Microsoft.CodeAnalysis.Operations.CaseKind.Pattern +F:Microsoft.CodeAnalysis.Operations.CaseKind.Range +F:Microsoft.CodeAnalysis.Operations.CaseKind.Relational +F:Microsoft.CodeAnalysis.Operations.CaseKind.SingleValue +F:Microsoft.CodeAnalysis.Operations.CaseKind.value__ +F:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind.ContainingTypeInstance +F:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind.ImplicitReceiver +F:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind.InterpolatedStringHandler +F:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind.PatternInput +F:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind.value__ +F:Microsoft.CodeAnalysis.Operations.InterpolatedStringArgumentPlaceholderKind.CallsiteArgument +F:Microsoft.CodeAnalysis.Operations.InterpolatedStringArgumentPlaceholderKind.CallsiteReceiver +F:Microsoft.CodeAnalysis.Operations.InterpolatedStringArgumentPlaceholderKind.TrailingValidityArgument +F:Microsoft.CodeAnalysis.Operations.InterpolatedStringArgumentPlaceholderKind.value__ +F:Microsoft.CodeAnalysis.Operations.LoopKind.For +F:Microsoft.CodeAnalysis.Operations.LoopKind.ForEach +F:Microsoft.CodeAnalysis.Operations.LoopKind.ForTo +F:Microsoft.CodeAnalysis.Operations.LoopKind.None +F:Microsoft.CodeAnalysis.Operations.LoopKind.value__ +F:Microsoft.CodeAnalysis.Operations.LoopKind.While +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.BitwiseNegation +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.False +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.Hat +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.Minus +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.None +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.Not +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.Plus +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.True +F:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind.value__ +F:Microsoft.CodeAnalysis.OptimizationLevel.Debug +F:Microsoft.CodeAnalysis.OptimizationLevel.Release +F:Microsoft.CodeAnalysis.OptimizationLevel.value__ +F:Microsoft.CodeAnalysis.OutputKind.ConsoleApplication +F:Microsoft.CodeAnalysis.OutputKind.DynamicallyLinkedLibrary +F:Microsoft.CodeAnalysis.OutputKind.NetModule +F:Microsoft.CodeAnalysis.OutputKind.value__ +F:Microsoft.CodeAnalysis.OutputKind.WindowsApplication +F:Microsoft.CodeAnalysis.OutputKind.WindowsRuntimeApplication +F:Microsoft.CodeAnalysis.OutputKind.WindowsRuntimeMetadata +F:Microsoft.CodeAnalysis.Platform.AnyCpu +F:Microsoft.CodeAnalysis.Platform.AnyCpu32BitPreferred +F:Microsoft.CodeAnalysis.Platform.Arm +F:Microsoft.CodeAnalysis.Platform.Arm64 +F:Microsoft.CodeAnalysis.Platform.Itanium +F:Microsoft.CodeAnalysis.Platform.value__ +F:Microsoft.CodeAnalysis.Platform.X64 +F:Microsoft.CodeAnalysis.Platform.X86 +F:Microsoft.CodeAnalysis.RefKind.In +F:Microsoft.CodeAnalysis.RefKind.None +F:Microsoft.CodeAnalysis.RefKind.Out +F:Microsoft.CodeAnalysis.RefKind.Ref +F:Microsoft.CodeAnalysis.RefKind.RefReadOnly +F:Microsoft.CodeAnalysis.RefKind.RefReadOnlyParameter +F:Microsoft.CodeAnalysis.RefKind.value__ +F:Microsoft.CodeAnalysis.ReportDiagnostic.Default +F:Microsoft.CodeAnalysis.ReportDiagnostic.Error +F:Microsoft.CodeAnalysis.ReportDiagnostic.Hidden +F:Microsoft.CodeAnalysis.ReportDiagnostic.Info +F:Microsoft.CodeAnalysis.ReportDiagnostic.Suppress +F:Microsoft.CodeAnalysis.ReportDiagnostic.value__ +F:Microsoft.CodeAnalysis.ReportDiagnostic.Warn +F:Microsoft.CodeAnalysis.RuntimeCapability.ByRefFields +F:Microsoft.CodeAnalysis.RuntimeCapability.ByRefLikeGenerics +F:Microsoft.CodeAnalysis.RuntimeCapability.CovariantReturnsOfClasses +F:Microsoft.CodeAnalysis.RuntimeCapability.DefaultImplementationsOfInterfaces +F:Microsoft.CodeAnalysis.RuntimeCapability.InlineArrayTypes +F:Microsoft.CodeAnalysis.RuntimeCapability.NumericIntPtr +F:Microsoft.CodeAnalysis.RuntimeCapability.UnmanagedSignatureCallingConvention +F:Microsoft.CodeAnalysis.RuntimeCapability.value__ +F:Microsoft.CodeAnalysis.RuntimeCapability.VirtualStaticsInInterfaces +F:Microsoft.CodeAnalysis.SarifVersion.Default +F:Microsoft.CodeAnalysis.SarifVersion.Latest +F:Microsoft.CodeAnalysis.SarifVersion.Sarif1 +F:Microsoft.CodeAnalysis.SarifVersion.Sarif2 +F:Microsoft.CodeAnalysis.SarifVersion.value__ +F:Microsoft.CodeAnalysis.ScopedKind.None +F:Microsoft.CodeAnalysis.ScopedKind.ScopedRef +F:Microsoft.CodeAnalysis.ScopedKind.ScopedValue +F:Microsoft.CodeAnalysis.ScopedKind.value__ +F:Microsoft.CodeAnalysis.SemanticModelOptions.DisableNullableAnalysis +F:Microsoft.CodeAnalysis.SemanticModelOptions.IgnoreAccessibility +F:Microsoft.CodeAnalysis.SemanticModelOptions.None +F:Microsoft.CodeAnalysis.SemanticModelOptions.value__ +F:Microsoft.CodeAnalysis.SourceCodeKind.Interactive +F:Microsoft.CodeAnalysis.SourceCodeKind.Regular +F:Microsoft.CodeAnalysis.SourceCodeKind.Script +F:Microsoft.CodeAnalysis.SourceCodeKind.value__ +F:Microsoft.CodeAnalysis.SpecialType.Count +F:Microsoft.CodeAnalysis.SpecialType.None +F:Microsoft.CodeAnalysis.SpecialType.System_ArgIterator +F:Microsoft.CodeAnalysis.SpecialType.System_Array +F:Microsoft.CodeAnalysis.SpecialType.System_AsyncCallback +F:Microsoft.CodeAnalysis.SpecialType.System_Boolean +F:Microsoft.CodeAnalysis.SpecialType.System_Byte +F:Microsoft.CodeAnalysis.SpecialType.System_Char +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_ICollection_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_IEnumerable_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_IEnumerator_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_IList_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_IReadOnlyCollection_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_Generic_IReadOnlyList_T +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_IEnumerable +F:Microsoft.CodeAnalysis.SpecialType.System_Collections_IEnumerator +F:Microsoft.CodeAnalysis.SpecialType.System_DateTime +F:Microsoft.CodeAnalysis.SpecialType.System_Decimal +F:Microsoft.CodeAnalysis.SpecialType.System_Delegate +F:Microsoft.CodeAnalysis.SpecialType.System_Double +F:Microsoft.CodeAnalysis.SpecialType.System_Enum +F:Microsoft.CodeAnalysis.SpecialType.System_IAsyncResult +F:Microsoft.CodeAnalysis.SpecialType.System_IDisposable +F:Microsoft.CodeAnalysis.SpecialType.System_Int16 +F:Microsoft.CodeAnalysis.SpecialType.System_Int32 +F:Microsoft.CodeAnalysis.SpecialType.System_Int64 +F:Microsoft.CodeAnalysis.SpecialType.System_IntPtr +F:Microsoft.CodeAnalysis.SpecialType.System_MulticastDelegate +F:Microsoft.CodeAnalysis.SpecialType.System_Nullable_T +F:Microsoft.CodeAnalysis.SpecialType.System_Object +F:Microsoft.CodeAnalysis.SpecialType.System_Runtime_CompilerServices_InlineArrayAttribute +F:Microsoft.CodeAnalysis.SpecialType.System_Runtime_CompilerServices_IsVolatile +F:Microsoft.CodeAnalysis.SpecialType.System_Runtime_CompilerServices_PreserveBaseOverridesAttribute +F:Microsoft.CodeAnalysis.SpecialType.System_Runtime_CompilerServices_RuntimeFeature +F:Microsoft.CodeAnalysis.SpecialType.System_RuntimeArgumentHandle +F:Microsoft.CodeAnalysis.SpecialType.System_RuntimeFieldHandle +F:Microsoft.CodeAnalysis.SpecialType.System_RuntimeMethodHandle +F:Microsoft.CodeAnalysis.SpecialType.System_RuntimeTypeHandle +F:Microsoft.CodeAnalysis.SpecialType.System_SByte +F:Microsoft.CodeAnalysis.SpecialType.System_Single +F:Microsoft.CodeAnalysis.SpecialType.System_String +F:Microsoft.CodeAnalysis.SpecialType.System_TypedReference +F:Microsoft.CodeAnalysis.SpecialType.System_UInt16 +F:Microsoft.CodeAnalysis.SpecialType.System_UInt32 +F:Microsoft.CodeAnalysis.SpecialType.System_UInt64 +F:Microsoft.CodeAnalysis.SpecialType.System_UIntPtr +F:Microsoft.CodeAnalysis.SpecialType.System_ValueType +F:Microsoft.CodeAnalysis.SpecialType.System_Void +F:Microsoft.CodeAnalysis.SpecialType.value__ +F:Microsoft.CodeAnalysis.SpeculativeBindingOption.BindAsExpression +F:Microsoft.CodeAnalysis.SpeculativeBindingOption.BindAsTypeOrNamespace +F:Microsoft.CodeAnalysis.SpeculativeBindingOption.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle.NameAndParameters +F:Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle.NameAndSignature +F:Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle.NameOnly +F:Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle.Default +F:Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle.InstanceMethod +F:Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle.StaticMethod +F:Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions.IncludeTypeConstraints +F:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions.IncludeTypeParameters +F:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions.IncludeVariance +F:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle.Included +F:Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle.Omitted +F:Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle.OmittedAsContaining +F:Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayKindOptions.IncludeMemberKeyword +F:Microsoft.CodeAnalysis.SymbolDisplayKindOptions.IncludeNamespaceKeyword +F:Microsoft.CodeAnalysis.SymbolDisplayKindOptions.IncludeTypeKeyword +F:Microsoft.CodeAnalysis.SymbolDisplayKindOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayKindOptions.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.IncludeConstantValue +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.IncludeModifiers +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.IncludeRef +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.IncludeType +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeAccessibility +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeConstantValue +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeContainingType +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeExplicitInterface +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeModifiers +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeParameters +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeRef +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.IncludeType +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.CollapseTupleTypes +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.ExpandNullable +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.ExpandValueTuple +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.UseAsterisksInMultiDimensionalArrays +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.UseSpecialTypes +F:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeDefaultValue +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeExtensionThis +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeModifiers +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeName +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeOptionalBrackets +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeParamsRefOut +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.IncludeType +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.None +F:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.AliasName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.AnonymousTypeIndicator +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.AssemblyName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ClassName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ConstantName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.DelegateName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.EnumMemberName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.EnumName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ErrorTypeName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.EventName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ExtensionMethodName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.FieldName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.InterfaceName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.Keyword +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.LabelName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.LineBreak +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.LocalName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.MethodName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ModuleName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.NamespaceName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.NumericLiteral +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.Operator +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.ParameterName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.PropertyName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.Punctuation +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.RangeVariableName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.RecordClassName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.RecordStructName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.Space +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.StringLiteral +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.StructName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.Text +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.TypeParameterName +F:Microsoft.CodeAnalysis.SymbolDisplayPartKind.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayPropertyStyle.NameOnly +F:Microsoft.CodeAnalysis.SymbolDisplayPropertyStyle.ShowReadWriteDescriptor +F:Microsoft.CodeAnalysis.SymbolDisplayPropertyStyle.value__ +F:Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle.NameAndContainingTypes +F:Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle.NameAndContainingTypesAndNamespaces +F:Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle.NameOnly +F:Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle.value__ +F:Microsoft.CodeAnalysis.SymbolEqualityComparer.Default +F:Microsoft.CodeAnalysis.SymbolEqualityComparer.IncludeNullability +F:Microsoft.CodeAnalysis.SymbolFilter.All +F:Microsoft.CodeAnalysis.SymbolFilter.Member +F:Microsoft.CodeAnalysis.SymbolFilter.Namespace +F:Microsoft.CodeAnalysis.SymbolFilter.None +F:Microsoft.CodeAnalysis.SymbolFilter.Type +F:Microsoft.CodeAnalysis.SymbolFilter.TypeAndMember +F:Microsoft.CodeAnalysis.SymbolFilter.value__ +F:Microsoft.CodeAnalysis.SymbolKind.Alias +F:Microsoft.CodeAnalysis.SymbolKind.ArrayType +F:Microsoft.CodeAnalysis.SymbolKind.Assembly +F:Microsoft.CodeAnalysis.SymbolKind.Discard +F:Microsoft.CodeAnalysis.SymbolKind.DynamicType +F:Microsoft.CodeAnalysis.SymbolKind.ErrorType +F:Microsoft.CodeAnalysis.SymbolKind.Event +F:Microsoft.CodeAnalysis.SymbolKind.Field +F:Microsoft.CodeAnalysis.SymbolKind.FunctionPointerType +F:Microsoft.CodeAnalysis.SymbolKind.Label +F:Microsoft.CodeAnalysis.SymbolKind.Local +F:Microsoft.CodeAnalysis.SymbolKind.Method +F:Microsoft.CodeAnalysis.SymbolKind.NamedType +F:Microsoft.CodeAnalysis.SymbolKind.Namespace +F:Microsoft.CodeAnalysis.SymbolKind.NetModule +F:Microsoft.CodeAnalysis.SymbolKind.Parameter +F:Microsoft.CodeAnalysis.SymbolKind.PointerType +F:Microsoft.CodeAnalysis.SymbolKind.Preprocessing +F:Microsoft.CodeAnalysis.SymbolKind.Property +F:Microsoft.CodeAnalysis.SymbolKind.RangeVariable +F:Microsoft.CodeAnalysis.SymbolKind.TypeParameter +F:Microsoft.CodeAnalysis.SymbolKind.value__ +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.AddElasticMarker +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepDirectives +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepEndOfLine +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepExteriorTrivia +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepLeadingTrivia +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepNoTrivia +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepTrailingTrivia +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.KeepUnbalancedDirectives +F:Microsoft.CodeAnalysis.SyntaxRemoveOptions.value__ +F:Microsoft.CodeAnalysis.SyntaxTree.EmptyDiagnosticOptions +F:Microsoft.CodeAnalysis.SyntaxWalkerDepth.Node +F:Microsoft.CodeAnalysis.SyntaxWalkerDepth.StructuredTrivia +F:Microsoft.CodeAnalysis.SyntaxWalkerDepth.Token +F:Microsoft.CodeAnalysis.SyntaxWalkerDepth.Trivia +F:Microsoft.CodeAnalysis.SyntaxWalkerDepth.value__ +F:Microsoft.CodeAnalysis.Text.SourceHashAlgorithm.None +F:Microsoft.CodeAnalysis.Text.SourceHashAlgorithm.Sha1 +F:Microsoft.CodeAnalysis.Text.SourceHashAlgorithm.Sha256 +F:Microsoft.CodeAnalysis.Text.SourceHashAlgorithm.value__ +F:Microsoft.CodeAnalysis.TypedConstantKind.Array +F:Microsoft.CodeAnalysis.TypedConstantKind.Enum +F:Microsoft.CodeAnalysis.TypedConstantKind.Error +F:Microsoft.CodeAnalysis.TypedConstantKind.Primitive +F:Microsoft.CodeAnalysis.TypedConstantKind.Type +F:Microsoft.CodeAnalysis.TypedConstantKind.value__ +F:Microsoft.CodeAnalysis.TypeKind.Array +F:Microsoft.CodeAnalysis.TypeKind.Class +F:Microsoft.CodeAnalysis.TypeKind.Delegate +F:Microsoft.CodeAnalysis.TypeKind.Dynamic +F:Microsoft.CodeAnalysis.TypeKind.Enum +F:Microsoft.CodeAnalysis.TypeKind.Error +F:Microsoft.CodeAnalysis.TypeKind.FunctionPointer +F:Microsoft.CodeAnalysis.TypeKind.Interface +F:Microsoft.CodeAnalysis.TypeKind.Module +F:Microsoft.CodeAnalysis.TypeKind.Pointer +F:Microsoft.CodeAnalysis.TypeKind.Struct +F:Microsoft.CodeAnalysis.TypeKind.Structure +F:Microsoft.CodeAnalysis.TypeKind.Submission +F:Microsoft.CodeAnalysis.TypeKind.TypeParameter +F:Microsoft.CodeAnalysis.TypeKind.Unknown +F:Microsoft.CodeAnalysis.TypeKind.value__ +F:Microsoft.CodeAnalysis.TypeParameterKind.Cref +F:Microsoft.CodeAnalysis.TypeParameterKind.Method +F:Microsoft.CodeAnalysis.TypeParameterKind.Type +F:Microsoft.CodeAnalysis.TypeParameterKind.value__ +F:Microsoft.CodeAnalysis.VarianceKind.In +F:Microsoft.CodeAnalysis.VarianceKind.None +F:Microsoft.CodeAnalysis.VarianceKind.Out +F:Microsoft.CodeAnalysis.VarianceKind.value__ +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.AnalyzerException +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.Build +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.CompilationEnd +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.Compiler +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.CustomObsolete +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.CustomSeverityConfigurable +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.EditAndContinue +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.NotConfigurable +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.Telemetry +F:Microsoft.CodeAnalysis.WellKnownDiagnosticTags.Unnecessary +F:Microsoft.CodeAnalysis.WellKnownGeneratorInputs.AdditionalTexts +F:Microsoft.CodeAnalysis.WellKnownGeneratorInputs.AnalyzerConfigOptions +F:Microsoft.CodeAnalysis.WellKnownGeneratorInputs.Compilation +F:Microsoft.CodeAnalysis.WellKnownGeneratorInputs.MetadataReferences +F:Microsoft.CodeAnalysis.WellKnownGeneratorInputs.ParseOptions +F:Microsoft.CodeAnalysis.WellKnownGeneratorOutputs.ImplementationSourceOutput +F:Microsoft.CodeAnalysis.WellKnownGeneratorOutputs.SourceOutput +F:Microsoft.CodeAnalysis.WellKnownMemberNames.AdditionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.BitwiseAndOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.BitwiseOrOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedAdditionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedDecrementOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedDivisionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedExplicitConversionName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedIncrementOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedMultiplyOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedSubtractionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CheckedUnaryNegationOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CollectionInitializerAddMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ConcatenateOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CountPropertyName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.CurrentPropertyName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DeconstructMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DecrementOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DefaultScriptClassName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DelegateBeginInvokeName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DelegateEndInvokeName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DelegateInvokeName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DestructorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DisposeAsyncMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DisposeMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.DivisionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.EntryPointMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.EnumBackingFieldName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.EqualityOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ExclusiveOrOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ExplicitConversionName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ExponentOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.FalseOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GetAsyncEnumeratorMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GetAwaiter +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GetEnumeratorMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GetResult +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GreaterThanOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.GreaterThanOrEqualOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ImplicitConversionName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.IncrementOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.Indexer +F:Microsoft.CodeAnalysis.WellKnownMemberNames.InequalityOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.InstanceConstructorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.IntegerDivisionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.IsCompleted +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LeftShiftOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LengthPropertyName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LessThanOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LessThanOrEqualOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LikeOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LogicalAndOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LogicalNotOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.LogicalOrOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ModulusOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.MoveNextAsyncMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.MoveNextMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.MultiplyOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ObjectEquals +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ObjectGetHashCode +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ObjectToString +F:Microsoft.CodeAnalysis.WellKnownMemberNames.OnCompleted +F:Microsoft.CodeAnalysis.WellKnownMemberNames.OnesComplementOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.PrintMembersMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.RightShiftOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.SliceMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.StaticConstructorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.SubtractionOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.TopLevelStatementsEntryPointMethodName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.TopLevelStatementsEntryPointTypeName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.TrueOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.UnaryNegationOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.UnaryPlusOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.UnsignedLeftShiftOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.UnsignedRightShiftOperatorName +F:Microsoft.CodeAnalysis.WellKnownMemberNames.ValuePropertyName +M:Microsoft.CodeAnalysis.AdditionalText.#ctor +M:Microsoft.CodeAnalysis.AdditionalText.get_Path +M:Microsoft.CodeAnalysis.AdditionalText.GetText(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.AnalyzerConfig.Parse(Microsoft.CodeAnalysis.Text.SourceText,System.String) +M:Microsoft.CodeAnalysis.AnalyzerConfig.Parse(System.String,System.String) +M:Microsoft.CodeAnalysis.AnalyzerConfigOptionsResult.get_AnalyzerOptions +M:Microsoft.CodeAnalysis.AnalyzerConfigOptionsResult.get_Diagnostics +M:Microsoft.CodeAnalysis.AnalyzerConfigOptionsResult.get_TreeOptions +M:Microsoft.CodeAnalysis.AnalyzerConfigSet.Create``1(``0) +M:Microsoft.CodeAnalysis.AnalyzerConfigSet.Create``1(``0,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostic}@) +M:Microsoft.CodeAnalysis.AnalyzerConfigSet.get_GlobalConfigOptions +M:Microsoft.CodeAnalysis.AnalyzerConfigSet.GetOptionsForSourcePath(System.String) +M:Microsoft.CodeAnalysis.AnnotationExtensions.WithAdditionalAnnotations``1(``0,Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.AnnotationExtensions.WithAdditionalAnnotations``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.AnnotationExtensions.WithoutAnnotations``1(``0,Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.AnnotationExtensions.WithoutAnnotations``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.AnnotationExtensions.WithoutAnnotations``1(``0,System.String) +M:Microsoft.CodeAnalysis.AssemblyIdentity.#ctor(System.String,System.Version,System.String,System.Collections.Immutable.ImmutableArray{System.Byte},System.Boolean,System.Boolean,System.Reflection.AssemblyContentType) +M:Microsoft.CodeAnalysis.AssemblyIdentity.Equals(Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.AssemblyIdentity.Equals(System.Object) +M:Microsoft.CodeAnalysis.AssemblyIdentity.FromAssemblyDefinition(System.Reflection.Assembly) +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_ContentType +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_CultureName +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_Flags +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_HasPublicKey +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_IsRetargetable +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_IsStrongName +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_Name +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_PublicKey +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_PublicKeyToken +M:Microsoft.CodeAnalysis.AssemblyIdentity.get_Version +M:Microsoft.CodeAnalysis.AssemblyIdentity.GetDisplayName(System.Boolean) +M:Microsoft.CodeAnalysis.AssemblyIdentity.GetHashCode +M:Microsoft.CodeAnalysis.AssemblyIdentity.op_Equality(Microsoft.CodeAnalysis.AssemblyIdentity,Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.AssemblyIdentity.op_Inequality(Microsoft.CodeAnalysis.AssemblyIdentity,Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.AssemblyIdentity.ToString +M:Microsoft.CodeAnalysis.AssemblyIdentity.TryParseDisplayName(System.String,Microsoft.CodeAnalysis.AssemblyIdentity@) +M:Microsoft.CodeAnalysis.AssemblyIdentity.TryParseDisplayName(System.String,Microsoft.CodeAnalysis.AssemblyIdentity@,Microsoft.CodeAnalysis.AssemblyIdentityParts@) +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.Compare(Microsoft.CodeAnalysis.AssemblyIdentity,Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.get_CultureComparer +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.get_Default +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.get_SimpleNameComparer +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ReferenceMatchesDefinition(Microsoft.CodeAnalysis.AssemblyIdentity,Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ReferenceMatchesDefinition(System.String,Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.AssemblyMetadata.CommonCopy +M:Microsoft.CodeAnalysis.AssemblyMetadata.Create(Microsoft.CodeAnalysis.ModuleMetadata) +M:Microsoft.CodeAnalysis.AssemblyMetadata.Create(Microsoft.CodeAnalysis.ModuleMetadata[]) +M:Microsoft.CodeAnalysis.AssemblyMetadata.Create(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ModuleMetadata}) +M:Microsoft.CodeAnalysis.AssemblyMetadata.Create(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ModuleMetadata}) +M:Microsoft.CodeAnalysis.AssemblyMetadata.CreateFromFile(System.String) +M:Microsoft.CodeAnalysis.AssemblyMetadata.CreateFromImage(System.Collections.Generic.IEnumerable{System.Byte}) +M:Microsoft.CodeAnalysis.AssemblyMetadata.CreateFromImage(System.Collections.Immutable.ImmutableArray{System.Byte}) +M:Microsoft.CodeAnalysis.AssemblyMetadata.CreateFromStream(System.IO.Stream,System.Boolean) +M:Microsoft.CodeAnalysis.AssemblyMetadata.CreateFromStream(System.IO.Stream,System.Reflection.PortableExecutable.PEStreamOptions) +M:Microsoft.CodeAnalysis.AssemblyMetadata.Dispose +M:Microsoft.CodeAnalysis.AssemblyMetadata.get_Kind +M:Microsoft.CodeAnalysis.AssemblyMetadata.GetModules +M:Microsoft.CodeAnalysis.AssemblyMetadata.GetReference(Microsoft.CodeAnalysis.DocumentationProvider,System.Collections.Immutable.ImmutableArray{System.String},System.Boolean,System.String,System.String) +M:Microsoft.CodeAnalysis.AttributeData.#ctor +M:Microsoft.CodeAnalysis.AttributeData.get_ApplicationSyntaxReference +M:Microsoft.CodeAnalysis.AttributeData.get_AttributeClass +M:Microsoft.CodeAnalysis.AttributeData.get_AttributeConstructor +M:Microsoft.CodeAnalysis.AttributeData.get_CommonApplicationSyntaxReference +M:Microsoft.CodeAnalysis.AttributeData.get_CommonAttributeClass +M:Microsoft.CodeAnalysis.AttributeData.get_CommonAttributeConstructor +M:Microsoft.CodeAnalysis.AttributeData.get_CommonConstructorArguments +M:Microsoft.CodeAnalysis.AttributeData.get_CommonNamedArguments +M:Microsoft.CodeAnalysis.AttributeData.get_ConstructorArguments +M:Microsoft.CodeAnalysis.AttributeData.get_NamedArguments +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.Compare(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.Compare(System.String,System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.EndsWith(System.String,System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.Equals(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.Equals(System.String,System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.get_Comparer +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.GetHashCode(System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.StartsWith(System.String,System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.ToLower(System.Char) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.ToLower(System.String) +M:Microsoft.CodeAnalysis.CaseInsensitiveComparison.ToLower(System.Text.StringBuilder) +M:Microsoft.CodeAnalysis.ChildSyntaxList.Any +M:Microsoft.CodeAnalysis.ChildSyntaxList.Enumerator.get_Current +M:Microsoft.CodeAnalysis.ChildSyntaxList.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.ChildSyntaxList.Enumerator.Reset +M:Microsoft.CodeAnalysis.ChildSyntaxList.Equals(Microsoft.CodeAnalysis.ChildSyntaxList) +M:Microsoft.CodeAnalysis.ChildSyntaxList.Equals(System.Object) +M:Microsoft.CodeAnalysis.ChildSyntaxList.First +M:Microsoft.CodeAnalysis.ChildSyntaxList.get_Count +M:Microsoft.CodeAnalysis.ChildSyntaxList.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.ChildSyntaxList.GetEnumerator +M:Microsoft.CodeAnalysis.ChildSyntaxList.GetHashCode +M:Microsoft.CodeAnalysis.ChildSyntaxList.Last +M:Microsoft.CodeAnalysis.ChildSyntaxList.op_Equality(Microsoft.CodeAnalysis.ChildSyntaxList,Microsoft.CodeAnalysis.ChildSyntaxList) +M:Microsoft.CodeAnalysis.ChildSyntaxList.op_Inequality(Microsoft.CodeAnalysis.ChildSyntaxList,Microsoft.CodeAnalysis.ChildSyntaxList) +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reverse +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Enumerator.get_Current +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Enumerator.Reset +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Equals(Microsoft.CodeAnalysis.ChildSyntaxList.Reversed) +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Equals(System.Object) +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.GetEnumerator +M:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.GetHashCode +M:Microsoft.CodeAnalysis.CommandLineAnalyzerReference.#ctor(System.String) +M:Microsoft.CodeAnalysis.CommandLineAnalyzerReference.Equals(Microsoft.CodeAnalysis.CommandLineAnalyzerReference) +M:Microsoft.CodeAnalysis.CommandLineAnalyzerReference.Equals(System.Object) +M:Microsoft.CodeAnalysis.CommandLineAnalyzerReference.get_FilePath +M:Microsoft.CodeAnalysis.CommandLineAnalyzerReference.GetHashCode +M:Microsoft.CodeAnalysis.CommandLineArguments.get_AdditionalFiles +M:Microsoft.CodeAnalysis.CommandLineArguments.get_AnalyzerConfigPaths +M:Microsoft.CodeAnalysis.CommandLineArguments.get_AnalyzerReferences +M:Microsoft.CodeAnalysis.CommandLineArguments.get_AppConfigPath +M:Microsoft.CodeAnalysis.CommandLineArguments.get_BaseDirectory +M:Microsoft.CodeAnalysis.CommandLineArguments.get_ChecksumAlgorithm +M:Microsoft.CodeAnalysis.CommandLineArguments.get_CompilationName +M:Microsoft.CodeAnalysis.CommandLineArguments.get_CompilationOptions +M:Microsoft.CodeAnalysis.CommandLineArguments.get_CompilationOptionsCore +M:Microsoft.CodeAnalysis.CommandLineArguments.get_DisplayHelp +M:Microsoft.CodeAnalysis.CommandLineArguments.get_DisplayLangVersions +M:Microsoft.CodeAnalysis.CommandLineArguments.get_DisplayLogo +M:Microsoft.CodeAnalysis.CommandLineArguments.get_DisplayVersion +M:Microsoft.CodeAnalysis.CommandLineArguments.get_DocumentationPath +M:Microsoft.CodeAnalysis.CommandLineArguments.get_EmbeddedFiles +M:Microsoft.CodeAnalysis.CommandLineArguments.get_EmitOptions +M:Microsoft.CodeAnalysis.CommandLineArguments.get_EmitPdb +M:Microsoft.CodeAnalysis.CommandLineArguments.get_EmitPdbFile +M:Microsoft.CodeAnalysis.CommandLineArguments.get_Encoding +M:Microsoft.CodeAnalysis.CommandLineArguments.get_ErrorLogOptions +M:Microsoft.CodeAnalysis.CommandLineArguments.get_ErrorLogPath +M:Microsoft.CodeAnalysis.CommandLineArguments.get_Errors +M:Microsoft.CodeAnalysis.CommandLineArguments.get_GeneratedFilesOutputDirectory +M:Microsoft.CodeAnalysis.CommandLineArguments.get_InteractiveMode +M:Microsoft.CodeAnalysis.CommandLineArguments.get_KeyFileSearchPaths +M:Microsoft.CodeAnalysis.CommandLineArguments.get_ManifestResources +M:Microsoft.CodeAnalysis.CommandLineArguments.get_MetadataReferences +M:Microsoft.CodeAnalysis.CommandLineArguments.get_NoWin32Manifest +M:Microsoft.CodeAnalysis.CommandLineArguments.get_OutputDirectory +M:Microsoft.CodeAnalysis.CommandLineArguments.get_OutputFileName +M:Microsoft.CodeAnalysis.CommandLineArguments.get_OutputRefFilePath +M:Microsoft.CodeAnalysis.CommandLineArguments.get_ParseOptions +M:Microsoft.CodeAnalysis.CommandLineArguments.get_ParseOptionsCore +M:Microsoft.CodeAnalysis.CommandLineArguments.get_PathMap +M:Microsoft.CodeAnalysis.CommandLineArguments.get_PdbPath +M:Microsoft.CodeAnalysis.CommandLineArguments.get_PreferredUILang +M:Microsoft.CodeAnalysis.CommandLineArguments.get_PrintFullPaths +M:Microsoft.CodeAnalysis.CommandLineArguments.get_ReferencePaths +M:Microsoft.CodeAnalysis.CommandLineArguments.get_ReportAnalyzer +M:Microsoft.CodeAnalysis.CommandLineArguments.get_ReportInternalsVisibleToAttributes +M:Microsoft.CodeAnalysis.CommandLineArguments.get_RuleSetPath +M:Microsoft.CodeAnalysis.CommandLineArguments.get_ScriptArguments +M:Microsoft.CodeAnalysis.CommandLineArguments.get_SkipAnalyzers +M:Microsoft.CodeAnalysis.CommandLineArguments.get_SourceFiles +M:Microsoft.CodeAnalysis.CommandLineArguments.get_SourceLink +M:Microsoft.CodeAnalysis.CommandLineArguments.get_SourcePaths +M:Microsoft.CodeAnalysis.CommandLineArguments.get_TouchedFilesPath +M:Microsoft.CodeAnalysis.CommandLineArguments.get_Utf8Output +M:Microsoft.CodeAnalysis.CommandLineArguments.get_Win32Icon +M:Microsoft.CodeAnalysis.CommandLineArguments.get_Win32Manifest +M:Microsoft.CodeAnalysis.CommandLineArguments.get_Win32ResourceFile +M:Microsoft.CodeAnalysis.CommandLineArguments.GetOutputFilePath(System.String) +M:Microsoft.CodeAnalysis.CommandLineArguments.GetPdbFilePath(System.String) +M:Microsoft.CodeAnalysis.CommandLineArguments.ResolveAnalyzerReferences(Microsoft.CodeAnalysis.IAnalyzerAssemblyLoader) +M:Microsoft.CodeAnalysis.CommandLineArguments.ResolveMetadataReferences(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CommandLineReference.#ctor(System.String,Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.CommandLineReference.Equals(Microsoft.CodeAnalysis.CommandLineReference) +M:Microsoft.CodeAnalysis.CommandLineReference.Equals(System.Object) +M:Microsoft.CodeAnalysis.CommandLineReference.get_Properties +M:Microsoft.CodeAnalysis.CommandLineReference.get_Reference +M:Microsoft.CodeAnalysis.CommandLineReference.GetHashCode +M:Microsoft.CodeAnalysis.CommandLineSourceFile.#ctor(System.String,System.Boolean) +M:Microsoft.CodeAnalysis.CommandLineSourceFile.#ctor(System.String,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.CommandLineSourceFile.get_IsInputRedirected +M:Microsoft.CodeAnalysis.CommandLineSourceFile.get_IsScript +M:Microsoft.CodeAnalysis.CommandLineSourceFile.get_Path +M:Microsoft.CodeAnalysis.Compilation.AddReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.Compilation.AddReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.Compilation.AddSyntaxTrees(Microsoft.CodeAnalysis.SyntaxTree[]) +M:Microsoft.CodeAnalysis.Compilation.AddSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Compilation.AppendDefaultVersionResource(System.IO.Stream) +M:Microsoft.CodeAnalysis.Compilation.CheckTupleElementLocations(System.Int32,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location}) +M:Microsoft.CodeAnalysis.Compilation.CheckTupleElementNames(System.Int32,System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.Compilation.CheckTupleElementNullableAnnotations(System.Int32,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.ClassifyCommonConversion(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.Clone +M:Microsoft.CodeAnalysis.Compilation.CommonAddSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Compilation.CommonBindScriptClass +M:Microsoft.CodeAnalysis.Compilation.CommonClone +M:Microsoft.CodeAnalysis.Compilation.CommonContainsSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateAnonymousTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{System.Boolean},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateArrayTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,System.Int32,Microsoft.CodeAnalysis.NullableAnnotation) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateErrorNamespaceSymbol(Microsoft.CodeAnalysis.INamespaceSymbol,System.String) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateErrorTypeSymbol(Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String,System.Int32) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateFunctionPointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.RefKind,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.RefKind},System.Reflection.Metadata.SignatureCallingConvention,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.INamedTypeSymbol}) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateNativeIntegerTypeSymbol(System.Boolean) +M:Microsoft.CodeAnalysis.Compilation.CommonCreatePointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateTupleTypeSymbol(Microsoft.CodeAnalysis.INamedTypeSymbol,System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.CommonCreateTupleTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.CommonGetAssemblyOrModuleSymbol(Microsoft.CodeAnalysis.MetadataReference) +M:Microsoft.CodeAnalysis.Compilation.CommonGetCompilationNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.Compilation.CommonGetEntryPoint(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.CommonGetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SemanticModelOptions) +M:Microsoft.CodeAnalysis.Compilation.CommonGetTypeByMetadataName(System.String) +M:Microsoft.CodeAnalysis.Compilation.CommonRemoveAllSyntaxTrees +M:Microsoft.CodeAnalysis.Compilation.CommonRemoveSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Compilation.CommonReplaceSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Compilation.CommonWithAssemblyName(System.String) +M:Microsoft.CodeAnalysis.Compilation.CommonWithOptions(Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.Compilation.CommonWithReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.Compilation.CommonWithScriptCompilationInfo(Microsoft.CodeAnalysis.ScriptCompilationInfo) +M:Microsoft.CodeAnalysis.Compilation.ContainsSymbolsWithName(System.Func{System.String,System.Boolean},Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.ContainsSymbolsWithName(System.String,Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.ContainsSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Compilation.CreateAnonymousTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{System.Boolean},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location}) +M:Microsoft.CodeAnalysis.Compilation.CreateAnonymousTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{System.Boolean},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.CreateArrayTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,System.Int32) +M:Microsoft.CodeAnalysis.Compilation.CreateArrayTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,System.Int32,Microsoft.CodeAnalysis.NullableAnnotation) +M:Microsoft.CodeAnalysis.Compilation.CreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CreateBuiltinOperator(System.String,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CreateDefaultWin32Resources(System.Boolean,System.Boolean,System.IO.Stream,System.IO.Stream) +M:Microsoft.CodeAnalysis.Compilation.CreateErrorNamespaceSymbol(Microsoft.CodeAnalysis.INamespaceSymbol,System.String) +M:Microsoft.CodeAnalysis.Compilation.CreateErrorTypeSymbol(Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String,System.Int32) +M:Microsoft.CodeAnalysis.Compilation.CreateFunctionPointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.RefKind,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.RefKind},System.Reflection.Metadata.SignatureCallingConvention,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.INamedTypeSymbol}) +M:Microsoft.CodeAnalysis.Compilation.CreateNativeIntegerTypeSymbol(System.Boolean) +M:Microsoft.CodeAnalysis.Compilation.CreatePointerTypeSymbol(Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.CreateTupleTypeSymbol(Microsoft.CodeAnalysis.INamedTypeSymbol,System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location}) +M:Microsoft.CodeAnalysis.Compilation.CreateTupleTypeSymbol(Microsoft.CodeAnalysis.INamedTypeSymbol,System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.CreateTupleTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location}) +M:Microsoft.CodeAnalysis.Compilation.CreateTupleTypeSymbol(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{System.String},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.Compilation.Emit(System.IO.Stream,System.IO.Stream,System.IO.Stream,System.IO.Stream,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ResourceDescription},Microsoft.CodeAnalysis.Emit.EmitOptions,Microsoft.CodeAnalysis.IMethodSymbol,System.IO.Stream,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.EmbeddedText},System.IO.Stream,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.Emit(System.IO.Stream,System.IO.Stream,System.IO.Stream,System.IO.Stream,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ResourceDescription},Microsoft.CodeAnalysis.Emit.EmitOptions,Microsoft.CodeAnalysis.IMethodSymbol,System.IO.Stream,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.EmbeddedText},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.Emit(System.IO.Stream,System.IO.Stream,System.IO.Stream,System.IO.Stream,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ResourceDescription},Microsoft.CodeAnalysis.Emit.EmitOptions,Microsoft.CodeAnalysis.IMethodSymbol,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.Emit(System.IO.Stream,System.IO.Stream,System.IO.Stream,System.IO.Stream,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.ResourceDescription},Microsoft.CodeAnalysis.Emit.EmitOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.EmitDifference(Microsoft.CodeAnalysis.Emit.EmitBaseline,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Emit.SemanticEdit},System.Func{Microsoft.CodeAnalysis.ISymbol,System.Boolean},System.IO.Stream,System.IO.Stream,System.IO.Stream,System.Collections.Generic.ICollection{System.Reflection.Metadata.MethodDefinitionHandle},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.EmitDifference(Microsoft.CodeAnalysis.Emit.EmitBaseline,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Emit.SemanticEdit},System.Func{Microsoft.CodeAnalysis.ISymbol,System.Boolean},System.IO.Stream,System.IO.Stream,System.IO.Stream,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.EmitDifference(Microsoft.CodeAnalysis.Emit.EmitBaseline,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Emit.SemanticEdit},System.IO.Stream,System.IO.Stream,System.IO.Stream,System.Collections.Generic.ICollection{System.Reflection.Metadata.MethodDefinitionHandle},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.get_Assembly +M:Microsoft.CodeAnalysis.Compilation.get_AssemblyName +M:Microsoft.CodeAnalysis.Compilation.get_CommonAssembly +M:Microsoft.CodeAnalysis.Compilation.get_CommonDynamicType +M:Microsoft.CodeAnalysis.Compilation.get_CommonGlobalNamespace +M:Microsoft.CodeAnalysis.Compilation.get_CommonObjectType +M:Microsoft.CodeAnalysis.Compilation.get_CommonOptions +M:Microsoft.CodeAnalysis.Compilation.get_CommonScriptClass +M:Microsoft.CodeAnalysis.Compilation.get_CommonScriptGlobalsType +M:Microsoft.CodeAnalysis.Compilation.get_CommonSourceModule +M:Microsoft.CodeAnalysis.Compilation.get_CommonSyntaxTrees +M:Microsoft.CodeAnalysis.Compilation.get_DirectiveReferences +M:Microsoft.CodeAnalysis.Compilation.get_DynamicType +M:Microsoft.CodeAnalysis.Compilation.get_ExternalReferences +M:Microsoft.CodeAnalysis.Compilation.get_GlobalNamespace +M:Microsoft.CodeAnalysis.Compilation.get_IsCaseSensitive +M:Microsoft.CodeAnalysis.Compilation.get_Language +M:Microsoft.CodeAnalysis.Compilation.get_ObjectType +M:Microsoft.CodeAnalysis.Compilation.get_Options +M:Microsoft.CodeAnalysis.Compilation.get_ReferencedAssemblyNames +M:Microsoft.CodeAnalysis.Compilation.get_References +M:Microsoft.CodeAnalysis.Compilation.get_ScriptClass +M:Microsoft.CodeAnalysis.Compilation.get_ScriptCompilationInfo +M:Microsoft.CodeAnalysis.Compilation.get_SourceModule +M:Microsoft.CodeAnalysis.Compilation.get_SyntaxTrees +M:Microsoft.CodeAnalysis.Compilation.GetAssemblyOrModuleSymbol(Microsoft.CodeAnalysis.MetadataReference) +M:Microsoft.CodeAnalysis.Compilation.GetCompilationNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.Compilation.GetDeclarationDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetEntryPoint(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetMetadataReference(Microsoft.CodeAnalysis.IAssemblySymbol) +M:Microsoft.CodeAnalysis.Compilation.GetMethodBodyDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetParseDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetRequiredLanguageVersion(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Compilation.GetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SemanticModelOptions) +M:Microsoft.CodeAnalysis.Compilation.GetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree,System.Boolean) +M:Microsoft.CodeAnalysis.Compilation.GetSpecialType(Microsoft.CodeAnalysis.SpecialType) +M:Microsoft.CodeAnalysis.Compilation.GetSymbolsWithName(System.Func{System.String,System.Boolean},Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetSymbolsWithName(System.String,Microsoft.CodeAnalysis.SymbolFilter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.GetTypeByMetadataName(System.String) +M:Microsoft.CodeAnalysis.Compilation.GetTypesByMetadataName(System.String) +M:Microsoft.CodeAnalysis.Compilation.GetUnreferencedAssemblyIdentities(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Compilation.GetUsedAssemblyReferences(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Compilation.HasImplicitConversion(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.IsSymbolAccessibleWithin(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.Compilation.RemoveAllReferences +M:Microsoft.CodeAnalysis.Compilation.RemoveAllSyntaxTrees +M:Microsoft.CodeAnalysis.Compilation.RemoveReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.Compilation.RemoveReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.Compilation.RemoveSyntaxTrees(Microsoft.CodeAnalysis.SyntaxTree[]) +M:Microsoft.CodeAnalysis.Compilation.RemoveSyntaxTrees(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Compilation.ReplaceReference(Microsoft.CodeAnalysis.MetadataReference,Microsoft.CodeAnalysis.MetadataReference) +M:Microsoft.CodeAnalysis.Compilation.ReplaceSyntaxTree(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Compilation.SupportsRuntimeCapability(Microsoft.CodeAnalysis.RuntimeCapability) +M:Microsoft.CodeAnalysis.Compilation.SyntaxTreeCommonFeatures(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Compilation.ToMetadataReference(System.Collections.Immutable.ImmutableArray{System.String},System.Boolean) +M:Microsoft.CodeAnalysis.Compilation.WithAssemblyName(System.String) +M:Microsoft.CodeAnalysis.Compilation.WithOptions(Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.Compilation.WithReferences(Microsoft.CodeAnalysis.MetadataReference[]) +M:Microsoft.CodeAnalysis.Compilation.WithReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference}) +M:Microsoft.CodeAnalysis.Compilation.WithScriptCompilationInfo(Microsoft.CodeAnalysis.ScriptCompilationInfo) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithAssemblyIdentityComparer(Microsoft.CodeAnalysis.AssemblyIdentityComparer) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithCheckOverflow(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithConcurrentBuild(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithCryptoKeyContainer(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithCryptoKeyFile(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithCryptoPublicKey(System.Collections.Immutable.ImmutableArray{System.Byte}) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithDelaySign(System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithDeterministic(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithFeatures(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithGeneralDiagnosticOption(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithMainTypeName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithMetadataImportOptions(Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithMetadataReferenceResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithModuleName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithOptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithOutputKind(Microsoft.CodeAnalysis.OutputKind) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithPlatform(Microsoft.CodeAnalysis.Platform) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithPublicSign(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithReportSuppressedDiagnostics(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithScriptClassName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithSourceReferenceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithSpecificDiagnosticOptions(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}}) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithSpecificDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithStrongNameProvider(Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithSyntaxTreeOptionsProvider(Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.CommonWithXmlReferenceResolver(Microsoft.CodeAnalysis.XmlReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.ComputeHashCode +M:Microsoft.CodeAnalysis.CompilationOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.CompilationOptions.EqualsHelper(Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.get_AssemblyIdentityComparer +M:Microsoft.CodeAnalysis.CompilationOptions.get_CheckOverflow +M:Microsoft.CodeAnalysis.CompilationOptions.get_ConcurrentBuild +M:Microsoft.CodeAnalysis.CompilationOptions.get_CryptoKeyContainer +M:Microsoft.CodeAnalysis.CompilationOptions.get_CryptoKeyFile +M:Microsoft.CodeAnalysis.CompilationOptions.get_CryptoPublicKey +M:Microsoft.CodeAnalysis.CompilationOptions.get_DelaySign +M:Microsoft.CodeAnalysis.CompilationOptions.get_Deterministic +M:Microsoft.CodeAnalysis.CompilationOptions.get_Errors +M:Microsoft.CodeAnalysis.CompilationOptions.get_Features +M:Microsoft.CodeAnalysis.CompilationOptions.get_GeneralDiagnosticOption +M:Microsoft.CodeAnalysis.CompilationOptions.get_Language +M:Microsoft.CodeAnalysis.CompilationOptions.get_MainTypeName +M:Microsoft.CodeAnalysis.CompilationOptions.get_MetadataImportOptions +M:Microsoft.CodeAnalysis.CompilationOptions.get_MetadataReferenceResolver +M:Microsoft.CodeAnalysis.CompilationOptions.get_ModuleName +M:Microsoft.CodeAnalysis.CompilationOptions.get_NullableContextOptions +M:Microsoft.CodeAnalysis.CompilationOptions.get_OptimizationLevel +M:Microsoft.CodeAnalysis.CompilationOptions.get_OutputKind +M:Microsoft.CodeAnalysis.CompilationOptions.get_Platform +M:Microsoft.CodeAnalysis.CompilationOptions.get_PublicSign +M:Microsoft.CodeAnalysis.CompilationOptions.get_ReportSuppressedDiagnostics +M:Microsoft.CodeAnalysis.CompilationOptions.get_ScriptClassName +M:Microsoft.CodeAnalysis.CompilationOptions.get_SourceReferenceResolver +M:Microsoft.CodeAnalysis.CompilationOptions.get_SpecificDiagnosticOptions +M:Microsoft.CodeAnalysis.CompilationOptions.get_StrongNameProvider +M:Microsoft.CodeAnalysis.CompilationOptions.get_SyntaxTreeOptionsProvider +M:Microsoft.CodeAnalysis.CompilationOptions.get_WarningLevel +M:Microsoft.CodeAnalysis.CompilationOptions.get_XmlReferenceResolver +M:Microsoft.CodeAnalysis.CompilationOptions.GetHashCode +M:Microsoft.CodeAnalysis.CompilationOptions.GetHashCodeHelper +M:Microsoft.CodeAnalysis.CompilationOptions.op_Equality(Microsoft.CodeAnalysis.CompilationOptions,Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.op_Inequality(Microsoft.CodeAnalysis.CompilationOptions,Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.set_AssemblyIdentityComparer(Microsoft.CodeAnalysis.AssemblyIdentityComparer) +M:Microsoft.CodeAnalysis.CompilationOptions.set_CheckOverflow(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.set_ConcurrentBuild(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.set_CryptoKeyContainer(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.set_CryptoKeyFile(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.set_CryptoPublicKey(System.Collections.Immutable.ImmutableArray{System.Byte}) +M:Microsoft.CodeAnalysis.CompilationOptions.set_DelaySign(System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CompilationOptions.set_Deterministic(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.set_Features(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CompilationOptions.set_GeneralDiagnosticOption(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.CompilationOptions.set_MainTypeName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.set_MetadataImportOptions(Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.set_MetadataReferenceResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.set_ModuleName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.set_NullableContextOptions(Microsoft.CodeAnalysis.NullableContextOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.set_OptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel) +M:Microsoft.CodeAnalysis.CompilationOptions.set_OutputKind(Microsoft.CodeAnalysis.OutputKind) +M:Microsoft.CodeAnalysis.CompilationOptions.set_Platform(Microsoft.CodeAnalysis.Platform) +M:Microsoft.CodeAnalysis.CompilationOptions.set_PublicSign(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.set_ReportSuppressedDiagnostics(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.set_ScriptClassName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.set_SourceReferenceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.set_SpecificDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CompilationOptions.set_StrongNameProvider(Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.set_SyntaxTreeOptionsProvider(Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.set_WarningLevel(System.Int32) +M:Microsoft.CodeAnalysis.CompilationOptions.set_XmlReferenceResolver(Microsoft.CodeAnalysis.XmlReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.WithAssemblyIdentityComparer(Microsoft.CodeAnalysis.AssemblyIdentityComparer) +M:Microsoft.CodeAnalysis.CompilationOptions.WithConcurrentBuild(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.WithCryptoKeyContainer(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.WithCryptoKeyFile(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.WithCryptoPublicKey(System.Collections.Immutable.ImmutableArray{System.Byte}) +M:Microsoft.CodeAnalysis.CompilationOptions.WithDelaySign(System.Nullable{System.Boolean}) +M:Microsoft.CodeAnalysis.CompilationOptions.WithDeterministic(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.WithGeneralDiagnosticOption(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.CompilationOptions.WithMainTypeName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.WithMetadataImportOptions(Microsoft.CodeAnalysis.MetadataImportOptions) +M:Microsoft.CodeAnalysis.CompilationOptions.WithMetadataReferenceResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.WithModuleName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.WithOptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel) +M:Microsoft.CodeAnalysis.CompilationOptions.WithOutputKind(Microsoft.CodeAnalysis.OutputKind) +M:Microsoft.CodeAnalysis.CompilationOptions.WithOverflowChecks(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.WithPlatform(Microsoft.CodeAnalysis.Platform) +M:Microsoft.CodeAnalysis.CompilationOptions.WithPublicSign(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.WithReportSuppressedDiagnostics(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationOptions.WithScriptClassName(System.String) +M:Microsoft.CodeAnalysis.CompilationOptions.WithSourceReferenceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationOptions.WithSpecificDiagnosticOptions(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}}) +M:Microsoft.CodeAnalysis.CompilationOptions.WithSpecificDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.CompilationOptions.WithStrongNameProvider(Microsoft.CodeAnalysis.StrongNameProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.WithSyntaxTreeOptionsProvider(Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider) +M:Microsoft.CodeAnalysis.CompilationOptions.WithXmlReferenceResolver(Microsoft.CodeAnalysis.XmlReferenceResolver) +M:Microsoft.CodeAnalysis.CompilationReference.Equals(Microsoft.CodeAnalysis.CompilationReference) +M:Microsoft.CodeAnalysis.CompilationReference.Equals(System.Object) +M:Microsoft.CodeAnalysis.CompilationReference.get_Compilation +M:Microsoft.CodeAnalysis.CompilationReference.get_Display +M:Microsoft.CodeAnalysis.CompilationReference.GetHashCode +M:Microsoft.CodeAnalysis.CompilationReference.WithAliases(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.CompilationReference.WithAliases(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.CompilationReference.WithEmbedInteropTypes(System.Boolean) +M:Microsoft.CodeAnalysis.CompilationReference.WithProperties(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.#ctor +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_EndPointIsReachable +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_EntryPoints +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_ExitPoints +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_ReturnStatements +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_StartPointIsReachable +M:Microsoft.CodeAnalysis.ControlFlowAnalysis.get_Succeeded +M:Microsoft.CodeAnalysis.CustomModifier.#ctor +M:Microsoft.CodeAnalysis.CustomModifier.get_IsOptional +M:Microsoft.CodeAnalysis.CustomModifier.get_Modifier +M:Microsoft.CodeAnalysis.DataFlowAnalysis.#ctor +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_AlwaysAssigned +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_Captured +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_CapturedInside +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_CapturedOutside +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_DataFlowsIn +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_DataFlowsOut +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_DefinitelyAssignedOnEntry +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_DefinitelyAssignedOnExit +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_ReadInside +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_ReadOutside +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_Succeeded +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_UnsafeAddressTaken +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_UsedLocalFunctions +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_VariablesDeclared +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_WrittenInside +M:Microsoft.CodeAnalysis.DataFlowAnalysis.get_WrittenOutside +M:Microsoft.CodeAnalysis.DesktopAssemblyIdentityComparer.get_Default +M:Microsoft.CodeAnalysis.DesktopAssemblyIdentityComparer.LoadFromXml(System.IO.Stream) +M:Microsoft.CodeAnalysis.Diagnostic.#ctor +M:Microsoft.CodeAnalysis.Diagnostic.Create(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableDictionary{System.String,System.String},System.Object[]) +M:Microsoft.CodeAnalysis.Diagnostic.Create(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Location},System.Collections.Immutable.ImmutableDictionary{System.String,System.String},System.Object[]) +M:Microsoft.CodeAnalysis.Diagnostic.Create(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Location},System.Object[]) +M:Microsoft.CodeAnalysis.Diagnostic.Create(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Immutable.ImmutableDictionary{System.String,System.String},System.Object[]) +M:Microsoft.CodeAnalysis.Diagnostic.Create(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Object[]) +M:Microsoft.CodeAnalysis.Diagnostic.Create(System.String,System.String,Microsoft.CodeAnalysis.LocalizableString,Microsoft.CodeAnalysis.DiagnosticSeverity,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Boolean,System.Int32,Microsoft.CodeAnalysis.LocalizableString,Microsoft.CodeAnalysis.LocalizableString,System.String,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Location},System.Collections.Generic.IEnumerable{System.String},System.Collections.Immutable.ImmutableDictionary{System.String,System.String}) +M:Microsoft.CodeAnalysis.Diagnostic.Create(System.String,System.String,Microsoft.CodeAnalysis.LocalizableString,Microsoft.CodeAnalysis.DiagnosticSeverity,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Boolean,System.Int32,System.Boolean,Microsoft.CodeAnalysis.LocalizableString,Microsoft.CodeAnalysis.LocalizableString,System.String,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Location},System.Collections.Generic.IEnumerable{System.String},System.Collections.Immutable.ImmutableDictionary{System.String,System.String}) +M:Microsoft.CodeAnalysis.Diagnostic.Equals(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostic.Equals(System.Object) +M:Microsoft.CodeAnalysis.Diagnostic.get_AdditionalLocations +M:Microsoft.CodeAnalysis.Diagnostic.get_DefaultSeverity +M:Microsoft.CodeAnalysis.Diagnostic.get_Descriptor +M:Microsoft.CodeAnalysis.Diagnostic.get_Id +M:Microsoft.CodeAnalysis.Diagnostic.get_IsSuppressed +M:Microsoft.CodeAnalysis.Diagnostic.get_IsWarningAsError +M:Microsoft.CodeAnalysis.Diagnostic.get_Location +M:Microsoft.CodeAnalysis.Diagnostic.get_Properties +M:Microsoft.CodeAnalysis.Diagnostic.get_Severity +M:Microsoft.CodeAnalysis.Diagnostic.get_WarningLevel +M:Microsoft.CodeAnalysis.Diagnostic.GetHashCode +M:Microsoft.CodeAnalysis.Diagnostic.GetMessage(System.IFormatProvider) +M:Microsoft.CodeAnalysis.Diagnostic.GetSuppressionInfo(Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.Diagnostic.ToString +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.#ctor(System.String,Microsoft.CodeAnalysis.LocalizableString,Microsoft.CodeAnalysis.LocalizableString,System.String,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Boolean,Microsoft.CodeAnalysis.LocalizableString,System.String,System.String[]) +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.#ctor(System.String,System.String,System.String,System.String,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Boolean,System.String,System.String,System.String[]) +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.Equals(Microsoft.CodeAnalysis.DiagnosticDescriptor) +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.Equals(System.Object) +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_Category +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_CustomTags +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_DefaultSeverity +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_Description +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_HelpLinkUri +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_Id +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_IsEnabledByDefault +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_MessageFormat +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.get_Title +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.GetEffectiveSeverity(Microsoft.CodeAnalysis.CompilationOptions) +M:Microsoft.CodeAnalysis.DiagnosticDescriptor.GetHashCode +M:Microsoft.CodeAnalysis.DiagnosticFormatter.#ctor +M:Microsoft.CodeAnalysis.DiagnosticFormatter.Format(Microsoft.CodeAnalysis.Diagnostic,System.IFormatProvider) +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.get_AdditionalFile +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.AdditionalTextValueProvider`1.#ctor(System.Func{Microsoft.CodeAnalysis.AdditionalText,`0},System.Collections.Generic.IEqualityComparer{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.ConfigureGeneratedCodeAnalysis(Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.EnableConcurrentExecution +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.get_MinimumReportedSeverity +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterAdditionalFileAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterCodeBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterCodeBlockStartAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext{``0}}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterCompilationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterCompilationStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},Microsoft.CodeAnalysis.OperationKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.OperationKind}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterOperationBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterOperationBlockStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSemanticModelAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSymbolAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext},Microsoft.CodeAnalysis.SymbolKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSymbolAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.SymbolKind}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSymbolStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext},Microsoft.CodeAnalysis.SymbolKind) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},``0[]) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},System.Collections.Immutable.ImmutableArray{``0}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.RegisterSyntaxTreeAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.AdditionalText,Microsoft.CodeAnalysis.Diagnostics.AdditionalTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Diagnostics.SourceTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_AdditionalFileDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_Analyzers +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_AnalyzerTelemetryInfo +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_CompilationDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_SemanticDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.get_SyntaxDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.GetAllDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult.GetAllDiagnostics(Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions.get_KeyComparer +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions.get_Keys +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions.TryGetValue(System.String,System.String@) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider.get_GlobalOptions +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider.GetOptions(Microsoft.CodeAnalysis.AdditionalText) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider.GetOptions(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.#ctor(System.String,Microsoft.CodeAnalysis.IAnalyzerAssemblyLoader) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.add_AnalyzerLoadFailed(System.EventHandler{Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.Equals(Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.Equals(Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.Equals(System.Object) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.get_AssemblyLoader +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.get_Display +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.get_FullPath +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.get_Id +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetAnalyzers(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetAnalyzersForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetAssembly +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetGenerators +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetGenerators(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetGeneratorsForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.GetHashCode +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference.remove_AnalyzerLoadFailed(System.EventHandler{Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.#ctor(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.String,System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.get_Display +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.get_FullPath +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.get_Id +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.GetAnalyzers(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference.GetAnalyzersForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.#ctor(Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode,System.String,System.Exception,System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.get_ErrorCode +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.get_Exception +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.get_Message +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.get_ReferencedCompilerVersion +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.get_TypeName +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.#ctor(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.#ctor(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText},Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.get_AdditionalFiles +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.get_AnalyzerConfigOptionsProvider +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.GetHashCode +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions.WithAdditionalFiles(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.get_Display +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.get_FullPath +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.get_Id +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.GetAnalyzers(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.GetAnalyzersForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.GetGenerators +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.GetGenerators(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference.GetGeneratorsForAllLanguages +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.#ctor(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_CodeBlock +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_OwningSymbol +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.get_SemanticModel +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.#ctor(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_CodeBlock +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_OwningSymbol +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.get_SemanticModel +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.RegisterCodeBlockEndAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.RegisterSyntaxNodeAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},`0[]) +M:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1.RegisterSyntaxNodeAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},System.Collections.Immutable.ImmutableArray{`0}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.#ctor(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.AdditionalText,Microsoft.CodeAnalysis.Diagnostics.AdditionalTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Diagnostics.SourceTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.#ctor(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterAdditionalFileAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterCodeBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterCodeBlockStartAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext{``0}}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterCompilationEndAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},Microsoft.CodeAnalysis.OperationKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.OperationKind}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterOperationBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterOperationBlockStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSemanticModelAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSymbolAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext},Microsoft.CodeAnalysis.SymbolKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSymbolAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.SymbolKind}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSymbolStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext},Microsoft.CodeAnalysis.SymbolKind) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},``0[]) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},System.Collections.Immutable.ImmutableArray{``0}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.RegisterSyntaxTreeAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.AdditionalText,Microsoft.CodeAnalysis.Diagnostics.AdditionalTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext.TryGetValue``1(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Diagnostics.SourceTextValueProvider{``0},``0@) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.#ctor(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.#ctor(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.#ctor(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.ClearAnalyzerState(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.get_AnalysisOptions +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.get_Analyzers +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAllDiagnosticsAsync +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAllDiagnosticsAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.AdditionalText,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.AdditionalText,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.AdditionalText,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.AdditionalText,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SemanticModel,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SemanticModel,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalysisResultAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerCompilationDiagnosticsAsync(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerCompilationDiagnosticsAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerDiagnosticsAsync +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerDiagnosticsAsync(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerDiagnosticsAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSemanticDiagnosticsAsync(Microsoft.CodeAnalysis.SemanticModel,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSemanticDiagnosticsAsync(Microsoft.CodeAnalysis.SemanticModel,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSyntaxDiagnosticsAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSyntaxDiagnosticsAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSyntaxDiagnosticsAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerSyntaxDiagnosticsAsync(Microsoft.CodeAnalysis.SyntaxTree,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetAnalyzerTelemetryInfoAsync(Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetEffectiveDiagnostics(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Diagnostic},Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.GetEffectiveDiagnostics(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostic},Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers.IsDiagnosticAnalyzerSuppressed(Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,Microsoft.CodeAnalysis.CompilationOptions,System.Action{System.Exception,Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,Microsoft.CodeAnalysis.Diagnostic}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.#ctor(Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{System.Exception,Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,Microsoft.CodeAnalysis.Diagnostic},System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.#ctor(Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{System.Exception,Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,Microsoft.CodeAnalysis.Diagnostic},System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.#ctor(Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{System.Exception,Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer,Microsoft.CodeAnalysis.Diagnostic},System.Boolean,System.Boolean,System.Boolean,System.Func{System.Exception,System.Boolean}) +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_AnalyzerExceptionFilter +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_ConcurrentAnalysis +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_LogAnalyzerExecutionTime +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_OnAnalyzerException +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions.get_ReportSuppressedDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.Equals(System.Object) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.get_SupportedDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.GetHashCode +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.Initialize(Microsoft.CodeAnalysis.Diagnostics.AnalysisContext) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer.ToString +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerAttribute.#ctor(System.String,System.String[]) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerAttribute.get_Languages +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerExtensions.WithAnalyzers(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerExtensions.WithAnalyzers(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerExtensions.WithAnalyzers(Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer},Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor.get_SupportedDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor.get_SupportedSuppressions +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor.Initialize(Microsoft.CodeAnalysis.Diagnostics.AnalysisContext) +M:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor.ReportSuppressions(Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext) +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.#ctor(Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_ContainingSymbol +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_Operation +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.GetControlFlowGraph +M:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.#ctor(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.IOperation},Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_OperationBlocks +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.get_OwningSymbol +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.GetControlFlowGraph(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.#ctor(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.IOperation},Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_OperationBlocks +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.get_OwningSymbol +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.GetControlFlowGraph(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},Microsoft.CodeAnalysis.OperationKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.OperationKind}) +M:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext.RegisterOperationBlockEndAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.#ctor(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.get_SemanticModel +M:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.SourceTextValueProvider`1.#ctor(System.Func{Microsoft.CodeAnalysis.Text.SourceText,`0},System.Collections.Generic.IEqualityComparer{Microsoft.CodeAnalysis.Text.SourceText}) +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.Create(Microsoft.CodeAnalysis.SuppressionDescriptor,Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.Equals(Microsoft.CodeAnalysis.Diagnostics.Suppression) +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.Equals(System.Object) +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.get_Descriptor +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.get_SuppressedDiagnostic +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.GetHashCode +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.op_Equality(Microsoft.CodeAnalysis.Diagnostics.Suppression,Microsoft.CodeAnalysis.Diagnostics.Suppression) +M:Microsoft.CodeAnalysis.Diagnostics.Suppression.op_Inequality(Microsoft.CodeAnalysis.Diagnostics.Suppression,Microsoft.CodeAnalysis.Diagnostics.Suppression) +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.get_ReportedDiagnostics +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.GetSemanticModel(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext.ReportSuppression(Microsoft.CodeAnalysis.Diagnostics.Suppression) +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionInfo.get_Attribute +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionInfo.get_Id +M:Microsoft.CodeAnalysis.Diagnostics.SuppressionInfo.get_ProgrammaticSuppressions +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.#ctor(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.get_Symbol +M:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.#ctor(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.get_Symbol +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterCodeBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterCodeBlockStartAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext{``0}}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},Microsoft.CodeAnalysis.OperationKind[]) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterOperationAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.OperationKind}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterOperationBlockAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterOperationBlockStartAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterSymbolEndAction(System.Action{Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext}) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},``0[]) +M:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext.RegisterSyntaxNodeAction``1(System.Action{Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext},System.Collections.Immutable.ImmutableArray{``0}) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.#ctor(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.#ctor(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_Compilation +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_ContainingSymbol +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_FilterTree +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_Node +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.get_SemanticModel +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.#ctor(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,System.Action{Microsoft.CodeAnalysis.Diagnostic},System.Func{Microsoft.CodeAnalysis.Diagnostic,System.Boolean},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.get_CancellationToken +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.get_FilterSpan +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.get_IsGeneratedCode +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.get_Options +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.get_Tree +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeValueProvider`1.#ctor(System.Func{Microsoft.CodeAnalysis.SyntaxTree,`0},System.Collections.Generic.IEqualityComparer{Microsoft.CodeAnalysis.SyntaxTree}) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.#ctor +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_AdditionalFileActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CodeBlockActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CodeBlockEndActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CodeBlockStartActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CompilationActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CompilationEndActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_CompilationStartActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_Concurrent +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_ExecutionTime +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_OperationActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_OperationBlockActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_OperationBlockEndActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_OperationBlockStartActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SemanticModelActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SuppressionActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SymbolActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SymbolEndActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SymbolStartActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SyntaxNodeActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.get_SyntaxTreeActionsCount +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_AdditionalFileActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CodeBlockActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CodeBlockEndActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CodeBlockStartActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CompilationActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CompilationEndActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_CompilationStartActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_Concurrent(System.Boolean) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_ExecutionTime(System.TimeSpan) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_OperationActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_OperationBlockActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_OperationBlockEndActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_OperationBlockStartActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SemanticModelActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SuppressionActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SymbolActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SymbolEndActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SymbolStartActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SyntaxNodeActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo.set_SyntaxTreeActionsCount(System.Int32) +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.#ctor(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.get_Display +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.get_FullPath +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.get_Id +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.GetAnalyzers(System.String) +M:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference.GetAnalyzersForAllLanguages +M:Microsoft.CodeAnalysis.DllImportData.get_BestFitMapping +M:Microsoft.CodeAnalysis.DllImportData.get_CallingConvention +M:Microsoft.CodeAnalysis.DllImportData.get_CharacterSet +M:Microsoft.CodeAnalysis.DllImportData.get_EntryPointName +M:Microsoft.CodeAnalysis.DllImportData.get_ExactSpelling +M:Microsoft.CodeAnalysis.DllImportData.get_ModuleName +M:Microsoft.CodeAnalysis.DllImportData.get_SetLastError +M:Microsoft.CodeAnalysis.DllImportData.get_ThrowOnUnmappableCharacter +M:Microsoft.CodeAnalysis.DocumentationCommentId.CreateDeclarationId(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.DocumentationCommentId.CreateReferenceId(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.DocumentationCommentId.GetFirstSymbolForDeclarationId(System.String,Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.DocumentationCommentId.GetFirstSymbolForReferenceId(System.String,Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.DocumentationCommentId.GetSymbolsForDeclarationId(System.String,Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.DocumentationCommentId.GetSymbolsForReferenceId(System.String,Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.DocumentationProvider.#ctor +M:Microsoft.CodeAnalysis.DocumentationProvider.Equals(System.Object) +M:Microsoft.CodeAnalysis.DocumentationProvider.get_Default +M:Microsoft.CodeAnalysis.DocumentationProvider.GetDocumentationForSymbol(System.String,System.Globalization.CultureInfo,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.DocumentationProvider.GetHashCode +M:Microsoft.CodeAnalysis.EmbeddedText.FromBytes(System.String,System.ArraySegment{System.Byte},Microsoft.CodeAnalysis.Text.SourceHashAlgorithm) +M:Microsoft.CodeAnalysis.EmbeddedText.FromSource(System.String,Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.EmbeddedText.FromStream(System.String,System.IO.Stream,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm) +M:Microsoft.CodeAnalysis.EmbeddedText.get_Checksum +M:Microsoft.CodeAnalysis.EmbeddedText.get_ChecksumAlgorithm +M:Microsoft.CodeAnalysis.EmbeddedText.get_FilePath +M:Microsoft.CodeAnalysis.Emit.EditAndContinueMethodDebugInformation.Create(System.Collections.Immutable.ImmutableArray{System.Byte},System.Collections.Immutable.ImmutableArray{System.Byte}) +M:Microsoft.CodeAnalysis.Emit.EditAndContinueMethodDebugInformation.Create(System.Collections.Immutable.ImmutableArray{System.Byte},System.Collections.Immutable.ImmutableArray{System.Byte},System.Collections.Immutable.ImmutableArray{System.Byte}) +M:Microsoft.CodeAnalysis.Emit.EmitBaseline.CreateInitialBaseline(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.ModuleMetadata,System.Func{System.Reflection.Metadata.MethodDefinitionHandle,Microsoft.CodeAnalysis.Emit.EditAndContinueMethodDebugInformation},System.Func{System.Reflection.Metadata.MethodDefinitionHandle,System.Reflection.Metadata.StandaloneSignatureHandle},System.Boolean) +M:Microsoft.CodeAnalysis.Emit.EmitBaseline.CreateInitialBaseline(Microsoft.CodeAnalysis.ModuleMetadata,System.Func{System.Reflection.Metadata.MethodDefinitionHandle,Microsoft.CodeAnalysis.Emit.EditAndContinueMethodDebugInformation}) +M:Microsoft.CodeAnalysis.Emit.EmitBaseline.CreateInitialBaseline(Microsoft.CodeAnalysis.ModuleMetadata,System.Func{System.Reflection.Metadata.MethodDefinitionHandle,Microsoft.CodeAnalysis.Emit.EditAndContinueMethodDebugInformation},System.Func{System.Reflection.Metadata.MethodDefinitionHandle,System.Reflection.Metadata.StandaloneSignatureHandle},System.Boolean) +M:Microsoft.CodeAnalysis.Emit.EmitBaseline.get_OriginalMetadata +M:Microsoft.CodeAnalysis.Emit.EmitDifferenceResult.get_Baseline +M:Microsoft.CodeAnalysis.Emit.EmitDifferenceResult.get_ChangedTypes +M:Microsoft.CodeAnalysis.Emit.EmitDifferenceResult.get_UpdatedMethods +M:Microsoft.CodeAnalysis.Emit.EmitOptions.#ctor(System.Boolean,Microsoft.CodeAnalysis.Emit.DebugInformationFormat,System.String,System.String,System.Int32,System.UInt64,System.Boolean,Microsoft.CodeAnalysis.SubsystemVersion,System.String,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.#ctor(System.Boolean,Microsoft.CodeAnalysis.Emit.DebugInformationFormat,System.String,System.String,System.Int32,System.UInt64,System.Boolean,Microsoft.CodeAnalysis.SubsystemVersion,System.String,System.Boolean,System.Boolean,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Emit.InstrumentationKind}) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.#ctor(System.Boolean,Microsoft.CodeAnalysis.Emit.DebugInformationFormat,System.String,System.String,System.Int32,System.UInt64,System.Boolean,Microsoft.CodeAnalysis.SubsystemVersion,System.String,System.Boolean,System.Boolean,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Emit.InstrumentationKind},System.Nullable{System.Security.Cryptography.HashAlgorithmName}) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.#ctor(System.Boolean,Microsoft.CodeAnalysis.Emit.DebugInformationFormat,System.String,System.String,System.Int32,System.UInt64,System.Boolean,Microsoft.CodeAnalysis.SubsystemVersion,System.String,System.Boolean,System.Boolean,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Emit.InstrumentationKind},System.Nullable{System.Security.Cryptography.HashAlgorithmName},System.Text.Encoding,System.Text.Encoding) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.Equals(Microsoft.CodeAnalysis.Emit.EmitOptions) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_BaseAddress +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_DebugInformationFormat +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_DefaultSourceFileEncoding +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_EmitMetadataOnly +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_FallbackSourceFileEncoding +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_FileAlignment +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_HighEntropyVirtualAddressSpace +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_IncludePrivateMembers +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_InstrumentationKinds +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_OutputNameOverride +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_PdbChecksumAlgorithm +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_PdbFilePath +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_RuntimeMetadataVersion +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_SubsystemVersion +M:Microsoft.CodeAnalysis.Emit.EmitOptions.get_TolerateErrors +M:Microsoft.CodeAnalysis.Emit.EmitOptions.GetHashCode +M:Microsoft.CodeAnalysis.Emit.EmitOptions.op_Equality(Microsoft.CodeAnalysis.Emit.EmitOptions,Microsoft.CodeAnalysis.Emit.EmitOptions) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.op_Inequality(Microsoft.CodeAnalysis.Emit.EmitOptions,Microsoft.CodeAnalysis.Emit.EmitOptions) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithBaseAddress(System.UInt64) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithDebugInformationFormat(Microsoft.CodeAnalysis.Emit.DebugInformationFormat) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithDefaultSourceFileEncoding(System.Text.Encoding) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithEmitMetadataOnly(System.Boolean) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithFallbackSourceFileEncoding(System.Text.Encoding) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithFileAlignment(System.Int32) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithHighEntropyVirtualAddressSpace(System.Boolean) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithIncludePrivateMembers(System.Boolean) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithInstrumentationKinds(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Emit.InstrumentationKind}) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithOutputNameOverride(System.String) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithPdbChecksumAlgorithm(System.Security.Cryptography.HashAlgorithmName) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithPdbFilePath(System.String) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithRuntimeMetadataVersion(System.String) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithSubsystemVersion(Microsoft.CodeAnalysis.SubsystemVersion) +M:Microsoft.CodeAnalysis.Emit.EmitOptions.WithTolerateErrors(System.Boolean) +M:Microsoft.CodeAnalysis.Emit.EmitResult.get_Diagnostics +M:Microsoft.CodeAnalysis.Emit.EmitResult.get_Success +M:Microsoft.CodeAnalysis.Emit.EmitResult.GetDebuggerDisplay +M:Microsoft.CodeAnalysis.Emit.MethodInstrumentation.get_Kinds +M:Microsoft.CodeAnalysis.Emit.MethodInstrumentation.set_Kinds(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Emit.InstrumentationKind}) +M:Microsoft.CodeAnalysis.Emit.RuntimeRudeEdit.#ctor(System.String) +M:Microsoft.CodeAnalysis.Emit.RuntimeRudeEdit.get_Message +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.#ctor(Microsoft.CodeAnalysis.Emit.SemanticEditKind,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.ISymbol,System.Func{Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode},System.Boolean) +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.#ctor(Microsoft.CodeAnalysis.Emit.SemanticEditKind,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.ISymbol,System.Func{Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode},System.Boolean,Microsoft.CodeAnalysis.Emit.MethodInstrumentation) +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.#ctor(Microsoft.CodeAnalysis.Emit.SemanticEditKind,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.ISymbol,System.Func{Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode},System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Nullable{Microsoft.CodeAnalysis.Emit.RuntimeRudeEdit}},Microsoft.CodeAnalysis.Emit.MethodInstrumentation) +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.Equals(Microsoft.CodeAnalysis.Emit.SemanticEdit) +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.Equals(System.Object) +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.get_Instrumentation +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.get_Kind +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.get_NewSymbol +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.get_OldSymbol +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.get_PreserveLocalVariables +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.get_RuntimeRudeEdit +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.get_SyntaxMap +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.GetHashCode +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.op_Equality(Microsoft.CodeAnalysis.Emit.SemanticEdit,Microsoft.CodeAnalysis.Emit.SemanticEdit) +M:Microsoft.CodeAnalysis.Emit.SemanticEdit.op_Inequality(Microsoft.CodeAnalysis.Emit.SemanticEdit,Microsoft.CodeAnalysis.Emit.SemanticEdit) +M:Microsoft.CodeAnalysis.ErrorLogOptions.#ctor(System.String,Microsoft.CodeAnalysis.SarifVersion) +M:Microsoft.CodeAnalysis.ErrorLogOptions.get_Path +M:Microsoft.CodeAnalysis.ErrorLogOptions.get_SarifVersion +M:Microsoft.CodeAnalysis.FileLinePositionSpan.#ctor(System.String,Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.#ctor(System.String,Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.Equals(Microsoft.CodeAnalysis.FileLinePositionSpan) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.Equals(System.Object) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_EndLinePosition +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_HasMappedPath +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_IsValid +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_Path +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_Span +M:Microsoft.CodeAnalysis.FileLinePositionSpan.get_StartLinePosition +M:Microsoft.CodeAnalysis.FileLinePositionSpan.GetHashCode +M:Microsoft.CodeAnalysis.FileLinePositionSpan.op_Equality(Microsoft.CodeAnalysis.FileLinePositionSpan,Microsoft.CodeAnalysis.FileLinePositionSpan) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.op_Inequality(Microsoft.CodeAnalysis.FileLinePositionSpan,Microsoft.CodeAnalysis.FileLinePositionSpan) +M:Microsoft.CodeAnalysis.FileLinePositionSpan.ToString +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_BranchValue +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_ConditionalSuccessor +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_ConditionKind +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_EnclosingRegion +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_FallThroughSuccessor +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_IsReachable +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_Kind +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_Operations +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_Ordinal +M:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.get_Predecessors +M:Microsoft.CodeAnalysis.FlowAnalysis.CaptureId.Equals(Microsoft.CodeAnalysis.FlowAnalysis.CaptureId) +M:Microsoft.CodeAnalysis.FlowAnalysis.CaptureId.Equals(System.Object) +M:Microsoft.CodeAnalysis.FlowAnalysis.CaptureId.GetHashCode +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_Destination +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_EnteringRegions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_FinallyRegions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_IsConditionalSuccessor +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_LeavingRegions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_Semantics +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.get_Source +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IAttributeOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IBlockOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IFieldInitializerOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IMethodBodyOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IParameterInitializerOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.Operations.IPropertyInitializerOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.Create(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SemanticModel,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.get_Blocks +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.get_LocalFunctions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.get_OriginalOperation +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.get_Parent +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.get_Root +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.GetAnonymousFunctionControlFlowGraph(Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph.GetLocalFunctionControlFlowGraph(Microsoft.CodeAnalysis.IMethodSymbol,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraphExtensions.GetAnonymousFunctionControlFlowGraphInScope(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph,Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraphExtensions.GetLocalFunctionControlFlowGraphInScope(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph,Microsoft.CodeAnalysis.IMethodSymbol,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_CaptureIds +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_EnclosingRegion +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_ExceptionType +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_FirstBlockOrdinal +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_Kind +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_LastBlockOrdinal +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_LocalFunctions +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_Locals +M:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.get_NestedRegions +M:Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation.get_Symbol +M:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation.get_Id +M:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation.get_Value +M:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation.get_Id +M:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation.get_IsInitialization +M:Microsoft.CodeAnalysis.FlowAnalysis.IIsNullOperation.get_Operand +M:Microsoft.CodeAnalysis.FlowAnalysis.IStaticLocalInitializationSemaphoreOperation.get_Local +M:Microsoft.CodeAnalysis.GeneratedSourceResult.get_HintName +M:Microsoft.CodeAnalysis.GeneratedSourceResult.get_SourceText +M:Microsoft.CodeAnalysis.GeneratedSourceResult.get_SyntaxTree +M:Microsoft.CodeAnalysis.GeneratorAttribute.#ctor +M:Microsoft.CodeAnalysis.GeneratorAttribute.#ctor(System.String,System.String[]) +M:Microsoft.CodeAnalysis.GeneratorAttribute.get_Languages +M:Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext.get_Attributes +M:Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext.get_SemanticModel +M:Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext.get_TargetNode +M:Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext.get_TargetSymbol +M:Microsoft.CodeAnalysis.GeneratorDriver.AddAdditionalTexts(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.GeneratorDriver.AddGenerators(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ISourceGenerator}) +M:Microsoft.CodeAnalysis.GeneratorDriver.GetRunResult +M:Microsoft.CodeAnalysis.GeneratorDriver.GetTimingInfo +M:Microsoft.CodeAnalysis.GeneratorDriver.RemoveAdditionalTexts(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.GeneratorDriver.RemoveGenerators(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ISourceGenerator}) +M:Microsoft.CodeAnalysis.GeneratorDriver.ReplaceAdditionalText(Microsoft.CodeAnalysis.AdditionalText,Microsoft.CodeAnalysis.AdditionalText) +M:Microsoft.CodeAnalysis.GeneratorDriver.ReplaceAdditionalTexts(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.AdditionalText}) +M:Microsoft.CodeAnalysis.GeneratorDriver.ReplaceGenerators(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ISourceGenerator}) +M:Microsoft.CodeAnalysis.GeneratorDriver.RunGenerators(Microsoft.CodeAnalysis.Compilation,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.GeneratorDriver.RunGeneratorsAndUpdateCompilation(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.Compilation@,System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.Diagnostic}@,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.GeneratorDriver.WithUpdatedAnalyzerConfigOptions(Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider) +M:Microsoft.CodeAnalysis.GeneratorDriver.WithUpdatedParseOptions(Microsoft.CodeAnalysis.ParseOptions) +M:Microsoft.CodeAnalysis.GeneratorDriverOptions.#ctor(Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind) +M:Microsoft.CodeAnalysis.GeneratorDriverOptions.#ctor(Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind,System.Boolean) +M:Microsoft.CodeAnalysis.GeneratorDriverRunResult.get_Diagnostics +M:Microsoft.CodeAnalysis.GeneratorDriverRunResult.get_GeneratedTrees +M:Microsoft.CodeAnalysis.GeneratorDriverRunResult.get_Results +M:Microsoft.CodeAnalysis.GeneratorDriverTimingInfo.get_ElapsedTime +M:Microsoft.CodeAnalysis.GeneratorDriverTimingInfo.get_GeneratorTimes +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.AddSource(System.String,Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.AddSource(System.String,System.String) +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_AdditionalFiles +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_AnalyzerConfigOptions +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_CancellationToken +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_Compilation +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_ParseOptions +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_SyntaxContextReceiver +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.get_SyntaxReceiver +M:Microsoft.CodeAnalysis.GeneratorExecutionContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.GeneratorExtensions.AsSourceGenerator(Microsoft.CodeAnalysis.IIncrementalGenerator) +M:Microsoft.CodeAnalysis.GeneratorExtensions.GetGeneratorType(Microsoft.CodeAnalysis.ISourceGenerator) +M:Microsoft.CodeAnalysis.GeneratorInitializationContext.get_CancellationToken +M:Microsoft.CodeAnalysis.GeneratorInitializationContext.RegisterForPostInitialization(System.Action{Microsoft.CodeAnalysis.GeneratorPostInitializationContext}) +M:Microsoft.CodeAnalysis.GeneratorInitializationContext.RegisterForSyntaxNotifications(Microsoft.CodeAnalysis.SyntaxContextReceiverCreator) +M:Microsoft.CodeAnalysis.GeneratorInitializationContext.RegisterForSyntaxNotifications(Microsoft.CodeAnalysis.SyntaxReceiverCreator) +M:Microsoft.CodeAnalysis.GeneratorPostInitializationContext.AddSource(System.String,Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.GeneratorPostInitializationContext.AddSource(System.String,System.String) +M:Microsoft.CodeAnalysis.GeneratorPostInitializationContext.get_CancellationToken +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_Diagnostics +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_Exception +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_GeneratedSources +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_Generator +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_TrackedOutputSteps +M:Microsoft.CodeAnalysis.GeneratorRunResult.get_TrackedSteps +M:Microsoft.CodeAnalysis.GeneratorSyntaxContext.get_Node +M:Microsoft.CodeAnalysis.GeneratorSyntaxContext.get_SemanticModel +M:Microsoft.CodeAnalysis.GeneratorTimingInfo.get_ElapsedTime +M:Microsoft.CodeAnalysis.GeneratorTimingInfo.get_Generator +M:Microsoft.CodeAnalysis.IAliasSymbol.get_Target +M:Microsoft.CodeAnalysis.IAnalyzerAssemblyLoader.AddDependencyLocation(System.String) +M:Microsoft.CodeAnalysis.IAnalyzerAssemblyLoader.LoadFromPath(System.String) +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.Equals(Microsoft.CodeAnalysis.IArrayTypeSymbol) +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_CustomModifiers +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_ElementNullableAnnotation +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_ElementType +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_IsSZArray +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_LowerBounds +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_Rank +M:Microsoft.CodeAnalysis.IArrayTypeSymbol.get_Sizes +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_GlobalNamespace +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_Identity +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_IsInteractive +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_MightContainExtensionMethods +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_Modules +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_NamespaceNames +M:Microsoft.CodeAnalysis.IAssemblySymbol.get_TypeNames +M:Microsoft.CodeAnalysis.IAssemblySymbol.GetForwardedTypes +M:Microsoft.CodeAnalysis.IAssemblySymbol.GetMetadata +M:Microsoft.CodeAnalysis.IAssemblySymbol.GetTypeByMetadataName(System.String) +M:Microsoft.CodeAnalysis.IAssemblySymbol.GivesAccessTo(Microsoft.CodeAnalysis.IAssemblySymbol) +M:Microsoft.CodeAnalysis.IAssemblySymbol.ResolveForwardedType(System.String) +M:Microsoft.CodeAnalysis.ICompilationUnitSyntax.get_EndOfFileToken +M:Microsoft.CodeAnalysis.IDiscardSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.IDiscardSymbol.get_Type +M:Microsoft.CodeAnalysis.IErrorTypeSymbol.get_CandidateReason +M:Microsoft.CodeAnalysis.IErrorTypeSymbol.get_CandidateSymbols +M:Microsoft.CodeAnalysis.IEventSymbol.get_AddMethod +M:Microsoft.CodeAnalysis.IEventSymbol.get_ExplicitInterfaceImplementations +M:Microsoft.CodeAnalysis.IEventSymbol.get_IsWindowsRuntimeEvent +M:Microsoft.CodeAnalysis.IEventSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.IEventSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.IEventSymbol.get_OverriddenEvent +M:Microsoft.CodeAnalysis.IEventSymbol.get_RaiseMethod +M:Microsoft.CodeAnalysis.IEventSymbol.get_RemoveMethod +M:Microsoft.CodeAnalysis.IEventSymbol.get_Type +M:Microsoft.CodeAnalysis.IFieldSymbol.get_AssociatedSymbol +M:Microsoft.CodeAnalysis.IFieldSymbol.get_ConstantValue +M:Microsoft.CodeAnalysis.IFieldSymbol.get_CorrespondingTupleField +M:Microsoft.CodeAnalysis.IFieldSymbol.get_CustomModifiers +M:Microsoft.CodeAnalysis.IFieldSymbol.get_FixedSize +M:Microsoft.CodeAnalysis.IFieldSymbol.get_HasConstantValue +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsConst +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsExplicitlyNamedTupleElement +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsFixedSizeBuffer +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsReadOnly +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsRequired +M:Microsoft.CodeAnalysis.IFieldSymbol.get_IsVolatile +M:Microsoft.CodeAnalysis.IFieldSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.IFieldSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.IFieldSymbol.get_RefCustomModifiers +M:Microsoft.CodeAnalysis.IFieldSymbol.get_RefKind +M:Microsoft.CodeAnalysis.IFieldSymbol.get_Type +M:Microsoft.CodeAnalysis.IFunctionPointerTypeSymbol.get_Signature +M:Microsoft.CodeAnalysis.IImportScope.get_Aliases +M:Microsoft.CodeAnalysis.IImportScope.get_ExternAliases +M:Microsoft.CodeAnalysis.IImportScope.get_Imports +M:Microsoft.CodeAnalysis.IImportScope.get_XmlNamespaces +M:Microsoft.CodeAnalysis.IIncrementalGenerator.Initialize(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext) +M:Microsoft.CodeAnalysis.ILabelSymbol.get_ContainingMethod +M:Microsoft.CodeAnalysis.ILocalSymbol.get_ConstantValue +M:Microsoft.CodeAnalysis.ILocalSymbol.get_HasConstantValue +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsConst +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsFixed +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsForEach +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsFunctionValue +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsRef +M:Microsoft.CodeAnalysis.ILocalSymbol.get_IsUsing +M:Microsoft.CodeAnalysis.ILocalSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.ILocalSymbol.get_RefKind +M:Microsoft.CodeAnalysis.ILocalSymbol.get_ScopedKind +M:Microsoft.CodeAnalysis.ILocalSymbol.get_Type +M:Microsoft.CodeAnalysis.IMethodSymbol.Construct(Microsoft.CodeAnalysis.ITypeSymbol[]) +M:Microsoft.CodeAnalysis.IMethodSymbol.Construct(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.IMethodSymbol.get_Arity +M:Microsoft.CodeAnalysis.IMethodSymbol.get_AssociatedAnonymousDelegate +M:Microsoft.CodeAnalysis.IMethodSymbol.get_AssociatedSymbol +M:Microsoft.CodeAnalysis.IMethodSymbol.get_CallingConvention +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ConstructedFrom +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ExplicitInterfaceImplementations +M:Microsoft.CodeAnalysis.IMethodSymbol.get_HidesBaseMethodsByName +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsAsync +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsCheckedBuiltin +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsConditional +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsExtensionMethod +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsGenericMethod +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsInitOnly +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsPartialDefinition +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsReadOnly +M:Microsoft.CodeAnalysis.IMethodSymbol.get_IsVararg +M:Microsoft.CodeAnalysis.IMethodSymbol.get_MethodImplementationFlags +M:Microsoft.CodeAnalysis.IMethodSymbol.get_MethodKind +M:Microsoft.CodeAnalysis.IMethodSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.IMethodSymbol.get_OverriddenMethod +M:Microsoft.CodeAnalysis.IMethodSymbol.get_Parameters +M:Microsoft.CodeAnalysis.IMethodSymbol.get_PartialDefinitionPart +M:Microsoft.CodeAnalysis.IMethodSymbol.get_PartialImplementationPart +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReceiverNullableAnnotation +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReceiverType +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReducedFrom +M:Microsoft.CodeAnalysis.IMethodSymbol.get_RefCustomModifiers +M:Microsoft.CodeAnalysis.IMethodSymbol.get_RefKind +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnNullableAnnotation +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnsByRef +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnsByRefReadonly +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnsVoid +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnType +M:Microsoft.CodeAnalysis.IMethodSymbol.get_ReturnTypeCustomModifiers +M:Microsoft.CodeAnalysis.IMethodSymbol.get_TypeArgumentNullableAnnotations +M:Microsoft.CodeAnalysis.IMethodSymbol.get_TypeArguments +M:Microsoft.CodeAnalysis.IMethodSymbol.get_TypeParameters +M:Microsoft.CodeAnalysis.IMethodSymbol.get_UnmanagedCallingConventionTypes +M:Microsoft.CodeAnalysis.IMethodSymbol.GetDllImportData +M:Microsoft.CodeAnalysis.IMethodSymbol.GetReturnTypeAttributes +M:Microsoft.CodeAnalysis.IMethodSymbol.GetTypeInferredDuringReduction(Microsoft.CodeAnalysis.ITypeParameterSymbol) +M:Microsoft.CodeAnalysis.IMethodSymbol.ReduceExtensionMethod(Microsoft.CodeAnalysis.ITypeSymbol) +M:Microsoft.CodeAnalysis.IModuleSymbol.get_GlobalNamespace +M:Microsoft.CodeAnalysis.IModuleSymbol.get_ReferencedAssemblies +M:Microsoft.CodeAnalysis.IModuleSymbol.get_ReferencedAssemblySymbols +M:Microsoft.CodeAnalysis.IModuleSymbol.GetMetadata +M:Microsoft.CodeAnalysis.IModuleSymbol.GetModuleNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.ImportedNamespaceOrType.get_DeclaringSyntaxReference +M:Microsoft.CodeAnalysis.ImportedNamespaceOrType.get_NamespaceOrType +M:Microsoft.CodeAnalysis.ImportedXmlNamespace.get_DeclaringSyntaxReference +M:Microsoft.CodeAnalysis.ImportedXmlNamespace.get_XmlNamespace +M:Microsoft.CodeAnalysis.INamedTypeSymbol.Construct(Microsoft.CodeAnalysis.ITypeSymbol[]) +M:Microsoft.CodeAnalysis.INamedTypeSymbol.Construct(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.ITypeSymbol},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.NullableAnnotation}) +M:Microsoft.CodeAnalysis.INamedTypeSymbol.ConstructUnboundGenericType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_Arity +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_AssociatedSymbol +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_ConstructedFrom +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_Constructors +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_DelegateInvokeMethod +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_EnumUnderlyingType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_InstanceConstructors +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsComImport +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsFileLocal +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsGenericType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsImplicitClass +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsScriptClass +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsSerializable +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_IsUnboundGenericType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_MemberNames +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_MightContainExtensionMethods +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_NativeIntegerUnderlyingType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_StaticConstructors +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_TupleElements +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_TupleUnderlyingType +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_TypeArgumentNullableAnnotations +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_TypeArguments +M:Microsoft.CodeAnalysis.INamedTypeSymbol.get_TypeParameters +M:Microsoft.CodeAnalysis.INamedTypeSymbol.GetTypeArgumentCustomModifiers(System.Int32) +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.get_IsNamespace +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.get_IsType +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.GetMembers +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.GetMembers(System.String) +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.GetTypeMembers +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.GetTypeMembers(System.String) +M:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol.GetTypeMembers(System.String,System.Int32) +M:Microsoft.CodeAnalysis.INamespaceSymbol.get_ConstituentNamespaces +M:Microsoft.CodeAnalysis.INamespaceSymbol.get_ContainingCompilation +M:Microsoft.CodeAnalysis.INamespaceSymbol.get_IsGlobalNamespace +M:Microsoft.CodeAnalysis.INamespaceSymbol.get_NamespaceKind +M:Microsoft.CodeAnalysis.INamespaceSymbol.GetMembers +M:Microsoft.CodeAnalysis.INamespaceSymbol.GetMembers(System.String) +M:Microsoft.CodeAnalysis.INamespaceSymbol.GetNamespaceMembers +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_AdditionalTextsProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_AnalyzerConfigOptionsProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_CompilationProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_MetadataReferencesProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_ParseOptionsProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.get_SyntaxProvider +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.RegisterImplementationSourceOutput``1(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Action{Microsoft.CodeAnalysis.SourceProductionContext,``0}) +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.RegisterImplementationSourceOutput``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Action{Microsoft.CodeAnalysis.SourceProductionContext,``0}) +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.RegisterPostInitializationOutput(System.Action{Microsoft.CodeAnalysis.IncrementalGeneratorPostInitializationContext}) +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.RegisterSourceOutput``1(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Action{Microsoft.CodeAnalysis.SourceProductionContext,``0}) +M:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext.RegisterSourceOutput``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Action{Microsoft.CodeAnalysis.SourceProductionContext,``0}) +M:Microsoft.CodeAnalysis.IncrementalGeneratorPostInitializationContext.AddSource(System.String,Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.IncrementalGeneratorPostInitializationContext.AddSource(System.String,System.String) +M:Microsoft.CodeAnalysis.IncrementalGeneratorPostInitializationContext.get_CancellationToken +M:Microsoft.CodeAnalysis.IncrementalGeneratorRunStep.get_ElapsedTime +M:Microsoft.CodeAnalysis.IncrementalGeneratorRunStep.get_Inputs +M:Microsoft.CodeAnalysis.IncrementalGeneratorRunStep.get_Name +M:Microsoft.CodeAnalysis.IncrementalGeneratorRunStep.get_Outputs +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Collect``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Combine``2(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},Microsoft.CodeAnalysis.IncrementalValueProvider{``1}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Combine``2(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},Microsoft.CodeAnalysis.IncrementalValueProvider{``1}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Select``2(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Func{``0,System.Threading.CancellationToken,``1}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Select``2(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Func{``0,System.Threading.CancellationToken,``1}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.SelectMany``2(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Func{``0,System.Threading.CancellationToken,System.Collections.Generic.IEnumerable{``1}}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.SelectMany``2(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Func{``0,System.Threading.CancellationToken,System.Collections.Immutable.ImmutableArray{``1}}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.SelectMany``2(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Func{``0,System.Threading.CancellationToken,System.Collections.Generic.IEnumerable{``1}}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.SelectMany``2(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Func{``0,System.Threading.CancellationToken,System.Collections.Immutable.ImmutableArray{``1}}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.Where``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Func{``0,System.Boolean}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.WithComparer``1(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.WithComparer``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.WithTrackingName``1(Microsoft.CodeAnalysis.IncrementalValueProvider{``0},System.String) +M:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions.WithTrackingName``1(Microsoft.CodeAnalysis.IncrementalValuesProvider{``0},System.String) +M:Microsoft.CodeAnalysis.IOperation.Accept(Microsoft.CodeAnalysis.Operations.OperationVisitor) +M:Microsoft.CodeAnalysis.IOperation.Accept``2(Microsoft.CodeAnalysis.Operations.OperationVisitor{``0,``1},``0) +M:Microsoft.CodeAnalysis.IOperation.get_ChildOperations +M:Microsoft.CodeAnalysis.IOperation.get_Children +M:Microsoft.CodeAnalysis.IOperation.get_ConstantValue +M:Microsoft.CodeAnalysis.IOperation.get_IsImplicit +M:Microsoft.CodeAnalysis.IOperation.get_Kind +M:Microsoft.CodeAnalysis.IOperation.get_Language +M:Microsoft.CodeAnalysis.IOperation.get_Parent +M:Microsoft.CodeAnalysis.IOperation.get_SemanticModel +M:Microsoft.CodeAnalysis.IOperation.get_Syntax +M:Microsoft.CodeAnalysis.IOperation.get_Type +M:Microsoft.CodeAnalysis.IOperation.OperationList.Any +M:Microsoft.CodeAnalysis.IOperation.OperationList.Enumerator.get_Current +M:Microsoft.CodeAnalysis.IOperation.OperationList.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.IOperation.OperationList.Enumerator.Reset +M:Microsoft.CodeAnalysis.IOperation.OperationList.First +M:Microsoft.CodeAnalysis.IOperation.OperationList.get_Count +M:Microsoft.CodeAnalysis.IOperation.OperationList.GetEnumerator +M:Microsoft.CodeAnalysis.IOperation.OperationList.Last +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reverse +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.Enumerator.get_Current +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.Enumerator.Reset +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.get_Count +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.GetEnumerator +M:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.ToImmutableArray +M:Microsoft.CodeAnalysis.IOperation.OperationList.ToImmutableArray +M:Microsoft.CodeAnalysis.IParameterSymbol.get_CustomModifiers +M:Microsoft.CodeAnalysis.IParameterSymbol.get_ExplicitDefaultValue +M:Microsoft.CodeAnalysis.IParameterSymbol.get_HasExplicitDefaultValue +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsDiscard +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsOptional +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsParams +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsParamsArray +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsParamsCollection +M:Microsoft.CodeAnalysis.IParameterSymbol.get_IsThis +M:Microsoft.CodeAnalysis.IParameterSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.IParameterSymbol.get_Ordinal +M:Microsoft.CodeAnalysis.IParameterSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.IParameterSymbol.get_RefCustomModifiers +M:Microsoft.CodeAnalysis.IParameterSymbol.get_RefKind +M:Microsoft.CodeAnalysis.IParameterSymbol.get_ScopedKind +M:Microsoft.CodeAnalysis.IParameterSymbol.get_Type +M:Microsoft.CodeAnalysis.IPointerTypeSymbol.get_CustomModifiers +M:Microsoft.CodeAnalysis.IPointerTypeSymbol.get_PointedAtType +M:Microsoft.CodeAnalysis.IPropertySymbol.get_ExplicitInterfaceImplementations +M:Microsoft.CodeAnalysis.IPropertySymbol.get_GetMethod +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsIndexer +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsPartialDefinition +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsReadOnly +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsRequired +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsWithEvents +M:Microsoft.CodeAnalysis.IPropertySymbol.get_IsWriteOnly +M:Microsoft.CodeAnalysis.IPropertySymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.IPropertySymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.IPropertySymbol.get_OverriddenProperty +M:Microsoft.CodeAnalysis.IPropertySymbol.get_Parameters +M:Microsoft.CodeAnalysis.IPropertySymbol.get_PartialDefinitionPart +M:Microsoft.CodeAnalysis.IPropertySymbol.get_PartialImplementationPart +M:Microsoft.CodeAnalysis.IPropertySymbol.get_RefCustomModifiers +M:Microsoft.CodeAnalysis.IPropertySymbol.get_RefKind +M:Microsoft.CodeAnalysis.IPropertySymbol.get_ReturnsByRef +M:Microsoft.CodeAnalysis.IPropertySymbol.get_ReturnsByRefReadonly +M:Microsoft.CodeAnalysis.IPropertySymbol.get_SetMethod +M:Microsoft.CodeAnalysis.IPropertySymbol.get_Type +M:Microsoft.CodeAnalysis.IPropertySymbol.get_TypeCustomModifiers +M:Microsoft.CodeAnalysis.ISkippedTokensTriviaSyntax.get_Tokens +M:Microsoft.CodeAnalysis.ISourceAssemblySymbol.get_Compilation +M:Microsoft.CodeAnalysis.ISourceGenerator.Execute(Microsoft.CodeAnalysis.GeneratorExecutionContext) +M:Microsoft.CodeAnalysis.ISourceGenerator.Initialize(Microsoft.CodeAnalysis.GeneratorInitializationContext) +M:Microsoft.CodeAnalysis.IStructuredTriviaSyntax.get_ParentTrivia +M:Microsoft.CodeAnalysis.ISymbol.Accept(Microsoft.CodeAnalysis.SymbolVisitor) +M:Microsoft.CodeAnalysis.ISymbol.Accept``1(Microsoft.CodeAnalysis.SymbolVisitor{``0}) +M:Microsoft.CodeAnalysis.ISymbol.Accept``2(Microsoft.CodeAnalysis.SymbolVisitor{``0,``1},``0) +M:Microsoft.CodeAnalysis.ISymbol.Equals(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SymbolEqualityComparer) +M:Microsoft.CodeAnalysis.ISymbol.get_CanBeReferencedByName +M:Microsoft.CodeAnalysis.ISymbol.get_ContainingAssembly +M:Microsoft.CodeAnalysis.ISymbol.get_ContainingModule +M:Microsoft.CodeAnalysis.ISymbol.get_ContainingNamespace +M:Microsoft.CodeAnalysis.ISymbol.get_ContainingSymbol +M:Microsoft.CodeAnalysis.ISymbol.get_ContainingType +M:Microsoft.CodeAnalysis.ISymbol.get_DeclaredAccessibility +M:Microsoft.CodeAnalysis.ISymbol.get_DeclaringSyntaxReferences +M:Microsoft.CodeAnalysis.ISymbol.get_HasUnsupportedMetadata +M:Microsoft.CodeAnalysis.ISymbol.get_IsAbstract +M:Microsoft.CodeAnalysis.ISymbol.get_IsDefinition +M:Microsoft.CodeAnalysis.ISymbol.get_IsExtern +M:Microsoft.CodeAnalysis.ISymbol.get_IsImplicitlyDeclared +M:Microsoft.CodeAnalysis.ISymbol.get_IsOverride +M:Microsoft.CodeAnalysis.ISymbol.get_IsSealed +M:Microsoft.CodeAnalysis.ISymbol.get_IsStatic +M:Microsoft.CodeAnalysis.ISymbol.get_IsVirtual +M:Microsoft.CodeAnalysis.ISymbol.get_Kind +M:Microsoft.CodeAnalysis.ISymbol.get_Language +M:Microsoft.CodeAnalysis.ISymbol.get_Locations +M:Microsoft.CodeAnalysis.ISymbol.get_MetadataName +M:Microsoft.CodeAnalysis.ISymbol.get_MetadataToken +M:Microsoft.CodeAnalysis.ISymbol.get_Name +M:Microsoft.CodeAnalysis.ISymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.ISymbol.GetAttributes +M:Microsoft.CodeAnalysis.ISymbol.GetDocumentationCommentId +M:Microsoft.CodeAnalysis.ISymbol.GetDocumentationCommentXml(System.Globalization.CultureInfo,System.Boolean,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ISymbol.ToDisplayParts(Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ISymbol.ToDisplayString(Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ISymbol.ToMinimalDisplayParts(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ISymbol.ToMinimalDisplayString(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ISymbolExtensions.GetConstructedReducedFrom(Microsoft.CodeAnalysis.IMethodSymbol) +M:Microsoft.CodeAnalysis.ISyntaxContextReceiver.OnVisitSyntaxNode(Microsoft.CodeAnalysis.GeneratorSyntaxContext) +M:Microsoft.CodeAnalysis.ISyntaxReceiver.OnVisitSyntaxNode(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_AllowsRefLikeType +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_ConstraintNullableAnnotations +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_ConstraintTypes +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_DeclaringMethod +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_DeclaringType +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_HasConstructorConstraint +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_HasNotNullConstraint +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_HasReferenceTypeConstraint +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_HasUnmanagedTypeConstraint +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_HasValueTypeConstraint +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_Ordinal +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_ReducedFrom +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_ReferenceTypeConstraintNullableAnnotation +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_TypeParameterKind +M:Microsoft.CodeAnalysis.ITypeParameterSymbol.get_Variance +M:Microsoft.CodeAnalysis.ITypeSymbol.FindImplementationForInterfaceMember(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.ITypeSymbol.get_AllInterfaces +M:Microsoft.CodeAnalysis.ITypeSymbol.get_BaseType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_Interfaces +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsAnonymousType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsNativeIntegerType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsReadOnly +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsRecord +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsReferenceType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsRefLikeType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsTupleType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsUnmanagedType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_IsValueType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_NullableAnnotation +M:Microsoft.CodeAnalysis.ITypeSymbol.get_OriginalDefinition +M:Microsoft.CodeAnalysis.ITypeSymbol.get_SpecialType +M:Microsoft.CodeAnalysis.ITypeSymbol.get_TypeKind +M:Microsoft.CodeAnalysis.ITypeSymbol.ToDisplayParts(Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ITypeSymbol.ToDisplayString(Microsoft.CodeAnalysis.NullableFlowState,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ITypeSymbol.ToMinimalDisplayParts(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.NullableFlowState,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ITypeSymbol.ToMinimalDisplayString(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.NullableFlowState,System.Int32,Microsoft.CodeAnalysis.SymbolDisplayFormat) +M:Microsoft.CodeAnalysis.ITypeSymbol.WithNullableAnnotation(Microsoft.CodeAnalysis.NullableAnnotation) +M:Microsoft.CodeAnalysis.LineMapping.#ctor(Microsoft.CodeAnalysis.Text.LinePositionSpan,System.Nullable{System.Int32},Microsoft.CodeAnalysis.FileLinePositionSpan) +M:Microsoft.CodeAnalysis.LineMapping.Equals(Microsoft.CodeAnalysis.LineMapping) +M:Microsoft.CodeAnalysis.LineMapping.Equals(System.Object) +M:Microsoft.CodeAnalysis.LineMapping.get_CharacterOffset +M:Microsoft.CodeAnalysis.LineMapping.get_IsHidden +M:Microsoft.CodeAnalysis.LineMapping.get_MappedSpan +M:Microsoft.CodeAnalysis.LineMapping.get_Span +M:Microsoft.CodeAnalysis.LineMapping.GetHashCode +M:Microsoft.CodeAnalysis.LineMapping.op_Equality(Microsoft.CodeAnalysis.LineMapping,Microsoft.CodeAnalysis.LineMapping) +M:Microsoft.CodeAnalysis.LineMapping.op_Inequality(Microsoft.CodeAnalysis.LineMapping,Microsoft.CodeAnalysis.LineMapping) +M:Microsoft.CodeAnalysis.LineMapping.ToString +M:Microsoft.CodeAnalysis.LocalizableResourceString.#ctor(System.String,System.Resources.ResourceManager,System.Type) +M:Microsoft.CodeAnalysis.LocalizableResourceString.#ctor(System.String,System.Resources.ResourceManager,System.Type,System.String[]) +M:Microsoft.CodeAnalysis.LocalizableResourceString.AreEqual(System.Object) +M:Microsoft.CodeAnalysis.LocalizableResourceString.GetHash +M:Microsoft.CodeAnalysis.LocalizableResourceString.GetText(System.IFormatProvider) +M:Microsoft.CodeAnalysis.LocalizableString.#ctor +M:Microsoft.CodeAnalysis.LocalizableString.add_OnException(System.EventHandler{System.Exception}) +M:Microsoft.CodeAnalysis.LocalizableString.AreEqual(System.Object) +M:Microsoft.CodeAnalysis.LocalizableString.Equals(Microsoft.CodeAnalysis.LocalizableString) +M:Microsoft.CodeAnalysis.LocalizableString.Equals(System.Object) +M:Microsoft.CodeAnalysis.LocalizableString.GetHash +M:Microsoft.CodeAnalysis.LocalizableString.GetHashCode +M:Microsoft.CodeAnalysis.LocalizableString.GetText(System.IFormatProvider) +M:Microsoft.CodeAnalysis.LocalizableString.op_Explicit(Microsoft.CodeAnalysis.LocalizableString)~System.String +M:Microsoft.CodeAnalysis.LocalizableString.op_Implicit(System.String)~Microsoft.CodeAnalysis.LocalizableString +M:Microsoft.CodeAnalysis.LocalizableString.remove_OnException(System.EventHandler{System.Exception}) +M:Microsoft.CodeAnalysis.LocalizableString.ToString +M:Microsoft.CodeAnalysis.LocalizableString.ToString(System.IFormatProvider) +M:Microsoft.CodeAnalysis.Location.Create(Microsoft.CodeAnalysis.SyntaxTree,Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Location.Create(System.String,Microsoft.CodeAnalysis.Text.TextSpan,Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Location.Create(System.String,Microsoft.CodeAnalysis.Text.TextSpan,Microsoft.CodeAnalysis.Text.LinePositionSpan,System.String,Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Location.Equals(System.Object) +M:Microsoft.CodeAnalysis.Location.get_IsInMetadata +M:Microsoft.CodeAnalysis.Location.get_IsInSource +M:Microsoft.CodeAnalysis.Location.get_Kind +M:Microsoft.CodeAnalysis.Location.get_MetadataModule +M:Microsoft.CodeAnalysis.Location.get_None +M:Microsoft.CodeAnalysis.Location.get_SourceSpan +M:Microsoft.CodeAnalysis.Location.get_SourceTree +M:Microsoft.CodeAnalysis.Location.GetDebuggerDisplay +M:Microsoft.CodeAnalysis.Location.GetHashCode +M:Microsoft.CodeAnalysis.Location.GetLineSpan +M:Microsoft.CodeAnalysis.Location.GetMappedLineSpan +M:Microsoft.CodeAnalysis.Location.op_Equality(Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.Location) +M:Microsoft.CodeAnalysis.Location.op_Inequality(Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.Location) +M:Microsoft.CodeAnalysis.Location.ToString +M:Microsoft.CodeAnalysis.Metadata.CommonCopy +M:Microsoft.CodeAnalysis.Metadata.Copy +M:Microsoft.CodeAnalysis.Metadata.Dispose +M:Microsoft.CodeAnalysis.Metadata.get_Id +M:Microsoft.CodeAnalysis.Metadata.get_Kind +M:Microsoft.CodeAnalysis.MetadataReference.#ctor(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.MetadataReference.CreateFromAssembly(System.Reflection.Assembly) +M:Microsoft.CodeAnalysis.MetadataReference.CreateFromAssembly(System.Reflection.Assembly,Microsoft.CodeAnalysis.MetadataReferenceProperties,Microsoft.CodeAnalysis.DocumentationProvider) +M:Microsoft.CodeAnalysis.MetadataReference.CreateFromImage(System.Collections.Generic.IEnumerable{System.Byte},Microsoft.CodeAnalysis.MetadataReferenceProperties,Microsoft.CodeAnalysis.DocumentationProvider,System.String) +M:Microsoft.CodeAnalysis.MetadataReference.CreateFromImage(System.Collections.Immutable.ImmutableArray{System.Byte},Microsoft.CodeAnalysis.MetadataReferenceProperties,Microsoft.CodeAnalysis.DocumentationProvider,System.String) +M:Microsoft.CodeAnalysis.MetadataReference.CreateFromStream(System.IO.Stream,Microsoft.CodeAnalysis.MetadataReferenceProperties,Microsoft.CodeAnalysis.DocumentationProvider,System.String) +M:Microsoft.CodeAnalysis.MetadataReference.get_Display +M:Microsoft.CodeAnalysis.MetadataReference.get_Properties +M:Microsoft.CodeAnalysis.MetadataReference.WithAliases(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.MetadataReference.WithAliases(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.MetadataReference.WithEmbedInteropTypes(System.Boolean) +M:Microsoft.CodeAnalysis.MetadataReference.WithProperties(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.#ctor(Microsoft.CodeAnalysis.MetadataImageKind,System.Collections.Immutable.ImmutableArray{System.String},System.Boolean) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.Equals(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.Equals(System.Object) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_Aliases +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_Assembly +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_EmbedInteropTypes +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_GlobalAlias +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_Kind +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.get_Module +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.GetHashCode +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.op_Equality(Microsoft.CodeAnalysis.MetadataReferenceProperties,Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.op_Inequality(Microsoft.CodeAnalysis.MetadataReferenceProperties,Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.WithAliases(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.WithAliases(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.MetadataReferenceProperties.WithEmbedInteropTypes(System.Boolean) +M:Microsoft.CodeAnalysis.MetadataReferenceResolver.#ctor +M:Microsoft.CodeAnalysis.MetadataReferenceResolver.Equals(System.Object) +M:Microsoft.CodeAnalysis.MetadataReferenceResolver.get_ResolveMissingAssemblies +M:Microsoft.CodeAnalysis.MetadataReferenceResolver.GetHashCode +M:Microsoft.CodeAnalysis.MetadataReferenceResolver.ResolveMissingAssembly(Microsoft.CodeAnalysis.MetadataReference,Microsoft.CodeAnalysis.AssemblyIdentity) +M:Microsoft.CodeAnalysis.MetadataReferenceResolver.ResolveReference(System.String,System.String,Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.ModelExtensions.AnalyzeControlFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.ModelExtensions.AnalyzeControlFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.ModelExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.ModelExtensions.AnalyzeDataFlow(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.ModelExtensions.GetAliasInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ModelExtensions.GetDeclaredSymbol(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ModelExtensions.GetMemberGroup(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ModelExtensions.GetSpeculativeAliasInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.ModelExtensions.GetSpeculativeSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.ModelExtensions.GetSpeculativeTypeInfo(Microsoft.CodeAnalysis.SemanticModel,System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.ModelExtensions.GetSymbolInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ModelExtensions.GetTypeInfo(Microsoft.CodeAnalysis.SemanticModel,Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.ModuleMetadata.CommonCopy +M:Microsoft.CodeAnalysis.ModuleMetadata.CreateFromFile(System.String) +M:Microsoft.CodeAnalysis.ModuleMetadata.CreateFromImage(System.Collections.Generic.IEnumerable{System.Byte}) +M:Microsoft.CodeAnalysis.ModuleMetadata.CreateFromImage(System.Collections.Immutable.ImmutableArray{System.Byte}) +M:Microsoft.CodeAnalysis.ModuleMetadata.CreateFromImage(System.IntPtr,System.Int32) +M:Microsoft.CodeAnalysis.ModuleMetadata.CreateFromMetadata(System.IntPtr,System.Int32) +M:Microsoft.CodeAnalysis.ModuleMetadata.CreateFromMetadata(System.IntPtr,System.Int32,System.Action) +M:Microsoft.CodeAnalysis.ModuleMetadata.CreateFromStream(System.IO.Stream,System.Boolean) +M:Microsoft.CodeAnalysis.ModuleMetadata.CreateFromStream(System.IO.Stream,System.Reflection.PortableExecutable.PEStreamOptions) +M:Microsoft.CodeAnalysis.ModuleMetadata.Dispose +M:Microsoft.CodeAnalysis.ModuleMetadata.get_IsDisposed +M:Microsoft.CodeAnalysis.ModuleMetadata.get_Kind +M:Microsoft.CodeAnalysis.ModuleMetadata.get_Name +M:Microsoft.CodeAnalysis.ModuleMetadata.GetMetadataReader +M:Microsoft.CodeAnalysis.ModuleMetadata.GetModuleNames +M:Microsoft.CodeAnalysis.ModuleMetadata.GetModuleVersionId +M:Microsoft.CodeAnalysis.ModuleMetadata.GetReference(Microsoft.CodeAnalysis.DocumentationProvider,System.String,System.String) +M:Microsoft.CodeAnalysis.NullabilityInfo.Equals(Microsoft.CodeAnalysis.NullabilityInfo) +M:Microsoft.CodeAnalysis.NullabilityInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.NullabilityInfo.get_Annotation +M:Microsoft.CodeAnalysis.NullabilityInfo.get_FlowState +M:Microsoft.CodeAnalysis.NullabilityInfo.GetHashCode +M:Microsoft.CodeAnalysis.NullableContextExtensions.AnnotationsEnabled(Microsoft.CodeAnalysis.NullableContext) +M:Microsoft.CodeAnalysis.NullableContextExtensions.AnnotationsInherited(Microsoft.CodeAnalysis.NullableContext) +M:Microsoft.CodeAnalysis.NullableContextExtensions.WarningsEnabled(Microsoft.CodeAnalysis.NullableContext) +M:Microsoft.CodeAnalysis.NullableContextExtensions.WarningsInherited(Microsoft.CodeAnalysis.NullableContext) +M:Microsoft.CodeAnalysis.NullableContextOptionsExtensions.AnnotationsEnabled(Microsoft.CodeAnalysis.NullableContextOptions) +M:Microsoft.CodeAnalysis.NullableContextOptionsExtensions.WarningsEnabled(Microsoft.CodeAnalysis.NullableContextOptions) +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_Exists +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsIdentity +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsImplicit +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsNullable +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsNumeric +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsReference +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_IsUserDefined +M:Microsoft.CodeAnalysis.Operations.CommonConversion.get_MethodSymbol +M:Microsoft.CodeAnalysis.Operations.IAddressOfOperation.get_Reference +M:Microsoft.CodeAnalysis.Operations.IAnonymousFunctionOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.IAnonymousFunctionOperation.get_Symbol +M:Microsoft.CodeAnalysis.Operations.IAnonymousObjectCreationOperation.get_Initializers +M:Microsoft.CodeAnalysis.Operations.IArgumentOperation.get_ArgumentKind +M:Microsoft.CodeAnalysis.Operations.IArgumentOperation.get_InConversion +M:Microsoft.CodeAnalysis.Operations.IArgumentOperation.get_OutConversion +M:Microsoft.CodeAnalysis.Operations.IArgumentOperation.get_Parameter +M:Microsoft.CodeAnalysis.Operations.IArgumentOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.IArrayCreationOperation.get_DimensionSizes +M:Microsoft.CodeAnalysis.Operations.IArrayCreationOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IArrayElementReferenceOperation.get_ArrayReference +M:Microsoft.CodeAnalysis.Operations.IArrayElementReferenceOperation.get_Indices +M:Microsoft.CodeAnalysis.Operations.IArrayInitializerOperation.get_ElementValues +M:Microsoft.CodeAnalysis.Operations.IAssignmentOperation.get_Target +M:Microsoft.CodeAnalysis.Operations.IAssignmentOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.IAttributeOperation.get_Operation +M:Microsoft.CodeAnalysis.Operations.IAwaitOperation.get_Operation +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_IsCompareText +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_IsLifted +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_LeftOperand +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_OperatorMethod +M:Microsoft.CodeAnalysis.Operations.IBinaryOperation.get_RightOperand +M:Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation.get_LeftPattern +M:Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation.get_RightPattern +M:Microsoft.CodeAnalysis.Operations.IBlockOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.IBlockOperation.get_Operations +M:Microsoft.CodeAnalysis.Operations.IBranchOperation.get_BranchKind +M:Microsoft.CodeAnalysis.Operations.IBranchOperation.get_Target +M:Microsoft.CodeAnalysis.Operations.ICaseClauseOperation.get_CaseKind +M:Microsoft.CodeAnalysis.Operations.ICaseClauseOperation.get_Label +M:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation.get_ExceptionDeclarationOrExpression +M:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation.get_ExceptionType +M:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation.get_Filter +M:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation.get_Handler +M:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.ICoalesceOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.ICoalesceOperation.get_ValueConversion +M:Microsoft.CodeAnalysis.Operations.ICoalesceOperation.get_WhenNull +M:Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation.get_AddMethod +M:Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation.get_IsDynamic +M:Microsoft.CodeAnalysis.Operations.ICollectionExpressionOperation.get_ConstructMethod +M:Microsoft.CodeAnalysis.Operations.ICollectionExpressionOperation.get_Elements +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_InConversion +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_IsLifted +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_OperatorMethod +M:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation.get_OutConversion +M:Microsoft.CodeAnalysis.Operations.IConditionalAccessOperation.get_Operation +M:Microsoft.CodeAnalysis.Operations.IConditionalAccessOperation.get_WhenNotNull +M:Microsoft.CodeAnalysis.Operations.IConditionalOperation.get_Condition +M:Microsoft.CodeAnalysis.Operations.IConditionalOperation.get_IsRef +M:Microsoft.CodeAnalysis.Operations.IConditionalOperation.get_WhenFalse +M:Microsoft.CodeAnalysis.Operations.IConditionalOperation.get_WhenTrue +M:Microsoft.CodeAnalysis.Operations.IConstantPatternOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_Conversion +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_IsTryCast +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_Operand +M:Microsoft.CodeAnalysis.Operations.IConversionOperation.get_OperatorMethod +M:Microsoft.CodeAnalysis.Operations.IDeclarationExpressionOperation.get_Expression +M:Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation.get_DeclaredSymbol +M:Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation.get_MatchedType +M:Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation.get_MatchesNull +M:Microsoft.CodeAnalysis.Operations.IDelegateCreationOperation.get_Target +M:Microsoft.CodeAnalysis.Operations.IDiscardOperation.get_DiscardSymbol +M:Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation.get_Operation +M:Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation.get_Operation +M:Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation.get_ContainingType +M:Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation.get_Instance +M:Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation.get_MemberName +M:Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation.get_TypeArguments +M:Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation.get_Adds +M:Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation.get_EventReference +M:Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation.get_HandlerValue +M:Microsoft.CodeAnalysis.Operations.IEventReferenceOperation.get_Event +M:Microsoft.CodeAnalysis.Operations.IExpressionStatementOperation.get_Operation +M:Microsoft.CodeAnalysis.Operations.IFieldInitializerOperation.get_InitializedFields +M:Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation.get_Field +M:Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation.get_IsDeclaration +M:Microsoft.CodeAnalysis.Operations.IForEachLoopOperation.get_Collection +M:Microsoft.CodeAnalysis.Operations.IForEachLoopOperation.get_IsAsynchronous +M:Microsoft.CodeAnalysis.Operations.IForEachLoopOperation.get_LoopControlVariable +M:Microsoft.CodeAnalysis.Operations.IForEachLoopOperation.get_NextVariables +M:Microsoft.CodeAnalysis.Operations.IForLoopOperation.get_AtLoopBottom +M:Microsoft.CodeAnalysis.Operations.IForLoopOperation.get_Before +M:Microsoft.CodeAnalysis.Operations.IForLoopOperation.get_Condition +M:Microsoft.CodeAnalysis.Operations.IForLoopOperation.get_ConditionLocals +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_InitialValue +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_LimitValue +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_LoopControlVariable +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_NextVariables +M:Microsoft.CodeAnalysis.Operations.IForToLoopOperation.get_StepValue +M:Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation.get_Target +M:Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation.get_Argument +M:Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation.get_IndexerSymbol +M:Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation.get_Instance +M:Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation.get_LengthSymbol +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_IsLifted +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_IsPostfix +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_OperatorMethod +M:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation.get_Target +M:Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation.get_Argument +M:Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation.get_Instance +M:Microsoft.CodeAnalysis.Operations.IInstanceReferenceOperation.get_ReferenceKind +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringAdditionOperation.get_Left +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringAdditionOperation.get_Right +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringAppendOperation.get_AppendCall +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerArgumentPlaceholderOperation.get_ArgumentIndex +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerArgumentPlaceholderOperation.get_PlaceholderKind +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation.get_Content +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation.get_HandlerAppendCallsReturnBool +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation.get_HandlerCreation +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation.get_HandlerCreationHasSuccessParameter +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringOperation.get_Parts +M:Microsoft.CodeAnalysis.Operations.IInterpolatedStringTextOperation.get_Text +M:Microsoft.CodeAnalysis.Operations.IInterpolationOperation.get_Alignment +M:Microsoft.CodeAnalysis.Operations.IInterpolationOperation.get_Expression +M:Microsoft.CodeAnalysis.Operations.IInterpolationOperation.get_FormatString +M:Microsoft.CodeAnalysis.Operations.IInvocationOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IInvocationOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IInvocationOperation.get_Instance +M:Microsoft.CodeAnalysis.Operations.IInvocationOperation.get_IsVirtual +M:Microsoft.CodeAnalysis.Operations.IInvocationOperation.get_TargetMethod +M:Microsoft.CodeAnalysis.Operations.IIsPatternOperation.get_Pattern +M:Microsoft.CodeAnalysis.Operations.IIsPatternOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.IIsTypeOperation.get_IsNegated +M:Microsoft.CodeAnalysis.Operations.IIsTypeOperation.get_TypeOperand +M:Microsoft.CodeAnalysis.Operations.IIsTypeOperation.get_ValueOperand +M:Microsoft.CodeAnalysis.Operations.ILabeledOperation.get_Label +M:Microsoft.CodeAnalysis.Operations.ILabeledOperation.get_Operation +M:Microsoft.CodeAnalysis.Operations.IListPatternOperation.get_DeclaredSymbol +M:Microsoft.CodeAnalysis.Operations.IListPatternOperation.get_IndexerSymbol +M:Microsoft.CodeAnalysis.Operations.IListPatternOperation.get_LengthSymbol +M:Microsoft.CodeAnalysis.Operations.IListPatternOperation.get_Patterns +M:Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation.get_IgnoredBody +M:Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation.get_Symbol +M:Microsoft.CodeAnalysis.Operations.ILocalReferenceOperation.get_IsDeclaration +M:Microsoft.CodeAnalysis.Operations.ILocalReferenceOperation.get_Local +M:Microsoft.CodeAnalysis.Operations.ILockOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.ILockOperation.get_LockedValue +M:Microsoft.CodeAnalysis.Operations.ILoopOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.ILoopOperation.get_ContinueLabel +M:Microsoft.CodeAnalysis.Operations.ILoopOperation.get_ExitLabel +M:Microsoft.CodeAnalysis.Operations.ILoopOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.ILoopOperation.get_LoopKind +M:Microsoft.CodeAnalysis.Operations.IMemberInitializerOperation.get_InitializedMember +M:Microsoft.CodeAnalysis.Operations.IMemberInitializerOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IMemberReferenceOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IMemberReferenceOperation.get_Instance +M:Microsoft.CodeAnalysis.Operations.IMemberReferenceOperation.get_Member +M:Microsoft.CodeAnalysis.Operations.IMethodBodyBaseOperation.get_BlockBody +M:Microsoft.CodeAnalysis.Operations.IMethodBodyBaseOperation.get_ExpressionBody +M:Microsoft.CodeAnalysis.Operations.IMethodReferenceOperation.get_IsVirtual +M:Microsoft.CodeAnalysis.Operations.IMethodReferenceOperation.get_Method +M:Microsoft.CodeAnalysis.Operations.INameOfOperation.get_Argument +M:Microsoft.CodeAnalysis.Operations.INegatedPatternOperation.get_Pattern +M:Microsoft.CodeAnalysis.Operations.IObjectCreationOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IObjectCreationOperation.get_Constructor +M:Microsoft.CodeAnalysis.Operations.IObjectCreationOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IObjectOrCollectionInitializerOperation.get_Initializers +M:Microsoft.CodeAnalysis.Operations.IParameterInitializerOperation.get_Parameter +M:Microsoft.CodeAnalysis.Operations.IParameterReferenceOperation.get_Parameter +M:Microsoft.CodeAnalysis.Operations.IParenthesizedOperation.get_Operand +M:Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation.get_Guard +M:Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation.get_Label +M:Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation.get_Pattern +M:Microsoft.CodeAnalysis.Operations.IPatternOperation.get_InputType +M:Microsoft.CodeAnalysis.Operations.IPatternOperation.get_NarrowedType +M:Microsoft.CodeAnalysis.Operations.IPropertyInitializerOperation.get_InitializedProperties +M:Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation.get_Property +M:Microsoft.CodeAnalysis.Operations.IPropertySubpatternOperation.get_Member +M:Microsoft.CodeAnalysis.Operations.IPropertySubpatternOperation.get_Pattern +M:Microsoft.CodeAnalysis.Operations.IRaiseEventOperation.get_Arguments +M:Microsoft.CodeAnalysis.Operations.IRaiseEventOperation.get_EventReference +M:Microsoft.CodeAnalysis.Operations.IRangeCaseClauseOperation.get_MaximumValue +M:Microsoft.CodeAnalysis.Operations.IRangeCaseClauseOperation.get_MinimumValue +M:Microsoft.CodeAnalysis.Operations.IRangeOperation.get_IsLifted +M:Microsoft.CodeAnalysis.Operations.IRangeOperation.get_LeftOperand +M:Microsoft.CodeAnalysis.Operations.IRangeOperation.get_Method +M:Microsoft.CodeAnalysis.Operations.IRangeOperation.get_RightOperand +M:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation.get_DeclaredSymbol +M:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation.get_DeconstructionSubpatterns +M:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation.get_DeconstructSymbol +M:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation.get_MatchedType +M:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation.get_PropertySubpatterns +M:Microsoft.CodeAnalysis.Operations.IReDimClauseOperation.get_DimensionSizes +M:Microsoft.CodeAnalysis.Operations.IReDimClauseOperation.get_Operand +M:Microsoft.CodeAnalysis.Operations.IReDimOperation.get_Clauses +M:Microsoft.CodeAnalysis.Operations.IReDimOperation.get_Preserve +M:Microsoft.CodeAnalysis.Operations.IRelationalCaseClauseOperation.get_Relation +M:Microsoft.CodeAnalysis.Operations.IRelationalCaseClauseOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.IRelationalPatternOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.IRelationalPatternOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.IReturnOperation.get_ReturnedValue +M:Microsoft.CodeAnalysis.Operations.ISimpleAssignmentOperation.get_IsRef +M:Microsoft.CodeAnalysis.Operations.ISingleValueCaseClauseOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.ISizeOfOperation.get_TypeOperand +M:Microsoft.CodeAnalysis.Operations.ISlicePatternOperation.get_Pattern +M:Microsoft.CodeAnalysis.Operations.ISlicePatternOperation.get_SliceSymbol +M:Microsoft.CodeAnalysis.Operations.ISpreadOperation.get_ElementConversion +M:Microsoft.CodeAnalysis.Operations.ISpreadOperation.get_ElementType +M:Microsoft.CodeAnalysis.Operations.ISpreadOperation.get_Operand +M:Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation.get_Clauses +M:Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation.get_Guard +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation.get_Pattern +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation.get_Arms +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation.get_IsExhaustive +M:Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.ISwitchOperation.get_Cases +M:Microsoft.CodeAnalysis.Operations.ISwitchOperation.get_ExitLabel +M:Microsoft.CodeAnalysis.Operations.ISwitchOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.ISwitchOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.ISymbolInitializerOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.ISymbolInitializerOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.IThrowOperation.get_Exception +M:Microsoft.CodeAnalysis.Operations.ITranslatedQueryOperation.get_Operation +M:Microsoft.CodeAnalysis.Operations.ITryOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.ITryOperation.get_Catches +M:Microsoft.CodeAnalysis.Operations.ITryOperation.get_ExitLabel +M:Microsoft.CodeAnalysis.Operations.ITryOperation.get_Finally +M:Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation.get_LeftOperand +M:Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation.get_RightOperand +M:Microsoft.CodeAnalysis.Operations.ITupleOperation.get_Elements +M:Microsoft.CodeAnalysis.Operations.ITupleOperation.get_NaturalType +M:Microsoft.CodeAnalysis.Operations.ITypeOfOperation.get_TypeOperand +M:Microsoft.CodeAnalysis.Operations.ITypeParameterObjectCreationOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.ITypePatternOperation.get_MatchedType +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_ConstrainedToType +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_IsChecked +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_IsLifted +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_Operand +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_OperatorKind +M:Microsoft.CodeAnalysis.Operations.IUnaryOperation.get_OperatorMethod +M:Microsoft.CodeAnalysis.Operations.IUsingDeclarationOperation.get_DeclarationGroup +M:Microsoft.CodeAnalysis.Operations.IUsingDeclarationOperation.get_IsAsynchronous +M:Microsoft.CodeAnalysis.Operations.IUsingOperation.get_Body +M:Microsoft.CodeAnalysis.Operations.IUsingOperation.get_IsAsynchronous +M:Microsoft.CodeAnalysis.Operations.IUsingOperation.get_Locals +M:Microsoft.CodeAnalysis.Operations.IUsingOperation.get_Resources +M:Microsoft.CodeAnalysis.Operations.IUtf8StringOperation.get_Value +M:Microsoft.CodeAnalysis.Operations.IVariableDeclarationGroupOperation.get_Declarations +M:Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation.get_Declarators +M:Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation.get_IgnoredDimensions +M:Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation.get_IgnoredArguments +M:Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation.get_Symbol +M:Microsoft.CodeAnalysis.Operations.IWhileLoopOperation.get_Condition +M:Microsoft.CodeAnalysis.Operations.IWhileLoopOperation.get_ConditionIsTop +M:Microsoft.CodeAnalysis.Operations.IWhileLoopOperation.get_ConditionIsUntil +M:Microsoft.CodeAnalysis.Operations.IWhileLoopOperation.get_IgnoredCondition +M:Microsoft.CodeAnalysis.Operations.IWithOperation.get_CloneMethod +M:Microsoft.CodeAnalysis.Operations.IWithOperation.get_Initializer +M:Microsoft.CodeAnalysis.Operations.IWithOperation.get_Operand +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.Descendants(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.DescendantsAndSelf(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentName(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentName(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentName(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentRefKind(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentRefKind(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetArgumentRefKind(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation,System.Int32) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetCorrespondingOperation(Microsoft.CodeAnalysis.Operations.IBranchOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetDeclaredVariables(Microsoft.CodeAnalysis.Operations.IVariableDeclarationGroupOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetDeclaredVariables(Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetFunctionPointerSignature(Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationExtensions.GetVariableInitializer(Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.#ctor +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.DefaultVisit(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.Visit(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitAddressOf(Microsoft.CodeAnalysis.Operations.IAddressOfOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitAnonymousFunction(Microsoft.CodeAnalysis.Operations.IAnonymousFunctionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitAnonymousObjectCreation(Microsoft.CodeAnalysis.Operations.IAnonymousObjectCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitArgument(Microsoft.CodeAnalysis.Operations.IArgumentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitArrayCreation(Microsoft.CodeAnalysis.Operations.IArrayCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitArrayElementReference(Microsoft.CodeAnalysis.Operations.IArrayElementReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitArrayInitializer(Microsoft.CodeAnalysis.Operations.IArrayInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitAttribute(Microsoft.CodeAnalysis.Operations.IAttributeOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitAwait(Microsoft.CodeAnalysis.Operations.IAwaitOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitBinaryOperator(Microsoft.CodeAnalysis.Operations.IBinaryOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitBinaryPattern(Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitBlock(Microsoft.CodeAnalysis.Operations.IBlockOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitBranch(Microsoft.CodeAnalysis.Operations.IBranchOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCatchClause(Microsoft.CodeAnalysis.Operations.ICatchClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCaughtException(Microsoft.CodeAnalysis.FlowAnalysis.ICaughtExceptionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCoalesce(Microsoft.CodeAnalysis.Operations.ICoalesceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCoalesceAssignment(Microsoft.CodeAnalysis.Operations.ICoalesceAssignmentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCollectionElementInitializer(Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCollectionExpression(Microsoft.CodeAnalysis.Operations.ICollectionExpressionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitCompoundAssignment(Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConditional(Microsoft.CodeAnalysis.Operations.IConditionalOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConditionalAccess(Microsoft.CodeAnalysis.Operations.IConditionalAccessOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConditionalAccessInstance(Microsoft.CodeAnalysis.Operations.IConditionalAccessInstanceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConstantPattern(Microsoft.CodeAnalysis.Operations.IConstantPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConstructorBodyOperation(Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitConversion(Microsoft.CodeAnalysis.Operations.IConversionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDeclarationExpression(Microsoft.CodeAnalysis.Operations.IDeclarationExpressionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDeclarationPattern(Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDeconstructionAssignment(Microsoft.CodeAnalysis.Operations.IDeconstructionAssignmentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDefaultCaseClause(Microsoft.CodeAnalysis.Operations.IDefaultCaseClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDefaultValue(Microsoft.CodeAnalysis.Operations.IDefaultValueOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDelegateCreation(Microsoft.CodeAnalysis.Operations.IDelegateCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDiscardOperation(Microsoft.CodeAnalysis.Operations.IDiscardOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDiscardPattern(Microsoft.CodeAnalysis.Operations.IDiscardPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDynamicIndexerAccess(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDynamicInvocation(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDynamicMemberReference(Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitDynamicObjectCreation(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitEmpty(Microsoft.CodeAnalysis.Operations.IEmptyOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitEnd(Microsoft.CodeAnalysis.Operations.IEndOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitEventAssignment(Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitEventReference(Microsoft.CodeAnalysis.Operations.IEventReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitExpressionStatement(Microsoft.CodeAnalysis.Operations.IExpressionStatementOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFieldInitializer(Microsoft.CodeAnalysis.Operations.IFieldInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFieldReference(Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFlowAnonymousFunction(Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFlowCapture(Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFlowCaptureReference(Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitForEachLoop(Microsoft.CodeAnalysis.Operations.IForEachLoopOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitForLoop(Microsoft.CodeAnalysis.Operations.IForLoopOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitForToLoop(Microsoft.CodeAnalysis.Operations.IForToLoopOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitFunctionPointerInvocation(Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitImplicitIndexerReference(Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitIncrementOrDecrement(Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInlineArrayAccess(Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInstanceReference(Microsoft.CodeAnalysis.Operations.IInstanceReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedString(Microsoft.CodeAnalysis.Operations.IInterpolatedStringOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedStringAddition(Microsoft.CodeAnalysis.Operations.IInterpolatedStringAdditionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedStringAppend(Microsoft.CodeAnalysis.Operations.IInterpolatedStringAppendOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedStringHandlerArgumentPlaceholder(Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerArgumentPlaceholderOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedStringHandlerCreation(Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolatedStringText(Microsoft.CodeAnalysis.Operations.IInterpolatedStringTextOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInterpolation(Microsoft.CodeAnalysis.Operations.IInterpolationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInvalid(Microsoft.CodeAnalysis.Operations.IInvalidOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitInvocation(Microsoft.CodeAnalysis.Operations.IInvocationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitIsNull(Microsoft.CodeAnalysis.FlowAnalysis.IIsNullOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitIsPattern(Microsoft.CodeAnalysis.Operations.IIsPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitIsType(Microsoft.CodeAnalysis.Operations.IIsTypeOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitLabeled(Microsoft.CodeAnalysis.Operations.ILabeledOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitListPattern(Microsoft.CodeAnalysis.Operations.IListPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitLiteral(Microsoft.CodeAnalysis.Operations.ILiteralOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitLocalFunction(Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitLocalReference(Microsoft.CodeAnalysis.Operations.ILocalReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitLock(Microsoft.CodeAnalysis.Operations.ILockOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitMemberInitializer(Microsoft.CodeAnalysis.Operations.IMemberInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitMethodBodyOperation(Microsoft.CodeAnalysis.Operations.IMethodBodyOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitMethodReference(Microsoft.CodeAnalysis.Operations.IMethodReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitNameOf(Microsoft.CodeAnalysis.Operations.INameOfOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitNegatedPattern(Microsoft.CodeAnalysis.Operations.INegatedPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitObjectCreation(Microsoft.CodeAnalysis.Operations.IObjectCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitObjectOrCollectionInitializer(Microsoft.CodeAnalysis.Operations.IObjectOrCollectionInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitOmittedArgument(Microsoft.CodeAnalysis.Operations.IOmittedArgumentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitParameterInitializer(Microsoft.CodeAnalysis.Operations.IParameterInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitParameterReference(Microsoft.CodeAnalysis.Operations.IParameterReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitParenthesized(Microsoft.CodeAnalysis.Operations.IParenthesizedOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitPatternCaseClause(Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitPropertyInitializer(Microsoft.CodeAnalysis.Operations.IPropertyInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitPropertyReference(Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitPropertySubpattern(Microsoft.CodeAnalysis.Operations.IPropertySubpatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRaiseEvent(Microsoft.CodeAnalysis.Operations.IRaiseEventOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRangeCaseClause(Microsoft.CodeAnalysis.Operations.IRangeCaseClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRangeOperation(Microsoft.CodeAnalysis.Operations.IRangeOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRecursivePattern(Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitReDim(Microsoft.CodeAnalysis.Operations.IReDimOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitReDimClause(Microsoft.CodeAnalysis.Operations.IReDimClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRelationalCaseClause(Microsoft.CodeAnalysis.Operations.IRelationalCaseClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitRelationalPattern(Microsoft.CodeAnalysis.Operations.IRelationalPatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitReturn(Microsoft.CodeAnalysis.Operations.IReturnOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSimpleAssignment(Microsoft.CodeAnalysis.Operations.ISimpleAssignmentOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSingleValueCaseClause(Microsoft.CodeAnalysis.Operations.ISingleValueCaseClauseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSizeOf(Microsoft.CodeAnalysis.Operations.ISizeOfOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSlicePattern(Microsoft.CodeAnalysis.Operations.ISlicePatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSpread(Microsoft.CodeAnalysis.Operations.ISpreadOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitStaticLocalInitializationSemaphore(Microsoft.CodeAnalysis.FlowAnalysis.IStaticLocalInitializationSemaphoreOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitStop(Microsoft.CodeAnalysis.Operations.IStopOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSwitch(Microsoft.CodeAnalysis.Operations.ISwitchOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSwitchCase(Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSwitchExpression(Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitSwitchExpressionArm(Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitThrow(Microsoft.CodeAnalysis.Operations.IThrowOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTranslatedQuery(Microsoft.CodeAnalysis.Operations.ITranslatedQueryOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTry(Microsoft.CodeAnalysis.Operations.ITryOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTuple(Microsoft.CodeAnalysis.Operations.ITupleOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTupleBinaryOperator(Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTypeOf(Microsoft.CodeAnalysis.Operations.ITypeOfOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTypeParameterObjectCreation(Microsoft.CodeAnalysis.Operations.ITypeParameterObjectCreationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitTypePattern(Microsoft.CodeAnalysis.Operations.ITypePatternOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitUnaryOperator(Microsoft.CodeAnalysis.Operations.IUnaryOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitUsing(Microsoft.CodeAnalysis.Operations.IUsingOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitUsingDeclaration(Microsoft.CodeAnalysis.Operations.IUsingDeclarationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitUtf8String(Microsoft.CodeAnalysis.Operations.IUtf8StringOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitVariableDeclaration(Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitVariableDeclarationGroup(Microsoft.CodeAnalysis.Operations.IVariableDeclarationGroupOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitVariableDeclarator(Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitVariableInitializer(Microsoft.CodeAnalysis.Operations.IVariableInitializerOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitWhileLoop(Microsoft.CodeAnalysis.Operations.IWhileLoopOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor.VisitWith(Microsoft.CodeAnalysis.Operations.IWithOperation) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.#ctor +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.DefaultVisit(Microsoft.CodeAnalysis.IOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.Visit(Microsoft.CodeAnalysis.IOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitAddressOf(Microsoft.CodeAnalysis.Operations.IAddressOfOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitAnonymousFunction(Microsoft.CodeAnalysis.Operations.IAnonymousFunctionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitAnonymousObjectCreation(Microsoft.CodeAnalysis.Operations.IAnonymousObjectCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitArgument(Microsoft.CodeAnalysis.Operations.IArgumentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitArrayCreation(Microsoft.CodeAnalysis.Operations.IArrayCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitArrayElementReference(Microsoft.CodeAnalysis.Operations.IArrayElementReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitArrayInitializer(Microsoft.CodeAnalysis.Operations.IArrayInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitAttribute(Microsoft.CodeAnalysis.Operations.IAttributeOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitAwait(Microsoft.CodeAnalysis.Operations.IAwaitOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitBinaryOperator(Microsoft.CodeAnalysis.Operations.IBinaryOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitBinaryPattern(Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitBlock(Microsoft.CodeAnalysis.Operations.IBlockOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitBranch(Microsoft.CodeAnalysis.Operations.IBranchOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCatchClause(Microsoft.CodeAnalysis.Operations.ICatchClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCaughtException(Microsoft.CodeAnalysis.FlowAnalysis.ICaughtExceptionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCoalesce(Microsoft.CodeAnalysis.Operations.ICoalesceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCoalesceAssignment(Microsoft.CodeAnalysis.Operations.ICoalesceAssignmentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCollectionElementInitializer(Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCollectionExpression(Microsoft.CodeAnalysis.Operations.ICollectionExpressionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitCompoundAssignment(Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConditional(Microsoft.CodeAnalysis.Operations.IConditionalOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConditionalAccess(Microsoft.CodeAnalysis.Operations.IConditionalAccessOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConditionalAccessInstance(Microsoft.CodeAnalysis.Operations.IConditionalAccessInstanceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConstantPattern(Microsoft.CodeAnalysis.Operations.IConstantPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConstructorBodyOperation(Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitConversion(Microsoft.CodeAnalysis.Operations.IConversionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDeclarationExpression(Microsoft.CodeAnalysis.Operations.IDeclarationExpressionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDeclarationPattern(Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDeconstructionAssignment(Microsoft.CodeAnalysis.Operations.IDeconstructionAssignmentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDefaultCaseClause(Microsoft.CodeAnalysis.Operations.IDefaultCaseClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDefaultValue(Microsoft.CodeAnalysis.Operations.IDefaultValueOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDelegateCreation(Microsoft.CodeAnalysis.Operations.IDelegateCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDiscardOperation(Microsoft.CodeAnalysis.Operations.IDiscardOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDiscardPattern(Microsoft.CodeAnalysis.Operations.IDiscardPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDynamicIndexerAccess(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDynamicInvocation(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDynamicMemberReference(Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitDynamicObjectCreation(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitEmpty(Microsoft.CodeAnalysis.Operations.IEmptyOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitEnd(Microsoft.CodeAnalysis.Operations.IEndOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitEventAssignment(Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitEventReference(Microsoft.CodeAnalysis.Operations.IEventReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitExpressionStatement(Microsoft.CodeAnalysis.Operations.IExpressionStatementOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFieldInitializer(Microsoft.CodeAnalysis.Operations.IFieldInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFieldReference(Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFlowAnonymousFunction(Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFlowCapture(Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFlowCaptureReference(Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitForEachLoop(Microsoft.CodeAnalysis.Operations.IForEachLoopOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitForLoop(Microsoft.CodeAnalysis.Operations.IForLoopOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitForToLoop(Microsoft.CodeAnalysis.Operations.IForToLoopOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitFunctionPointerInvocation(Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitImplicitIndexerReference(Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitIncrementOrDecrement(Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInlineArrayAccess(Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInstanceReference(Microsoft.CodeAnalysis.Operations.IInstanceReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedString(Microsoft.CodeAnalysis.Operations.IInterpolatedStringOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedStringAddition(Microsoft.CodeAnalysis.Operations.IInterpolatedStringAdditionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedStringAppend(Microsoft.CodeAnalysis.Operations.IInterpolatedStringAppendOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedStringHandlerArgumentPlaceholder(Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerArgumentPlaceholderOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedStringHandlerCreation(Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolatedStringText(Microsoft.CodeAnalysis.Operations.IInterpolatedStringTextOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInterpolation(Microsoft.CodeAnalysis.Operations.IInterpolationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInvalid(Microsoft.CodeAnalysis.Operations.IInvalidOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitInvocation(Microsoft.CodeAnalysis.Operations.IInvocationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitIsNull(Microsoft.CodeAnalysis.FlowAnalysis.IIsNullOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitIsPattern(Microsoft.CodeAnalysis.Operations.IIsPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitIsType(Microsoft.CodeAnalysis.Operations.IIsTypeOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitLabeled(Microsoft.CodeAnalysis.Operations.ILabeledOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitListPattern(Microsoft.CodeAnalysis.Operations.IListPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitLiteral(Microsoft.CodeAnalysis.Operations.ILiteralOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitLocalFunction(Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitLocalReference(Microsoft.CodeAnalysis.Operations.ILocalReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitLock(Microsoft.CodeAnalysis.Operations.ILockOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitMemberInitializer(Microsoft.CodeAnalysis.Operations.IMemberInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitMethodBodyOperation(Microsoft.CodeAnalysis.Operations.IMethodBodyOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitMethodReference(Microsoft.CodeAnalysis.Operations.IMethodReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitNameOf(Microsoft.CodeAnalysis.Operations.INameOfOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitNegatedPattern(Microsoft.CodeAnalysis.Operations.INegatedPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitObjectCreation(Microsoft.CodeAnalysis.Operations.IObjectCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitObjectOrCollectionInitializer(Microsoft.CodeAnalysis.Operations.IObjectOrCollectionInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitOmittedArgument(Microsoft.CodeAnalysis.Operations.IOmittedArgumentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitParameterInitializer(Microsoft.CodeAnalysis.Operations.IParameterInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitParameterReference(Microsoft.CodeAnalysis.Operations.IParameterReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitParenthesized(Microsoft.CodeAnalysis.Operations.IParenthesizedOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitPatternCaseClause(Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitPropertyInitializer(Microsoft.CodeAnalysis.Operations.IPropertyInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitPropertyReference(Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitPropertySubpattern(Microsoft.CodeAnalysis.Operations.IPropertySubpatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRaiseEvent(Microsoft.CodeAnalysis.Operations.IRaiseEventOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRangeCaseClause(Microsoft.CodeAnalysis.Operations.IRangeCaseClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRangeOperation(Microsoft.CodeAnalysis.Operations.IRangeOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRecursivePattern(Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitReDim(Microsoft.CodeAnalysis.Operations.IReDimOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitReDimClause(Microsoft.CodeAnalysis.Operations.IReDimClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRelationalCaseClause(Microsoft.CodeAnalysis.Operations.IRelationalCaseClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitRelationalPattern(Microsoft.CodeAnalysis.Operations.IRelationalPatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitReturn(Microsoft.CodeAnalysis.Operations.IReturnOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSimpleAssignment(Microsoft.CodeAnalysis.Operations.ISimpleAssignmentOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSingleValueCaseClause(Microsoft.CodeAnalysis.Operations.ISingleValueCaseClauseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSizeOf(Microsoft.CodeAnalysis.Operations.ISizeOfOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSlicePattern(Microsoft.CodeAnalysis.Operations.ISlicePatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSpread(Microsoft.CodeAnalysis.Operations.ISpreadOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitStaticLocalInitializationSemaphore(Microsoft.CodeAnalysis.FlowAnalysis.IStaticLocalInitializationSemaphoreOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitStop(Microsoft.CodeAnalysis.Operations.IStopOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSwitch(Microsoft.CodeAnalysis.Operations.ISwitchOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSwitchCase(Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSwitchExpression(Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitSwitchExpressionArm(Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitThrow(Microsoft.CodeAnalysis.Operations.IThrowOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTranslatedQuery(Microsoft.CodeAnalysis.Operations.ITranslatedQueryOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTry(Microsoft.CodeAnalysis.Operations.ITryOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTuple(Microsoft.CodeAnalysis.Operations.ITupleOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTupleBinaryOperator(Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTypeOf(Microsoft.CodeAnalysis.Operations.ITypeOfOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTypeParameterObjectCreation(Microsoft.CodeAnalysis.Operations.ITypeParameterObjectCreationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitTypePattern(Microsoft.CodeAnalysis.Operations.ITypePatternOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitUnaryOperator(Microsoft.CodeAnalysis.Operations.IUnaryOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitUsing(Microsoft.CodeAnalysis.Operations.IUsingOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitUsingDeclaration(Microsoft.CodeAnalysis.Operations.IUsingDeclarationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitUtf8String(Microsoft.CodeAnalysis.Operations.IUtf8StringOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitVariableDeclaration(Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitVariableDeclarationGroup(Microsoft.CodeAnalysis.Operations.IVariableDeclarationGroupOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitVariableDeclarator(Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitVariableInitializer(Microsoft.CodeAnalysis.Operations.IVariableInitializerOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitWhileLoop(Microsoft.CodeAnalysis.Operations.IWhileLoopOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationVisitor`2.VisitWith(Microsoft.CodeAnalysis.Operations.IWithOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationWalker.#ctor +M:Microsoft.CodeAnalysis.Operations.OperationWalker.DefaultVisit(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationWalker.Visit(Microsoft.CodeAnalysis.IOperation) +M:Microsoft.CodeAnalysis.Operations.OperationWalker`1.#ctor +M:Microsoft.CodeAnalysis.Operations.OperationWalker`1.DefaultVisit(Microsoft.CodeAnalysis.IOperation,`0) +M:Microsoft.CodeAnalysis.Operations.OperationWalker`1.Visit(Microsoft.CodeAnalysis.IOperation,`0) +M:Microsoft.CodeAnalysis.Optional`1.#ctor(`0) +M:Microsoft.CodeAnalysis.Optional`1.get_HasValue +M:Microsoft.CodeAnalysis.Optional`1.get_Value +M:Microsoft.CodeAnalysis.Optional`1.op_Implicit(`0)~Microsoft.CodeAnalysis.Optional{`0} +M:Microsoft.CodeAnalysis.Optional`1.ToString +M:Microsoft.CodeAnalysis.ParseOptions.CommonWithDocumentationMode(Microsoft.CodeAnalysis.DocumentationMode) +M:Microsoft.CodeAnalysis.ParseOptions.CommonWithFeatures(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}}) +M:Microsoft.CodeAnalysis.ParseOptions.CommonWithKind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.ParseOptions.Equals(System.Object) +M:Microsoft.CodeAnalysis.ParseOptions.EqualsHelper(Microsoft.CodeAnalysis.ParseOptions) +M:Microsoft.CodeAnalysis.ParseOptions.get_DocumentationMode +M:Microsoft.CodeAnalysis.ParseOptions.get_Errors +M:Microsoft.CodeAnalysis.ParseOptions.get_Features +M:Microsoft.CodeAnalysis.ParseOptions.get_Kind +M:Microsoft.CodeAnalysis.ParseOptions.get_Language +M:Microsoft.CodeAnalysis.ParseOptions.get_PreprocessorSymbolNames +M:Microsoft.CodeAnalysis.ParseOptions.get_SpecifiedKind +M:Microsoft.CodeAnalysis.ParseOptions.GetHashCode +M:Microsoft.CodeAnalysis.ParseOptions.GetHashCodeHelper +M:Microsoft.CodeAnalysis.ParseOptions.op_Equality(Microsoft.CodeAnalysis.ParseOptions,Microsoft.CodeAnalysis.ParseOptions) +M:Microsoft.CodeAnalysis.ParseOptions.op_Inequality(Microsoft.CodeAnalysis.ParseOptions,Microsoft.CodeAnalysis.ParseOptions) +M:Microsoft.CodeAnalysis.ParseOptions.set_DocumentationMode(Microsoft.CodeAnalysis.DocumentationMode) +M:Microsoft.CodeAnalysis.ParseOptions.set_Kind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.ParseOptions.set_SpecifiedKind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.ParseOptions.WithDocumentationMode(Microsoft.CodeAnalysis.DocumentationMode) +M:Microsoft.CodeAnalysis.ParseOptions.WithFeatures(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}}) +M:Microsoft.CodeAnalysis.ParseOptions.WithKind(Microsoft.CodeAnalysis.SourceCodeKind) +M:Microsoft.CodeAnalysis.PortableExecutableReference.#ctor(Microsoft.CodeAnalysis.MetadataReferenceProperties,System.String,Microsoft.CodeAnalysis.DocumentationProvider) +M:Microsoft.CodeAnalysis.PortableExecutableReference.CreateDocumentationProvider +M:Microsoft.CodeAnalysis.PortableExecutableReference.get_Display +M:Microsoft.CodeAnalysis.PortableExecutableReference.get_FilePath +M:Microsoft.CodeAnalysis.PortableExecutableReference.GetMetadata +M:Microsoft.CodeAnalysis.PortableExecutableReference.GetMetadataId +M:Microsoft.CodeAnalysis.PortableExecutableReference.GetMetadataImpl +M:Microsoft.CodeAnalysis.PortableExecutableReference.WithAliases(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.PortableExecutableReference.WithAliases(System.Collections.Immutable.ImmutableArray{System.String}) +M:Microsoft.CodeAnalysis.PortableExecutableReference.WithEmbedInteropTypes(System.Boolean) +M:Microsoft.CodeAnalysis.PortableExecutableReference.WithProperties(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.PortableExecutableReference.WithPropertiesImpl(Microsoft.CodeAnalysis.MetadataReferenceProperties) +M:Microsoft.CodeAnalysis.PreprocessingSymbolInfo.Equals(Microsoft.CodeAnalysis.PreprocessingSymbolInfo) +M:Microsoft.CodeAnalysis.PreprocessingSymbolInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.PreprocessingSymbolInfo.get_IsDefined +M:Microsoft.CodeAnalysis.PreprocessingSymbolInfo.get_Symbol +M:Microsoft.CodeAnalysis.PreprocessingSymbolInfo.GetHashCode +M:Microsoft.CodeAnalysis.ResourceDescription.#ctor(System.String,System.Func{System.IO.Stream},System.Boolean) +M:Microsoft.CodeAnalysis.ResourceDescription.#ctor(System.String,System.String,System.Func{System.IO.Stream},System.Boolean) +M:Microsoft.CodeAnalysis.RuleSet.#ctor(System.String,Microsoft.CodeAnalysis.ReportDiagnostic,System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic},System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.RuleSetInclude}) +M:Microsoft.CodeAnalysis.RuleSet.get_FilePath +M:Microsoft.CodeAnalysis.RuleSet.get_GeneralDiagnosticOption +M:Microsoft.CodeAnalysis.RuleSet.get_Includes +M:Microsoft.CodeAnalysis.RuleSet.get_SpecificDiagnosticOptions +M:Microsoft.CodeAnalysis.RuleSet.GetDiagnosticOptionsFromRulesetFile(System.String,System.Collections.Generic.Dictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}@) +M:Microsoft.CodeAnalysis.RuleSet.GetEffectiveIncludesFromFile(System.String) +M:Microsoft.CodeAnalysis.RuleSet.LoadEffectiveRuleSetFromFile(System.String) +M:Microsoft.CodeAnalysis.RuleSet.WithEffectiveAction(Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.RuleSetInclude.#ctor(System.String,Microsoft.CodeAnalysis.ReportDiagnostic) +M:Microsoft.CodeAnalysis.RuleSetInclude.get_Action +M:Microsoft.CodeAnalysis.RuleSetInclude.get_IncludePath +M:Microsoft.CodeAnalysis.RuleSetInclude.LoadRuleSet(Microsoft.CodeAnalysis.RuleSet) +M:Microsoft.CodeAnalysis.SarifVersionFacts.TryParse(System.String,Microsoft.CodeAnalysis.SarifVersion@) +M:Microsoft.CodeAnalysis.ScriptCompilationInfo.get_GlobalsType +M:Microsoft.CodeAnalysis.ScriptCompilationInfo.get_PreviousScriptCompilation +M:Microsoft.CodeAnalysis.ScriptCompilationInfo.get_ReturnType +M:Microsoft.CodeAnalysis.ScriptCompilationInfo.WithPreviousScriptCompilation(Microsoft.CodeAnalysis.Compilation) +M:Microsoft.CodeAnalysis.SemanticModel.#ctor +M:Microsoft.CodeAnalysis.SemanticModel.AnalyzeControlFlowCore(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.AnalyzeControlFlowCore(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.AnalyzeDataFlowCore(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.AnalyzeDataFlowCore(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.get_Compilation +M:Microsoft.CodeAnalysis.SemanticModel.get_CompilationCore +M:Microsoft.CodeAnalysis.SemanticModel.get_IgnoresAccessibility +M:Microsoft.CodeAnalysis.SemanticModel.get_IsSpeculativeSemanticModel +M:Microsoft.CodeAnalysis.SemanticModel.get_Language +M:Microsoft.CodeAnalysis.SemanticModel.get_NullableAnalysisIsDisabled +M:Microsoft.CodeAnalysis.SemanticModel.get_OriginalPositionForSpeculation +M:Microsoft.CodeAnalysis.SemanticModel.get_ParentModel +M:Microsoft.CodeAnalysis.SemanticModel.get_ParentModelCore +M:Microsoft.CodeAnalysis.SemanticModel.get_RootCore +M:Microsoft.CodeAnalysis.SemanticModel.get_SyntaxTree +M:Microsoft.CodeAnalysis.SemanticModel.get_SyntaxTreeCore +M:Microsoft.CodeAnalysis.SemanticModel.GetAliasInfoCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetConstantValue(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetConstantValueCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetDeclarationDiagnostics(System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetDeclaredSymbolCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetDeclaredSymbolsCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetDiagnostics(System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetEnclosingSymbol(System.Int32,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetEnclosingSymbolCore(System.Int32,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetImportScopes(System.Int32,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetMemberGroupCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetMethodBodyDiagnostics(System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetNullableContext(System.Int32) +M:Microsoft.CodeAnalysis.SemanticModel.GetOperation(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetOperationCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetPreprocessingSymbolInfo(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.GetPreprocessingSymbolInfoCore(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.GetSpeculativeAliasInfoCore(System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.SemanticModel.GetSpeculativeSymbolInfoCore(System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.SemanticModel.GetSpeculativeTypeInfoCore(System.Int32,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SpeculativeBindingOption) +M:Microsoft.CodeAnalysis.SemanticModel.GetSymbolInfoCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetSyntaxDiagnostics(System.Nullable{Microsoft.CodeAnalysis.Text.TextSpan},System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.GetTopmostNodeForDiagnosticAnalysis(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SemanticModel.GetTypeInfoCore(Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SemanticModel.IsAccessible(System.Int32,Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SemanticModel.IsAccessibleCore(System.Int32,Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SemanticModel.IsEventUsableAsField(System.Int32,Microsoft.CodeAnalysis.IEventSymbol) +M:Microsoft.CodeAnalysis.SemanticModel.IsEventUsableAsFieldCore(System.Int32,Microsoft.CodeAnalysis.IEventSymbol) +M:Microsoft.CodeAnalysis.SemanticModel.LookupBaseMembers(System.Int32,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupBaseMembersCore(System.Int32,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupLabels(System.Int32,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupLabelsCore(System.Int32,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupNamespacesAndTypes(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupNamespacesAndTypesCore(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupStaticMembers(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupStaticMembersCore(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String) +M:Microsoft.CodeAnalysis.SemanticModel.LookupSymbols(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.SemanticModel.LookupSymbolsCore(System.Int32,Microsoft.CodeAnalysis.INamespaceOrTypeSymbol,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList.Create``1(System.ReadOnlySpan{``0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Add(`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Any +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Contains(`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator.Reset +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Equals(Microsoft.CodeAnalysis.SeparatedSyntaxList{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Equals(System.Object) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.First +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.FirstOrDefault +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.get_Count +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.get_FullSpan +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.get_SeparatorCount +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.get_Span +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.GetEnumerator +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.GetHashCode +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.GetSeparator(System.Int32) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.GetSeparators +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.GetWithSeparators +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.IndexOf(`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.IndexOf(System.Func{`0,System.Boolean}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Insert(System.Int32,`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Last +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.LastIndexOf(`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.LastIndexOf(System.Func{`0,System.Boolean}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.LastOrDefault +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.op_Equality(Microsoft.CodeAnalysis.SeparatedSyntaxList{`0},Microsoft.CodeAnalysis.SeparatedSyntaxList{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.op_Explicit(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.SyntaxNode})~Microsoft.CodeAnalysis.SeparatedSyntaxList{`0} +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.op_Implicit(Microsoft.CodeAnalysis.SeparatedSyntaxList{`0})~Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.SyntaxNode} +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.op_Implicit(Microsoft.CodeAnalysis.SeparatedSyntaxList{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.op_Inequality(Microsoft.CodeAnalysis.SeparatedSyntaxList{`0},Microsoft.CodeAnalysis.SeparatedSyntaxList{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Remove(`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.RemoveAt(System.Int32) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Replace(`0,`0) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.ReplaceRange(`0,System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.ReplaceSeparator(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.ToFullString +M:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.ToString +M:Microsoft.CodeAnalysis.SourceFileResolver.#ctor(System.Collections.Generic.IEnumerable{System.String},System.String) +M:Microsoft.CodeAnalysis.SourceFileResolver.#ctor(System.Collections.Immutable.ImmutableArray{System.String},System.String) +M:Microsoft.CodeAnalysis.SourceFileResolver.#ctor(System.Collections.Immutable.ImmutableArray{System.String},System.String,System.Collections.Immutable.ImmutableArray{System.Collections.Generic.KeyValuePair{System.String,System.String}}) +M:Microsoft.CodeAnalysis.SourceFileResolver.Equals(Microsoft.CodeAnalysis.SourceFileResolver) +M:Microsoft.CodeAnalysis.SourceFileResolver.Equals(System.Object) +M:Microsoft.CodeAnalysis.SourceFileResolver.FileExists(System.String) +M:Microsoft.CodeAnalysis.SourceFileResolver.get_BaseDirectory +M:Microsoft.CodeAnalysis.SourceFileResolver.get_Default +M:Microsoft.CodeAnalysis.SourceFileResolver.get_PathMap +M:Microsoft.CodeAnalysis.SourceFileResolver.get_SearchPaths +M:Microsoft.CodeAnalysis.SourceFileResolver.GetHashCode +M:Microsoft.CodeAnalysis.SourceFileResolver.NormalizePath(System.String,System.String) +M:Microsoft.CodeAnalysis.SourceFileResolver.OpenRead(System.String) +M:Microsoft.CodeAnalysis.SourceFileResolver.ResolveReference(System.String,System.String) +M:Microsoft.CodeAnalysis.SourceProductionContext.AddSource(System.String,Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.SourceProductionContext.AddSource(System.String,System.String) +M:Microsoft.CodeAnalysis.SourceProductionContext.get_CancellationToken +M:Microsoft.CodeAnalysis.SourceProductionContext.ReportDiagnostic(Microsoft.CodeAnalysis.Diagnostic) +M:Microsoft.CodeAnalysis.SourceReferenceResolver.#ctor +M:Microsoft.CodeAnalysis.SourceReferenceResolver.Equals(System.Object) +M:Microsoft.CodeAnalysis.SourceReferenceResolver.GetHashCode +M:Microsoft.CodeAnalysis.SourceReferenceResolver.NormalizePath(System.String,System.String) +M:Microsoft.CodeAnalysis.SourceReferenceResolver.OpenRead(System.String) +M:Microsoft.CodeAnalysis.SourceReferenceResolver.ReadText(System.String) +M:Microsoft.CodeAnalysis.SourceReferenceResolver.ResolveReference(System.String,System.String) +M:Microsoft.CodeAnalysis.StrongNameProvider.#ctor +M:Microsoft.CodeAnalysis.StrongNameProvider.Equals(System.Object) +M:Microsoft.CodeAnalysis.StrongNameProvider.GetHashCode +M:Microsoft.CodeAnalysis.SubsystemVersion.Create(System.Int32,System.Int32) +M:Microsoft.CodeAnalysis.SubsystemVersion.Equals(Microsoft.CodeAnalysis.SubsystemVersion) +M:Microsoft.CodeAnalysis.SubsystemVersion.Equals(System.Object) +M:Microsoft.CodeAnalysis.SubsystemVersion.get_IsValid +M:Microsoft.CodeAnalysis.SubsystemVersion.get_Major +M:Microsoft.CodeAnalysis.SubsystemVersion.get_Minor +M:Microsoft.CodeAnalysis.SubsystemVersion.get_None +M:Microsoft.CodeAnalysis.SubsystemVersion.get_Windows2000 +M:Microsoft.CodeAnalysis.SubsystemVersion.get_Windows7 +M:Microsoft.CodeAnalysis.SubsystemVersion.get_Windows8 +M:Microsoft.CodeAnalysis.SubsystemVersion.get_WindowsVista +M:Microsoft.CodeAnalysis.SubsystemVersion.get_WindowsXP +M:Microsoft.CodeAnalysis.SubsystemVersion.GetHashCode +M:Microsoft.CodeAnalysis.SubsystemVersion.ToString +M:Microsoft.CodeAnalysis.SubsystemVersion.TryParse(System.String,Microsoft.CodeAnalysis.SubsystemVersion@) +M:Microsoft.CodeAnalysis.SuppressionDescriptor.#ctor(System.String,System.String,Microsoft.CodeAnalysis.LocalizableString) +M:Microsoft.CodeAnalysis.SuppressionDescriptor.#ctor(System.String,System.String,System.String) +M:Microsoft.CodeAnalysis.SuppressionDescriptor.Equals(Microsoft.CodeAnalysis.SuppressionDescriptor) +M:Microsoft.CodeAnalysis.SuppressionDescriptor.Equals(System.Object) +M:Microsoft.CodeAnalysis.SuppressionDescriptor.get_Id +M:Microsoft.CodeAnalysis.SuppressionDescriptor.get_Justification +M:Microsoft.CodeAnalysis.SuppressionDescriptor.get_SuppressedDiagnosticId +M:Microsoft.CodeAnalysis.SuppressionDescriptor.GetHashCode +M:Microsoft.CodeAnalysis.SymbolDisplayExtensions.ToDisplayString(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.SymbolDisplayPart}) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.#ctor(Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle,Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle,Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions,Microsoft.CodeAnalysis.SymbolDisplayMemberOptions,Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle,Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle,Microsoft.CodeAnalysis.SymbolDisplayParameterOptions,Microsoft.CodeAnalysis.SymbolDisplayPropertyStyle,Microsoft.CodeAnalysis.SymbolDisplayLocalOptions,Microsoft.CodeAnalysis.SymbolDisplayKindOptions,Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddGenericsOptions(Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddKindOptions(Microsoft.CodeAnalysis.SymbolDisplayKindOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddLocalOptions(Microsoft.CodeAnalysis.SymbolDisplayLocalOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddMemberOptions(Microsoft.CodeAnalysis.SymbolDisplayMemberOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddMiscellaneousOptions(Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.AddParameterOptions(Microsoft.CodeAnalysis.SymbolDisplayParameterOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_CSharpErrorMessageFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_CSharpShortErrorMessageFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_DelegateStyle +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_ExtensionMethodStyle +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_FullyQualifiedFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_GenericsOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_GlobalNamespaceStyle +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_KindOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_LocalOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_MemberOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_MinimallyQualifiedFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_MiscellaneousOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_ParameterOptions +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_PropertyStyle +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_TypeQualificationStyle +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_VisualBasicErrorMessageFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.get_VisualBasicShortErrorMessageFormat +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveGenericsOptions(Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveKindOptions(Microsoft.CodeAnalysis.SymbolDisplayKindOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveLocalOptions(Microsoft.CodeAnalysis.SymbolDisplayLocalOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveMemberOptions(Microsoft.CodeAnalysis.SymbolDisplayMemberOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveMiscellaneousOptions(Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.RemoveParameterOptions(Microsoft.CodeAnalysis.SymbolDisplayParameterOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithGenericsOptions(Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithGlobalNamespaceStyle(Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithKindOptions(Microsoft.CodeAnalysis.SymbolDisplayKindOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithLocalOptions(Microsoft.CodeAnalysis.SymbolDisplayLocalOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithMemberOptions(Microsoft.CodeAnalysis.SymbolDisplayMemberOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithMiscellaneousOptions(Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayFormat.WithParameterOptions(Microsoft.CodeAnalysis.SymbolDisplayParameterOptions) +M:Microsoft.CodeAnalysis.SymbolDisplayPart.#ctor(Microsoft.CodeAnalysis.SymbolDisplayPartKind,Microsoft.CodeAnalysis.ISymbol,System.String) +M:Microsoft.CodeAnalysis.SymbolDisplayPart.get_Kind +M:Microsoft.CodeAnalysis.SymbolDisplayPart.get_Symbol +M:Microsoft.CodeAnalysis.SymbolDisplayPart.ToString +M:Microsoft.CodeAnalysis.SymbolEqualityComparer.Equals(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolEqualityComparer.GetHashCode(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolInfo.Equals(Microsoft.CodeAnalysis.SymbolInfo) +M:Microsoft.CodeAnalysis.SymbolInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.SymbolInfo.get_CandidateReason +M:Microsoft.CodeAnalysis.SymbolInfo.get_CandidateSymbols +M:Microsoft.CodeAnalysis.SymbolInfo.get_Symbol +M:Microsoft.CodeAnalysis.SymbolInfo.GetHashCode +M:Microsoft.CodeAnalysis.SymbolVisitor.#ctor +M:Microsoft.CodeAnalysis.SymbolVisitor.DefaultVisit(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.Visit(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitAlias(Microsoft.CodeAnalysis.IAliasSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitArrayType(Microsoft.CodeAnalysis.IArrayTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitAssembly(Microsoft.CodeAnalysis.IAssemblySymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitDiscard(Microsoft.CodeAnalysis.IDiscardSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitDynamicType(Microsoft.CodeAnalysis.IDynamicTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitEvent(Microsoft.CodeAnalysis.IEventSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitField(Microsoft.CodeAnalysis.IFieldSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitFunctionPointerType(Microsoft.CodeAnalysis.IFunctionPointerTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitLabel(Microsoft.CodeAnalysis.ILabelSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitLocal(Microsoft.CodeAnalysis.ILocalSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitMethod(Microsoft.CodeAnalysis.IMethodSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitModule(Microsoft.CodeAnalysis.IModuleSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitNamedType(Microsoft.CodeAnalysis.INamedTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitParameter(Microsoft.CodeAnalysis.IParameterSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitPointerType(Microsoft.CodeAnalysis.IPointerTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitProperty(Microsoft.CodeAnalysis.IPropertySymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitRangeVariable(Microsoft.CodeAnalysis.IRangeVariableSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor.VisitTypeParameter(Microsoft.CodeAnalysis.ITypeParameterSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.#ctor +M:Microsoft.CodeAnalysis.SymbolVisitor`1.DefaultVisit(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.Visit(Microsoft.CodeAnalysis.ISymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitAlias(Microsoft.CodeAnalysis.IAliasSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitArrayType(Microsoft.CodeAnalysis.IArrayTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitAssembly(Microsoft.CodeAnalysis.IAssemblySymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitDiscard(Microsoft.CodeAnalysis.IDiscardSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitDynamicType(Microsoft.CodeAnalysis.IDynamicTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitEvent(Microsoft.CodeAnalysis.IEventSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitField(Microsoft.CodeAnalysis.IFieldSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitFunctionPointerType(Microsoft.CodeAnalysis.IFunctionPointerTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitLabel(Microsoft.CodeAnalysis.ILabelSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitLocal(Microsoft.CodeAnalysis.ILocalSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitMethod(Microsoft.CodeAnalysis.IMethodSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitModule(Microsoft.CodeAnalysis.IModuleSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitNamedType(Microsoft.CodeAnalysis.INamedTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitNamespace(Microsoft.CodeAnalysis.INamespaceSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitParameter(Microsoft.CodeAnalysis.IParameterSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitPointerType(Microsoft.CodeAnalysis.IPointerTypeSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitProperty(Microsoft.CodeAnalysis.IPropertySymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitRangeVariable(Microsoft.CodeAnalysis.IRangeVariableSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`1.VisitTypeParameter(Microsoft.CodeAnalysis.ITypeParameterSymbol) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.#ctor +M:Microsoft.CodeAnalysis.SymbolVisitor`2.DefaultVisit(Microsoft.CodeAnalysis.ISymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.get_DefaultResult +M:Microsoft.CodeAnalysis.SymbolVisitor`2.Visit(Microsoft.CodeAnalysis.ISymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitAlias(Microsoft.CodeAnalysis.IAliasSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitArrayType(Microsoft.CodeAnalysis.IArrayTypeSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitAssembly(Microsoft.CodeAnalysis.IAssemblySymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitDiscard(Microsoft.CodeAnalysis.IDiscardSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitDynamicType(Microsoft.CodeAnalysis.IDynamicTypeSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitEvent(Microsoft.CodeAnalysis.IEventSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitField(Microsoft.CodeAnalysis.IFieldSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitFunctionPointerType(Microsoft.CodeAnalysis.IFunctionPointerTypeSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitLabel(Microsoft.CodeAnalysis.ILabelSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitLocal(Microsoft.CodeAnalysis.ILocalSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitMethod(Microsoft.CodeAnalysis.IMethodSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitModule(Microsoft.CodeAnalysis.IModuleSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitNamedType(Microsoft.CodeAnalysis.INamedTypeSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitNamespace(Microsoft.CodeAnalysis.INamespaceSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitParameter(Microsoft.CodeAnalysis.IParameterSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitPointerType(Microsoft.CodeAnalysis.IPointerTypeSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitProperty(Microsoft.CodeAnalysis.IPropertySymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitRangeVariable(Microsoft.CodeAnalysis.IRangeVariableSymbol,`0) +M:Microsoft.CodeAnalysis.SymbolVisitor`2.VisitTypeParameter(Microsoft.CodeAnalysis.ITypeParameterSymbol,`0) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.#ctor +M:Microsoft.CodeAnalysis.SyntaxAnnotation.#ctor(System.String) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.#ctor(System.String,System.String) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.Equals(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.get_Data +M:Microsoft.CodeAnalysis.SyntaxAnnotation.get_ElasticAnnotation +M:Microsoft.CodeAnalysis.SyntaxAnnotation.get_Kind +M:Microsoft.CodeAnalysis.SyntaxAnnotation.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxAnnotation.op_Equality(Microsoft.CodeAnalysis.SyntaxAnnotation,Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxAnnotation.op_Inequality(Microsoft.CodeAnalysis.SyntaxAnnotation,Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxContextReceiverCreator.#ctor(System.Object,System.IntPtr) +M:Microsoft.CodeAnalysis.SyntaxContextReceiverCreator.BeginInvoke(System.AsyncCallback,System.Object) +M:Microsoft.CodeAnalysis.SyntaxContextReceiverCreator.EndInvoke(System.IAsyncResult) +M:Microsoft.CodeAnalysis.SyntaxContextReceiverCreator.Invoke +M:Microsoft.CodeAnalysis.SyntaxList.Create``1(System.ReadOnlySpan{``0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.#ctor(`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.Add(`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.Any +M:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator.Reset +M:Microsoft.CodeAnalysis.SyntaxList`1.Equals(Microsoft.CodeAnalysis.SyntaxList{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxList`1.First +M:Microsoft.CodeAnalysis.SyntaxList`1.FirstOrDefault +M:Microsoft.CodeAnalysis.SyntaxList`1.get_Count +M:Microsoft.CodeAnalysis.SyntaxList`1.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxList`1.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxList`1.get_Span +M:Microsoft.CodeAnalysis.SyntaxList`1.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxList`1.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxList`1.IndexOf(`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.IndexOf(System.Func{`0,System.Boolean}) +M:Microsoft.CodeAnalysis.SyntaxList`1.Insert(System.Int32,`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.Last +M:Microsoft.CodeAnalysis.SyntaxList`1.LastIndexOf(`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.LastIndexOf(System.Func{`0,System.Boolean}) +M:Microsoft.CodeAnalysis.SyntaxList`1.LastOrDefault +M:Microsoft.CodeAnalysis.SyntaxList`1.op_Equality(Microsoft.CodeAnalysis.SyntaxList{`0},Microsoft.CodeAnalysis.SyntaxList{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.op_Explicit(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.SyntaxNode})~Microsoft.CodeAnalysis.SyntaxList{`0} +M:Microsoft.CodeAnalysis.SyntaxList`1.op_Implicit(Microsoft.CodeAnalysis.SyntaxList{`0})~Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.SyntaxNode} +M:Microsoft.CodeAnalysis.SyntaxList`1.op_Implicit(Microsoft.CodeAnalysis.SyntaxList{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxList`1.op_Inequality(Microsoft.CodeAnalysis.SyntaxList{`0},Microsoft.CodeAnalysis.SyntaxList{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.Remove(`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.RemoveAt(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxList`1.Replace(`0,`0) +M:Microsoft.CodeAnalysis.SyntaxList`1.ReplaceRange(`0,System.Collections.Generic.IEnumerable{`0}) +M:Microsoft.CodeAnalysis.SyntaxList`1.ToFullString +M:Microsoft.CodeAnalysis.SyntaxList`1.ToString +M:Microsoft.CodeAnalysis.SyntaxNode.Ancestors(System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.AncestorsAndSelf(System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.ChildNodes +M:Microsoft.CodeAnalysis.SyntaxNode.ChildNodesAndTokens +M:Microsoft.CodeAnalysis.SyntaxNode.ChildThatContainsPosition(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNode.ChildTokens +M:Microsoft.CodeAnalysis.SyntaxNode.Contains(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNode.ContainsDirective(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNode.CopyAnnotationsTo``1(``0) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodes(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodes(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndSelf(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndSelf(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndTokens(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndTokens(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndTokensAndSelf(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantNodesAndTokensAndSelf(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantTokens(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantTokens(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantTrivia(Microsoft.CodeAnalysis.Text.TextSpan,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.DescendantTrivia(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.EquivalentToCore(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNode.FindNode(Microsoft.CodeAnalysis.Text.TextSpan,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FindToken(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FindTokenCore(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FindTokenCore(System.Int32,System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,System.Boolean}) +M:Microsoft.CodeAnalysis.SyntaxNode.FindTrivia(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FindTrivia(System.Int32,System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,System.Boolean}) +M:Microsoft.CodeAnalysis.SyntaxNode.FindTriviaCore(System.Int32,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FirstAncestorOrSelf``1(System.Func{``0,System.Boolean},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.FirstAncestorOrSelf``2(System.Func{``0,``1,System.Boolean},``1,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.get_ContainsAnnotations +M:Microsoft.CodeAnalysis.SyntaxNode.get_ContainsDiagnostics +M:Microsoft.CodeAnalysis.SyntaxNode.get_ContainsDirectives +M:Microsoft.CodeAnalysis.SyntaxNode.get_ContainsSkippedText +M:Microsoft.CodeAnalysis.SyntaxNode.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxNode.get_HasLeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.get_HasStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.get_HasTrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.get_IsMissing +M:Microsoft.CodeAnalysis.SyntaxNode.get_IsStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.get_KindText +M:Microsoft.CodeAnalysis.SyntaxNode.get_Language +M:Microsoft.CodeAnalysis.SyntaxNode.get_Parent +M:Microsoft.CodeAnalysis.SyntaxNode.get_ParentTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.get_RawKind +M:Microsoft.CodeAnalysis.SyntaxNode.get_Span +M:Microsoft.CodeAnalysis.SyntaxNode.get_SpanStart +M:Microsoft.CodeAnalysis.SyntaxNode.get_SyntaxTree +M:Microsoft.CodeAnalysis.SyntaxNode.get_SyntaxTreeCore +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedNodes(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedNodes(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedNodesAndTokens(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedNodesAndTokens(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedNodesAndTokens(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedTokens(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedTokens(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedTrivia(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedTrivia(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotatedTrivia(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotations(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.SyntaxNode.GetAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.GetDiagnostics +M:Microsoft.CodeAnalysis.SyntaxNode.GetFirstToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.GetLastToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.GetLeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.GetLocation +M:Microsoft.CodeAnalysis.SyntaxNode.GetRed``1(``0@,System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNode.GetRedAtZero``1(``0@) +M:Microsoft.CodeAnalysis.SyntaxNode.GetReference +M:Microsoft.CodeAnalysis.SyntaxNode.GetText(System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm) +M:Microsoft.CodeAnalysis.SyntaxNode.GetTrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.HasAnnotation(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNode.HasAnnotations(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.SyntaxNode.HasAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxNode.InsertNodesInListCore(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.InsertTokensInListCore(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.InsertTriviaInListCore(Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNode.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxNode,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.IsEquivalentToCore(Microsoft.CodeAnalysis.SyntaxNode,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.IsIncrementallyIdenticalTo(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNode.IsPartOfStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxNode.NormalizeWhitespaceCore(System.String,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNode.RemoveNodesCore(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},Microsoft.CodeAnalysis.SyntaxRemoveOptions) +M:Microsoft.CodeAnalysis.SyntaxNode.ReplaceCore``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``0,Microsoft.CodeAnalysis.SyntaxNode},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Func{Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNode.ReplaceNodeInListCore(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNode.ReplaceTokenInListCore(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxNode.ReplaceTriviaInListCore(Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNode.SerializeTo(System.IO.Stream,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxNode.ToFullString +M:Microsoft.CodeAnalysis.SyntaxNode.ToString +M:Microsoft.CodeAnalysis.SyntaxNode.WriteTo(System.IO.TextWriter) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.GetCurrentNode``1(Microsoft.CodeAnalysis.SyntaxNode,``0) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.GetCurrentNodes``1(Microsoft.CodeAnalysis.SyntaxNode,``0) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.GetCurrentNodes``1(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{``0}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertNodesAfter``1(``0,Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertNodesBefore``1(``0,Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertTokensAfter``1(``0,Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertTokensBefore``1(``0,Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertTriviaAfter``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.InsertTriviaBefore``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.NormalizeWhitespace``1(``0,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.NormalizeWhitespace``1(``0,System.String,System.String,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.RemoveNode``1(``0,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxRemoveOptions) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.RemoveNodes``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},Microsoft.CodeAnalysis.SyntaxRemoveOptions) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceNode``1(``0,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceNode``1(``0,Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceNodes``2(``0,System.Collections.Generic.IEnumerable{``1},System.Func{``1,``1,Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceSyntax``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode},System.Func{Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Func{Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken},System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceToken``1(``0,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceToken``1(``0,Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceTokens``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken},System.Func{Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.ReplaceTrivia``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia},System.Func{Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.TrackNodes``1(``0,Microsoft.CodeAnalysis.SyntaxNode[]) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.TrackNodes``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNode}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithLeadingTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithLeadingTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithLeadingTrivia``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithoutLeadingTrivia``1(``0) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithoutTrailingTrivia``1(``0) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithoutTrivia(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithoutTrivia``1(``0) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithTrailingTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithTrailingTrivia``1(``0,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithTrailingTrivia``1(``0,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeExtensions.WithTriviaFrom``1(``0,Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.AsNode +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.AsToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.ChildNodesAndTokens +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.Equals(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_ContainsAnnotations +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_ContainsDiagnostics +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_ContainsDirectives +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_HasLeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_HasTrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_IsMissing +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_IsNode +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_IsToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_Language +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_Parent +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_RawKind +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_Span +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_SpanStart +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.get_SyntaxTree +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetAnnotations(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetDiagnostics +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetFirstChildIndexSpanningPosition(Microsoft.CodeAnalysis.SyntaxNode,System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetLeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetLocation +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetNextSibling +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetPreviousSibling +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.GetTrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.HasAnnotation(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.HasAnnotations(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.HasAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.IsIncrementallyIdenticalTo(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Equality(Microsoft.CodeAnalysis.SyntaxNodeOrToken,Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Explicit(Microsoft.CodeAnalysis.SyntaxNodeOrToken)~Microsoft.CodeAnalysis.SyntaxNode +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Explicit(Microsoft.CodeAnalysis.SyntaxNodeOrToken)~Microsoft.CodeAnalysis.SyntaxToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Implicit(Microsoft.CodeAnalysis.SyntaxNode)~Microsoft.CodeAnalysis.SyntaxNodeOrToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Implicit(Microsoft.CodeAnalysis.SyntaxToken)~Microsoft.CodeAnalysis.SyntaxNodeOrToken +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.op_Inequality(Microsoft.CodeAnalysis.SyntaxNodeOrToken,Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.ToFullString +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.ToString +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithAdditionalAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithAdditionalAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithLeadingTrivia(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithLeadingTrivia(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithoutAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithoutAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithoutAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithTrailingTrivia(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WithTrailingTrivia(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrToken.WriteTo(System.IO.TextWriter) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.#ctor(Microsoft.CodeAnalysis.SyntaxNodeOrToken[]) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.#ctor(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Add(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.AddRange(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Any +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Create(System.ReadOnlySpan{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Equals(Microsoft.CodeAnalysis.SyntaxNodeOrTokenList) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.First +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.FirstOrDefault +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.get_Count +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.get_Span +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.IndexOf(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Insert(System.Int32,Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Last +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.LastOrDefault +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.op_Equality(Microsoft.CodeAnalysis.SyntaxNodeOrTokenList,Microsoft.CodeAnalysis.SyntaxNodeOrTokenList) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.op_Inequality(Microsoft.CodeAnalysis.SyntaxNodeOrTokenList,Microsoft.CodeAnalysis.SyntaxNodeOrTokenList) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Remove(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.RemoveAt(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Replace(Microsoft.CodeAnalysis.SyntaxNodeOrToken,Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.ReplaceRange(Microsoft.CodeAnalysis.SyntaxNodeOrToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxNodeOrToken}) +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.ToFullString +M:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.ToString +M:Microsoft.CodeAnalysis.SyntaxReceiverCreator.#ctor(System.Object,System.IntPtr) +M:Microsoft.CodeAnalysis.SyntaxReceiverCreator.BeginInvoke(System.AsyncCallback,System.Object) +M:Microsoft.CodeAnalysis.SyntaxReceiverCreator.EndInvoke(System.IAsyncResult) +M:Microsoft.CodeAnalysis.SyntaxReceiverCreator.Invoke +M:Microsoft.CodeAnalysis.SyntaxReference.#ctor +M:Microsoft.CodeAnalysis.SyntaxReference.get_Span +M:Microsoft.CodeAnalysis.SyntaxReference.get_SyntaxTree +M:Microsoft.CodeAnalysis.SyntaxReference.GetSyntax(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxReference.GetSyntaxAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxToken.CopyAnnotationsTo(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.Equals(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxToken.get_ContainsAnnotations +M:Microsoft.CodeAnalysis.SyntaxToken.get_ContainsDiagnostics +M:Microsoft.CodeAnalysis.SyntaxToken.get_ContainsDirectives +M:Microsoft.CodeAnalysis.SyntaxToken.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxToken.get_HasLeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.get_HasStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.get_HasTrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.get_IsMissing +M:Microsoft.CodeAnalysis.SyntaxToken.get_Language +M:Microsoft.CodeAnalysis.SyntaxToken.get_LeadingTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.get_Parent +M:Microsoft.CodeAnalysis.SyntaxToken.get_RawKind +M:Microsoft.CodeAnalysis.SyntaxToken.get_Span +M:Microsoft.CodeAnalysis.SyntaxToken.get_SpanStart +M:Microsoft.CodeAnalysis.SyntaxToken.get_SyntaxTree +M:Microsoft.CodeAnalysis.SyntaxToken.get_Text +M:Microsoft.CodeAnalysis.SyntaxToken.get_TrailingTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.get_Value +M:Microsoft.CodeAnalysis.SyntaxToken.get_ValueText +M:Microsoft.CodeAnalysis.SyntaxToken.GetAllTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.GetAnnotations(System.Collections.Generic.IEnumerable{System.String}) +M:Microsoft.CodeAnalysis.SyntaxToken.GetAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxToken.GetAnnotations(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxToken.GetDiagnostics +M:Microsoft.CodeAnalysis.SyntaxToken.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxToken.GetLocation +M:Microsoft.CodeAnalysis.SyntaxToken.GetNextToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxToken.GetPreviousToken(System.Boolean,System.Boolean,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxToken.HasAnnotation(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxToken.HasAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxToken.HasAnnotations(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxToken.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.IsIncrementallyIdenticalTo(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.IsPartOfStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxToken.op_Equality(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.op_Inequality(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.ToFullString +M:Microsoft.CodeAnalysis.SyntaxToken.ToString +M:Microsoft.CodeAnalysis.SyntaxToken.WithAdditionalAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxToken.WithAdditionalAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxToken.WithLeadingTrivia(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxToken.WithLeadingTrivia(Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxToken.WithLeadingTrivia(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxToken.WithoutAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxToken.WithoutAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxToken.WithoutAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxToken.WithTrailingTrivia(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxToken.WithTrailingTrivia(Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxToken.WithTrailingTrivia(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxToken.WithTriviaFrom(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxToken.WriteTo(System.IO.TextWriter) +M:Microsoft.CodeAnalysis.SyntaxTokenList.#ctor(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.#ctor(Microsoft.CodeAnalysis.SyntaxToken[]) +M:Microsoft.CodeAnalysis.SyntaxTokenList.#ctor(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Add(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.AddRange(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Any +M:Microsoft.CodeAnalysis.SyntaxTokenList.Create(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Create(System.ReadOnlySpan{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxTokenList.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTokenList.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxTokenList.Equals(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTokenList.First +M:Microsoft.CodeAnalysis.SyntaxTokenList.get_Count +M:Microsoft.CodeAnalysis.SyntaxTokenList.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxTokenList.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxTokenList.get_Span +M:Microsoft.CodeAnalysis.SyntaxTokenList.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxTokenList.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTokenList.IndexOf(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Insert(System.Int32,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Last +M:Microsoft.CodeAnalysis.SyntaxTokenList.op_Equality(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.SyntaxTokenList.op_Inequality(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Remove(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.RemoveAt(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Replace(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTokenList.ReplaceRange(Microsoft.CodeAnalysis.SyntaxToken,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxToken}) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reverse +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.#ctor(Microsoft.CodeAnalysis.SyntaxTokenList) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Equals(Microsoft.CodeAnalysis.SyntaxTokenList.Reversed) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTokenList.ToFullString +M:Microsoft.CodeAnalysis.SyntaxTokenList.ToString +M:Microsoft.CodeAnalysis.SyntaxTree.#ctor +M:Microsoft.CodeAnalysis.SyntaxTree.get_DiagnosticOptions +M:Microsoft.CodeAnalysis.SyntaxTree.get_Encoding +M:Microsoft.CodeAnalysis.SyntaxTree.get_FilePath +M:Microsoft.CodeAnalysis.SyntaxTree.get_HasCompilationUnitRoot +M:Microsoft.CodeAnalysis.SyntaxTree.get_Length +M:Microsoft.CodeAnalysis.SyntaxTree.get_Options +M:Microsoft.CodeAnalysis.SyntaxTree.get_OptionsCore +M:Microsoft.CodeAnalysis.SyntaxTree.GetChangedSpans(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.SyntaxTree.GetChanges(Microsoft.CodeAnalysis.SyntaxTree) +M:Microsoft.CodeAnalysis.SyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxNodeOrToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetDiagnostics(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTree.GetDiagnostics(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetLineMappings(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetLineSpan(Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetLineVisibility(System.Int32,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetLocation(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.SyntaxTree.GetMappedLineSpan(Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetReference(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxTree.GetRoot(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetRootAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetRootAsyncCore(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetRootCore(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetText(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.GetTextAsync(System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTree.HasHiddenRegions +M:Microsoft.CodeAnalysis.SyntaxTree.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxTree,System.Boolean) +M:Microsoft.CodeAnalysis.SyntaxTree.ToString +M:Microsoft.CodeAnalysis.SyntaxTree.TryGetRoot(Microsoft.CodeAnalysis.SyntaxNode@) +M:Microsoft.CodeAnalysis.SyntaxTree.TryGetRootCore(Microsoft.CodeAnalysis.SyntaxNode@) +M:Microsoft.CodeAnalysis.SyntaxTree.TryGetText(Microsoft.CodeAnalysis.Text.SourceText@) +M:Microsoft.CodeAnalysis.SyntaxTree.WithChangedText(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.SyntaxTree.WithDiagnosticOptions(System.Collections.Immutable.ImmutableDictionary{System.String,Microsoft.CodeAnalysis.ReportDiagnostic}) +M:Microsoft.CodeAnalysis.SyntaxTree.WithFilePath(System.String) +M:Microsoft.CodeAnalysis.SyntaxTree.WithRootAndOptions(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.ParseOptions) +M:Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider.#ctor +M:Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider.IsGenerated(Microsoft.CodeAnalysis.SyntaxTree,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider.TryGetDiagnosticValue(Microsoft.CodeAnalysis.SyntaxTree,System.String,System.Threading.CancellationToken,Microsoft.CodeAnalysis.ReportDiagnostic@) +M:Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider.TryGetGlobalDiagnosticValue(System.String,System.Threading.CancellationToken,Microsoft.CodeAnalysis.ReportDiagnostic@) +M:Microsoft.CodeAnalysis.SyntaxTrivia.CopyAnnotationsTo(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTrivia.Equals(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTrivia.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_ContainsDiagnostics +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_HasStructure +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_IsDirective +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_Language +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_RawKind +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_Span +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_SpanStart +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_SyntaxTree +M:Microsoft.CodeAnalysis.SyntaxTrivia.get_Token +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetAnnotations(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetDiagnostics +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetLocation +M:Microsoft.CodeAnalysis.SyntaxTrivia.GetStructure +M:Microsoft.CodeAnalysis.SyntaxTrivia.HasAnnotation(Microsoft.CodeAnalysis.SyntaxAnnotation) +M:Microsoft.CodeAnalysis.SyntaxTrivia.HasAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxTrivia.HasAnnotations(System.String[]) +M:Microsoft.CodeAnalysis.SyntaxTrivia.IsEquivalentTo(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTrivia.IsPartOfStructuredTrivia +M:Microsoft.CodeAnalysis.SyntaxTrivia.op_Equality(Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTrivia.op_Inequality(Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTrivia.ToFullString +M:Microsoft.CodeAnalysis.SyntaxTrivia.ToString +M:Microsoft.CodeAnalysis.SyntaxTrivia.WithAdditionalAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxTrivia.WithAdditionalAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxTrivia.WithoutAnnotations(Microsoft.CodeAnalysis.SyntaxAnnotation[]) +M:Microsoft.CodeAnalysis.SyntaxTrivia.WithoutAnnotations(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxAnnotation}) +M:Microsoft.CodeAnalysis.SyntaxTrivia.WithoutAnnotations(System.String) +M:Microsoft.CodeAnalysis.SyntaxTrivia.WriteTo(System.IO.TextWriter) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.#ctor(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.#ctor(Microsoft.CodeAnalysis.SyntaxTrivia[]) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.#ctor(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Add(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.AddRange(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Any +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Create(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Create(System.ReadOnlySpan{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.ElementAt(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Equals(Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.First +M:Microsoft.CodeAnalysis.SyntaxTriviaList.get_Count +M:Microsoft.CodeAnalysis.SyntaxTriviaList.get_Empty +M:Microsoft.CodeAnalysis.SyntaxTriviaList.get_FullSpan +M:Microsoft.CodeAnalysis.SyntaxTriviaList.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.get_Span +M:Microsoft.CodeAnalysis.SyntaxTriviaList.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxTriviaList.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTriviaList.IndexOf(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Insert(System.Int32,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Last +M:Microsoft.CodeAnalysis.SyntaxTriviaList.op_Equality(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.op_Inequality(Microsoft.CodeAnalysis.SyntaxTriviaList,Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Remove(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.RemoveAt(System.Int32) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Replace(Microsoft.CodeAnalysis.SyntaxTrivia,Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.ReplaceRange(Microsoft.CodeAnalysis.SyntaxTrivia,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.SyntaxTrivia}) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reverse +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.#ctor(Microsoft.CodeAnalysis.SyntaxTriviaList) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.Enumerator.get_Current +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.Equals(Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.Equals(System.Object) +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.GetEnumerator +M:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.GetHashCode +M:Microsoft.CodeAnalysis.SyntaxTriviaList.ToFullString +M:Microsoft.CodeAnalysis.SyntaxTriviaList.ToString +M:Microsoft.CodeAnalysis.SyntaxValueProvider.CreateSyntaxProvider``1(System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken,System.Boolean},System.Func{Microsoft.CodeAnalysis.GeneratorSyntaxContext,System.Threading.CancellationToken,``0}) +M:Microsoft.CodeAnalysis.SyntaxValueProvider.ForAttributeWithMetadataName``1(System.String,System.Func{Microsoft.CodeAnalysis.SyntaxNode,System.Threading.CancellationToken,System.Boolean},System.Func{Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext,System.Threading.CancellationToken,``0}) +M:Microsoft.CodeAnalysis.SyntaxWalker.#ctor(Microsoft.CodeAnalysis.SyntaxWalkerDepth) +M:Microsoft.CodeAnalysis.SyntaxWalker.get_Depth +M:Microsoft.CodeAnalysis.SyntaxWalker.Visit(Microsoft.CodeAnalysis.SyntaxNode) +M:Microsoft.CodeAnalysis.SyntaxWalker.VisitToken(Microsoft.CodeAnalysis.SyntaxToken) +M:Microsoft.CodeAnalysis.SyntaxWalker.VisitTrivia(Microsoft.CodeAnalysis.SyntaxTrivia) +M:Microsoft.CodeAnalysis.Text.LinePosition.#ctor(System.Int32,System.Int32) +M:Microsoft.CodeAnalysis.Text.LinePosition.CompareTo(Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.Equals(Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.LinePosition.get_Character +M:Microsoft.CodeAnalysis.Text.LinePosition.get_Line +M:Microsoft.CodeAnalysis.Text.LinePosition.get_Zero +M:Microsoft.CodeAnalysis.Text.LinePosition.GetHashCode +M:Microsoft.CodeAnalysis.Text.LinePosition.op_Equality(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.op_GreaterThan(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.op_GreaterThanOrEqual(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.op_Inequality(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.op_LessThan(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.op_LessThanOrEqual(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePosition.ToString +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.#ctor(Microsoft.CodeAnalysis.Text.LinePosition,Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.Equals(Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.get_End +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.get_Start +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.GetHashCode +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.op_Equality(Microsoft.CodeAnalysis.Text.LinePositionSpan,Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.op_Inequality(Microsoft.CodeAnalysis.Text.LinePositionSpan,Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Text.LinePositionSpan.ToString +M:Microsoft.CodeAnalysis.Text.SourceText.#ctor(System.Collections.Immutable.ImmutableArray{System.Byte},Microsoft.CodeAnalysis.Text.SourceHashAlgorithm,Microsoft.CodeAnalysis.Text.SourceTextContainer) +M:Microsoft.CodeAnalysis.Text.SourceText.ContentEquals(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.Text.SourceText.ContentEqualsImpl(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.Text.SourceText.CopyTo(System.Int32,System.Char[],System.Int32,System.Int32) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.Byte[],System.Int32,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm,System.Boolean) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.Byte[],System.Int32,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.IO.Stream,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm,System.Boolean) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.IO.Stream,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm,System.Boolean,System.Boolean) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.IO.TextReader,System.Int32,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm) +M:Microsoft.CodeAnalysis.Text.SourceText.From(System.String,System.Text.Encoding,Microsoft.CodeAnalysis.Text.SourceHashAlgorithm) +M:Microsoft.CodeAnalysis.Text.SourceText.get_CanBeEmbedded +M:Microsoft.CodeAnalysis.Text.SourceText.get_ChecksumAlgorithm +M:Microsoft.CodeAnalysis.Text.SourceText.get_Container +M:Microsoft.CodeAnalysis.Text.SourceText.get_Encoding +M:Microsoft.CodeAnalysis.Text.SourceText.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.Text.SourceText.get_Length +M:Microsoft.CodeAnalysis.Text.SourceText.get_Lines +M:Microsoft.CodeAnalysis.Text.SourceText.GetChangeRanges(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.Text.SourceText.GetChecksum +M:Microsoft.CodeAnalysis.Text.SourceText.GetContentHash +M:Microsoft.CodeAnalysis.Text.SourceText.GetLinesCore +M:Microsoft.CodeAnalysis.Text.SourceText.GetSubText(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.SourceText.GetSubText(System.Int32) +M:Microsoft.CodeAnalysis.Text.SourceText.GetTextChanges(Microsoft.CodeAnalysis.Text.SourceText) +M:Microsoft.CodeAnalysis.Text.SourceText.Replace(Microsoft.CodeAnalysis.Text.TextSpan,System.String) +M:Microsoft.CodeAnalysis.Text.SourceText.Replace(System.Int32,System.Int32,System.String) +M:Microsoft.CodeAnalysis.Text.SourceText.ToString +M:Microsoft.CodeAnalysis.Text.SourceText.ToString(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.SourceText.WithChanges(Microsoft.CodeAnalysis.Text.TextChange[]) +M:Microsoft.CodeAnalysis.Text.SourceText.WithChanges(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Text.TextChange}) +M:Microsoft.CodeAnalysis.Text.SourceText.Write(System.IO.TextWriter,Microsoft.CodeAnalysis.Text.TextSpan,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Text.SourceText.Write(System.IO.TextWriter,System.Threading.CancellationToken) +M:Microsoft.CodeAnalysis.Text.SourceTextContainer.#ctor +M:Microsoft.CodeAnalysis.Text.SourceTextContainer.add_TextChanged(System.EventHandler{Microsoft.CodeAnalysis.Text.TextChangeEventArgs}) +M:Microsoft.CodeAnalysis.Text.SourceTextContainer.get_CurrentText +M:Microsoft.CodeAnalysis.Text.SourceTextContainer.remove_TextChanged(System.EventHandler{Microsoft.CodeAnalysis.Text.TextChangeEventArgs}) +M:Microsoft.CodeAnalysis.Text.TextChange.#ctor(Microsoft.CodeAnalysis.Text.TextSpan,System.String) +M:Microsoft.CodeAnalysis.Text.TextChange.Equals(Microsoft.CodeAnalysis.Text.TextChange) +M:Microsoft.CodeAnalysis.Text.TextChange.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.TextChange.get_NewText +M:Microsoft.CodeAnalysis.Text.TextChange.get_NoChanges +M:Microsoft.CodeAnalysis.Text.TextChange.get_Span +M:Microsoft.CodeAnalysis.Text.TextChange.GetHashCode +M:Microsoft.CodeAnalysis.Text.TextChange.op_Equality(Microsoft.CodeAnalysis.Text.TextChange,Microsoft.CodeAnalysis.Text.TextChange) +M:Microsoft.CodeAnalysis.Text.TextChange.op_Implicit(Microsoft.CodeAnalysis.Text.TextChange)~Microsoft.CodeAnalysis.Text.TextChangeRange +M:Microsoft.CodeAnalysis.Text.TextChange.op_Inequality(Microsoft.CodeAnalysis.Text.TextChange,Microsoft.CodeAnalysis.Text.TextChange) +M:Microsoft.CodeAnalysis.Text.TextChange.ToString +M:Microsoft.CodeAnalysis.Text.TextChangeEventArgs.#ctor(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Text.TextChangeRange[]) +M:Microsoft.CodeAnalysis.Text.TextChangeEventArgs.#ctor(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Text.SourceText,System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Text.TextChangeRange}) +M:Microsoft.CodeAnalysis.Text.TextChangeEventArgs.get_Changes +M:Microsoft.CodeAnalysis.Text.TextChangeEventArgs.get_NewText +M:Microsoft.CodeAnalysis.Text.TextChangeEventArgs.get_OldText +M:Microsoft.CodeAnalysis.Text.TextChangeRange.#ctor(Microsoft.CodeAnalysis.Text.TextSpan,System.Int32) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.Collapse(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.Text.TextChangeRange}) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.Equals(Microsoft.CodeAnalysis.Text.TextChangeRange) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.get_NewLength +M:Microsoft.CodeAnalysis.Text.TextChangeRange.get_NoChanges +M:Microsoft.CodeAnalysis.Text.TextChangeRange.get_Span +M:Microsoft.CodeAnalysis.Text.TextChangeRange.GetHashCode +M:Microsoft.CodeAnalysis.Text.TextChangeRange.op_Equality(Microsoft.CodeAnalysis.Text.TextChangeRange,Microsoft.CodeAnalysis.Text.TextChangeRange) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.op_Inequality(Microsoft.CodeAnalysis.Text.TextChangeRange,Microsoft.CodeAnalysis.Text.TextChangeRange) +M:Microsoft.CodeAnalysis.Text.TextChangeRange.ToString +M:Microsoft.CodeAnalysis.Text.TextLine.Equals(Microsoft.CodeAnalysis.Text.TextLine) +M:Microsoft.CodeAnalysis.Text.TextLine.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.TextLine.FromSpan(Microsoft.CodeAnalysis.Text.SourceText,Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextLine.get_End +M:Microsoft.CodeAnalysis.Text.TextLine.get_EndIncludingLineBreak +M:Microsoft.CodeAnalysis.Text.TextLine.get_LineNumber +M:Microsoft.CodeAnalysis.Text.TextLine.get_Span +M:Microsoft.CodeAnalysis.Text.TextLine.get_SpanIncludingLineBreak +M:Microsoft.CodeAnalysis.Text.TextLine.get_Start +M:Microsoft.CodeAnalysis.Text.TextLine.get_Text +M:Microsoft.CodeAnalysis.Text.TextLine.GetHashCode +M:Microsoft.CodeAnalysis.Text.TextLine.op_Equality(Microsoft.CodeAnalysis.Text.TextLine,Microsoft.CodeAnalysis.Text.TextLine) +M:Microsoft.CodeAnalysis.Text.TextLine.op_Inequality(Microsoft.CodeAnalysis.Text.TextLine,Microsoft.CodeAnalysis.Text.TextLine) +M:Microsoft.CodeAnalysis.Text.TextLine.ToString +M:Microsoft.CodeAnalysis.Text.TextLineCollection.#ctor +M:Microsoft.CodeAnalysis.Text.TextLineCollection.Enumerator.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.Enumerator.get_Current +M:Microsoft.CodeAnalysis.Text.TextLineCollection.Enumerator.GetHashCode +M:Microsoft.CodeAnalysis.Text.TextLineCollection.Enumerator.MoveNext +M:Microsoft.CodeAnalysis.Text.TextLineCollection.get_Count +M:Microsoft.CodeAnalysis.Text.TextLineCollection.get_Item(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetEnumerator +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetLineFromPosition(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetLinePosition(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetLinePositionSpan(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetPosition(Microsoft.CodeAnalysis.Text.LinePosition) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.GetTextSpan(Microsoft.CodeAnalysis.Text.LinePositionSpan) +M:Microsoft.CodeAnalysis.Text.TextLineCollection.IndexOf(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextSpan.#ctor(System.Int32,System.Int32) +M:Microsoft.CodeAnalysis.Text.TextSpan.CompareTo(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.Contains(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.Contains(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextSpan.Equals(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.Equals(System.Object) +M:Microsoft.CodeAnalysis.Text.TextSpan.FromBounds(System.Int32,System.Int32) +M:Microsoft.CodeAnalysis.Text.TextSpan.get_End +M:Microsoft.CodeAnalysis.Text.TextSpan.get_IsEmpty +M:Microsoft.CodeAnalysis.Text.TextSpan.get_Length +M:Microsoft.CodeAnalysis.Text.TextSpan.get_Start +M:Microsoft.CodeAnalysis.Text.TextSpan.GetHashCode +M:Microsoft.CodeAnalysis.Text.TextSpan.Intersection(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.IntersectsWith(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.IntersectsWith(System.Int32) +M:Microsoft.CodeAnalysis.Text.TextSpan.op_Equality(Microsoft.CodeAnalysis.Text.TextSpan,Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.op_Inequality(Microsoft.CodeAnalysis.Text.TextSpan,Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.Overlap(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.OverlapsWith(Microsoft.CodeAnalysis.Text.TextSpan) +M:Microsoft.CodeAnalysis.Text.TextSpan.ToString +M:Microsoft.CodeAnalysis.TypedConstant.Equals(Microsoft.CodeAnalysis.TypedConstant) +M:Microsoft.CodeAnalysis.TypedConstant.Equals(System.Object) +M:Microsoft.CodeAnalysis.TypedConstant.get_IsNull +M:Microsoft.CodeAnalysis.TypedConstant.get_Kind +M:Microsoft.CodeAnalysis.TypedConstant.get_Type +M:Microsoft.CodeAnalysis.TypedConstant.get_Value +M:Microsoft.CodeAnalysis.TypedConstant.get_Values +M:Microsoft.CodeAnalysis.TypedConstant.GetHashCode +M:Microsoft.CodeAnalysis.TypeInfo.Equals(Microsoft.CodeAnalysis.TypeInfo) +M:Microsoft.CodeAnalysis.TypeInfo.Equals(System.Object) +M:Microsoft.CodeAnalysis.TypeInfo.get_ConvertedNullability +M:Microsoft.CodeAnalysis.TypeInfo.get_ConvertedType +M:Microsoft.CodeAnalysis.TypeInfo.get_Nullability +M:Microsoft.CodeAnalysis.TypeInfo.get_Type +M:Microsoft.CodeAnalysis.TypeInfo.GetHashCode +M:Microsoft.CodeAnalysis.UnresolvedMetadataReference.get_Display +M:Microsoft.CodeAnalysis.UnresolvedMetadataReference.get_Reference +M:Microsoft.CodeAnalysis.XmlFileResolver.#ctor(System.String) +M:Microsoft.CodeAnalysis.XmlFileResolver.Equals(System.Object) +M:Microsoft.CodeAnalysis.XmlFileResolver.FileExists(System.String) +M:Microsoft.CodeAnalysis.XmlFileResolver.get_BaseDirectory +M:Microsoft.CodeAnalysis.XmlFileResolver.get_Default +M:Microsoft.CodeAnalysis.XmlFileResolver.GetHashCode +M:Microsoft.CodeAnalysis.XmlFileResolver.OpenRead(System.String) +M:Microsoft.CodeAnalysis.XmlFileResolver.ResolveReference(System.String,System.String) +M:Microsoft.CodeAnalysis.XmlReferenceResolver.#ctor +M:Microsoft.CodeAnalysis.XmlReferenceResolver.Equals(System.Object) +M:Microsoft.CodeAnalysis.XmlReferenceResolver.GetHashCode +M:Microsoft.CodeAnalysis.XmlReferenceResolver.OpenRead(System.String) +M:Microsoft.CodeAnalysis.XmlReferenceResolver.ResolveReference(System.String,System.String) +T:Microsoft.CodeAnalysis.Accessibility +T:Microsoft.CodeAnalysis.AdditionalText +T:Microsoft.CodeAnalysis.AnalyzerConfig +T:Microsoft.CodeAnalysis.AnalyzerConfigOptionsResult +T:Microsoft.CodeAnalysis.AnalyzerConfigSet +T:Microsoft.CodeAnalysis.AnnotationExtensions +T:Microsoft.CodeAnalysis.AssemblyIdentity +T:Microsoft.CodeAnalysis.AssemblyIdentityComparer +T:Microsoft.CodeAnalysis.AssemblyIdentityComparer.ComparisonResult +T:Microsoft.CodeAnalysis.AssemblyIdentityParts +T:Microsoft.CodeAnalysis.AssemblyMetadata +T:Microsoft.CodeAnalysis.AttributeData +T:Microsoft.CodeAnalysis.CandidateReason +T:Microsoft.CodeAnalysis.CaseInsensitiveComparison +T:Microsoft.CodeAnalysis.ChildSyntaxList +T:Microsoft.CodeAnalysis.ChildSyntaxList.Enumerator +T:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed +T:Microsoft.CodeAnalysis.ChildSyntaxList.Reversed.Enumerator +T:Microsoft.CodeAnalysis.CommandLineAnalyzerReference +T:Microsoft.CodeAnalysis.CommandLineArguments +T:Microsoft.CodeAnalysis.CommandLineReference +T:Microsoft.CodeAnalysis.CommandLineSourceFile +T:Microsoft.CodeAnalysis.Compilation +T:Microsoft.CodeAnalysis.CompilationOptions +T:Microsoft.CodeAnalysis.CompilationReference +T:Microsoft.CodeAnalysis.ControlFlowAnalysis +T:Microsoft.CodeAnalysis.CustomModifier +T:Microsoft.CodeAnalysis.DataFlowAnalysis +T:Microsoft.CodeAnalysis.DesktopAssemblyIdentityComparer +T:Microsoft.CodeAnalysis.Diagnostic +T:Microsoft.CodeAnalysis.DiagnosticDescriptor +T:Microsoft.CodeAnalysis.DiagnosticFormatter +T:Microsoft.CodeAnalysis.Diagnostics.AdditionalFileAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.AdditionalTextValueProvider`1 +T:Microsoft.CodeAnalysis.Diagnostics.AnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.AnalysisResult +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptionsProvider +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerFileReference +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerImageReference +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerLoadFailureEventArgs.FailureErrorCode +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions +T:Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference +T:Microsoft.CodeAnalysis.Diagnostics.CodeBlockAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.CodeBlockStartAnalysisContext`1 +T:Microsoft.CodeAnalysis.Diagnostics.CompilationAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.CompilationStartAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzers +T:Microsoft.CodeAnalysis.Diagnostics.CompilationWithAnalyzersOptions +T:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzer +T:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerAttribute +T:Microsoft.CodeAnalysis.Diagnostics.DiagnosticAnalyzerExtensions +T:Microsoft.CodeAnalysis.Diagnostics.DiagnosticSuppressor +T:Microsoft.CodeAnalysis.Diagnostics.GeneratedCodeAnalysisFlags +T:Microsoft.CodeAnalysis.Diagnostics.OperationAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.OperationBlockStartAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.SemanticModelAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.SourceTextValueProvider`1 +T:Microsoft.CodeAnalysis.Diagnostics.Suppression +T:Microsoft.CodeAnalysis.Diagnostics.SuppressionAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.SuppressionInfo +T:Microsoft.CodeAnalysis.Diagnostics.SymbolAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.SymbolStartAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.SyntaxNodeAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeAnalysisContext +T:Microsoft.CodeAnalysis.Diagnostics.SyntaxTreeValueProvider`1 +T:Microsoft.CodeAnalysis.Diagnostics.Telemetry.AnalyzerTelemetryInfo +T:Microsoft.CodeAnalysis.Diagnostics.UnresolvedAnalyzerReference +T:Microsoft.CodeAnalysis.DiagnosticSeverity +T:Microsoft.CodeAnalysis.DllImportData +T:Microsoft.CodeAnalysis.DocumentationCommentId +T:Microsoft.CodeAnalysis.DocumentationMode +T:Microsoft.CodeAnalysis.DocumentationProvider +T:Microsoft.CodeAnalysis.EmbeddedText +T:Microsoft.CodeAnalysis.Emit.DebugInformationFormat +T:Microsoft.CodeAnalysis.Emit.EditAndContinueMethodDebugInformation +T:Microsoft.CodeAnalysis.Emit.EmitBaseline +T:Microsoft.CodeAnalysis.Emit.EmitDifferenceResult +T:Microsoft.CodeAnalysis.Emit.EmitOptions +T:Microsoft.CodeAnalysis.Emit.EmitResult +T:Microsoft.CodeAnalysis.Emit.InstrumentationKind +T:Microsoft.CodeAnalysis.Emit.MethodInstrumentation +T:Microsoft.CodeAnalysis.Emit.RuntimeRudeEdit +T:Microsoft.CodeAnalysis.Emit.SemanticEdit +T:Microsoft.CodeAnalysis.Emit.SemanticEditKind +T:Microsoft.CodeAnalysis.ErrorLogOptions +T:Microsoft.CodeAnalysis.FileLinePositionSpan +T:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock +T:Microsoft.CodeAnalysis.FlowAnalysis.BasicBlockKind +T:Microsoft.CodeAnalysis.FlowAnalysis.CaptureId +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranchSemantics +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowConditionKind +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraphExtensions +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion +T:Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegionKind +T:Microsoft.CodeAnalysis.FlowAnalysis.ICaughtExceptionOperation +T:Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation +T:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation +T:Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation +T:Microsoft.CodeAnalysis.FlowAnalysis.IIsNullOperation +T:Microsoft.CodeAnalysis.FlowAnalysis.IStaticLocalInitializationSemaphoreOperation +T:Microsoft.CodeAnalysis.GeneratedKind +T:Microsoft.CodeAnalysis.GeneratedSourceResult +T:Microsoft.CodeAnalysis.GeneratorAttribute +T:Microsoft.CodeAnalysis.GeneratorAttributeSyntaxContext +T:Microsoft.CodeAnalysis.GeneratorDriver +T:Microsoft.CodeAnalysis.GeneratorDriverOptions +T:Microsoft.CodeAnalysis.GeneratorDriverRunResult +T:Microsoft.CodeAnalysis.GeneratorDriverTimingInfo +T:Microsoft.CodeAnalysis.GeneratorExecutionContext +T:Microsoft.CodeAnalysis.GeneratorExtensions +T:Microsoft.CodeAnalysis.GeneratorInitializationContext +T:Microsoft.CodeAnalysis.GeneratorPostInitializationContext +T:Microsoft.CodeAnalysis.GeneratorRunResult +T:Microsoft.CodeAnalysis.GeneratorSyntaxContext +T:Microsoft.CodeAnalysis.GeneratorTimingInfo +T:Microsoft.CodeAnalysis.IAliasSymbol +T:Microsoft.CodeAnalysis.IAnalyzerAssemblyLoader +T:Microsoft.CodeAnalysis.IArrayTypeSymbol +T:Microsoft.CodeAnalysis.IAssemblySymbol +T:Microsoft.CodeAnalysis.ICompilationUnitSyntax +T:Microsoft.CodeAnalysis.IDiscardSymbol +T:Microsoft.CodeAnalysis.IDynamicTypeSymbol +T:Microsoft.CodeAnalysis.IErrorTypeSymbol +T:Microsoft.CodeAnalysis.IEventSymbol +T:Microsoft.CodeAnalysis.IFieldSymbol +T:Microsoft.CodeAnalysis.IFunctionPointerTypeSymbol +T:Microsoft.CodeAnalysis.IImportScope +T:Microsoft.CodeAnalysis.IIncrementalGenerator +T:Microsoft.CodeAnalysis.ILabelSymbol +T:Microsoft.CodeAnalysis.ILocalSymbol +T:Microsoft.CodeAnalysis.IMethodSymbol +T:Microsoft.CodeAnalysis.IModuleSymbol +T:Microsoft.CodeAnalysis.ImportedNamespaceOrType +T:Microsoft.CodeAnalysis.ImportedXmlNamespace +T:Microsoft.CodeAnalysis.INamedTypeSymbol +T:Microsoft.CodeAnalysis.INamespaceOrTypeSymbol +T:Microsoft.CodeAnalysis.INamespaceSymbol +T:Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext +T:Microsoft.CodeAnalysis.IncrementalGeneratorOutputKind +T:Microsoft.CodeAnalysis.IncrementalGeneratorPostInitializationContext +T:Microsoft.CodeAnalysis.IncrementalGeneratorRunStep +T:Microsoft.CodeAnalysis.IncrementalStepRunReason +T:Microsoft.CodeAnalysis.IncrementalValueProvider`1 +T:Microsoft.CodeAnalysis.IncrementalValueProviderExtensions +T:Microsoft.CodeAnalysis.IncrementalValuesProvider`1 +T:Microsoft.CodeAnalysis.IOperation +T:Microsoft.CodeAnalysis.IOperation.OperationList +T:Microsoft.CodeAnalysis.IOperation.OperationList.Enumerator +T:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed +T:Microsoft.CodeAnalysis.IOperation.OperationList.Reversed.Enumerator +T:Microsoft.CodeAnalysis.IParameterSymbol +T:Microsoft.CodeAnalysis.IPointerTypeSymbol +T:Microsoft.CodeAnalysis.IPreprocessingSymbol +T:Microsoft.CodeAnalysis.IPropertySymbol +T:Microsoft.CodeAnalysis.IRangeVariableSymbol +T:Microsoft.CodeAnalysis.ISkippedTokensTriviaSyntax +T:Microsoft.CodeAnalysis.ISourceAssemblySymbol +T:Microsoft.CodeAnalysis.ISourceGenerator +T:Microsoft.CodeAnalysis.IStructuredTriviaSyntax +T:Microsoft.CodeAnalysis.ISymbol +T:Microsoft.CodeAnalysis.ISymbolExtensions +T:Microsoft.CodeAnalysis.ISyntaxContextReceiver +T:Microsoft.CodeAnalysis.ISyntaxReceiver +T:Microsoft.CodeAnalysis.ITypeParameterSymbol +T:Microsoft.CodeAnalysis.ITypeSymbol +T:Microsoft.CodeAnalysis.LanguageNames +T:Microsoft.CodeAnalysis.LineMapping +T:Microsoft.CodeAnalysis.LineVisibility +T:Microsoft.CodeAnalysis.LocalizableResourceString +T:Microsoft.CodeAnalysis.LocalizableString +T:Microsoft.CodeAnalysis.Location +T:Microsoft.CodeAnalysis.LocationKind +T:Microsoft.CodeAnalysis.Metadata +T:Microsoft.CodeAnalysis.MetadataId +T:Microsoft.CodeAnalysis.MetadataImageKind +T:Microsoft.CodeAnalysis.MetadataImportOptions +T:Microsoft.CodeAnalysis.MetadataReference +T:Microsoft.CodeAnalysis.MetadataReferenceProperties +T:Microsoft.CodeAnalysis.MetadataReferenceResolver +T:Microsoft.CodeAnalysis.MethodKind +T:Microsoft.CodeAnalysis.ModelExtensions +T:Microsoft.CodeAnalysis.ModuleMetadata +T:Microsoft.CodeAnalysis.NamespaceKind +T:Microsoft.CodeAnalysis.NullabilityInfo +T:Microsoft.CodeAnalysis.NullableAnnotation +T:Microsoft.CodeAnalysis.NullableContext +T:Microsoft.CodeAnalysis.NullableContextExtensions +T:Microsoft.CodeAnalysis.NullableContextOptions +T:Microsoft.CodeAnalysis.NullableContextOptionsExtensions +T:Microsoft.CodeAnalysis.NullableFlowState +T:Microsoft.CodeAnalysis.OperationKind +T:Microsoft.CodeAnalysis.Operations.ArgumentKind +T:Microsoft.CodeAnalysis.Operations.BinaryOperatorKind +T:Microsoft.CodeAnalysis.Operations.BranchKind +T:Microsoft.CodeAnalysis.Operations.CaseKind +T:Microsoft.CodeAnalysis.Operations.CommonConversion +T:Microsoft.CodeAnalysis.Operations.IAddressOfOperation +T:Microsoft.CodeAnalysis.Operations.IAnonymousFunctionOperation +T:Microsoft.CodeAnalysis.Operations.IAnonymousObjectCreationOperation +T:Microsoft.CodeAnalysis.Operations.IArgumentOperation +T:Microsoft.CodeAnalysis.Operations.IArrayCreationOperation +T:Microsoft.CodeAnalysis.Operations.IArrayElementReferenceOperation +T:Microsoft.CodeAnalysis.Operations.IArrayInitializerOperation +T:Microsoft.CodeAnalysis.Operations.IAssignmentOperation +T:Microsoft.CodeAnalysis.Operations.IAttributeOperation +T:Microsoft.CodeAnalysis.Operations.IAwaitOperation +T:Microsoft.CodeAnalysis.Operations.IBinaryOperation +T:Microsoft.CodeAnalysis.Operations.IBinaryPatternOperation +T:Microsoft.CodeAnalysis.Operations.IBlockOperation +T:Microsoft.CodeAnalysis.Operations.IBranchOperation +T:Microsoft.CodeAnalysis.Operations.ICaseClauseOperation +T:Microsoft.CodeAnalysis.Operations.ICatchClauseOperation +T:Microsoft.CodeAnalysis.Operations.ICoalesceAssignmentOperation +T:Microsoft.CodeAnalysis.Operations.ICoalesceOperation +T:Microsoft.CodeAnalysis.Operations.ICollectionElementInitializerOperation +T:Microsoft.CodeAnalysis.Operations.ICollectionExpressionOperation +T:Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation +T:Microsoft.CodeAnalysis.Operations.IConditionalAccessInstanceOperation +T:Microsoft.CodeAnalysis.Operations.IConditionalAccessOperation +T:Microsoft.CodeAnalysis.Operations.IConditionalOperation +T:Microsoft.CodeAnalysis.Operations.IConstantPatternOperation +T:Microsoft.CodeAnalysis.Operations.IConstructorBodyOperation +T:Microsoft.CodeAnalysis.Operations.IConversionOperation +T:Microsoft.CodeAnalysis.Operations.IDeclarationExpressionOperation +T:Microsoft.CodeAnalysis.Operations.IDeclarationPatternOperation +T:Microsoft.CodeAnalysis.Operations.IDeconstructionAssignmentOperation +T:Microsoft.CodeAnalysis.Operations.IDefaultCaseClauseOperation +T:Microsoft.CodeAnalysis.Operations.IDefaultValueOperation +T:Microsoft.CodeAnalysis.Operations.IDelegateCreationOperation +T:Microsoft.CodeAnalysis.Operations.IDiscardOperation +T:Microsoft.CodeAnalysis.Operations.IDiscardPatternOperation +T:Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation +T:Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation +T:Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation +T:Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation +T:Microsoft.CodeAnalysis.Operations.IEmptyOperation +T:Microsoft.CodeAnalysis.Operations.IEndOperation +T:Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation +T:Microsoft.CodeAnalysis.Operations.IEventReferenceOperation +T:Microsoft.CodeAnalysis.Operations.IExpressionStatementOperation +T:Microsoft.CodeAnalysis.Operations.IFieldInitializerOperation +T:Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation +T:Microsoft.CodeAnalysis.Operations.IForEachLoopOperation +T:Microsoft.CodeAnalysis.Operations.IForLoopOperation +T:Microsoft.CodeAnalysis.Operations.IForToLoopOperation +T:Microsoft.CodeAnalysis.Operations.IFunctionPointerInvocationOperation +T:Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation +T:Microsoft.CodeAnalysis.Operations.IIncrementOrDecrementOperation +T:Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation +T:Microsoft.CodeAnalysis.Operations.IInstanceReferenceOperation +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringAdditionOperation +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringAppendOperation +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringContentOperation +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerArgumentPlaceholderOperation +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringHandlerCreationOperation +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringOperation +T:Microsoft.CodeAnalysis.Operations.IInterpolatedStringTextOperation +T:Microsoft.CodeAnalysis.Operations.IInterpolationOperation +T:Microsoft.CodeAnalysis.Operations.IInvalidOperation +T:Microsoft.CodeAnalysis.Operations.IInvocationOperation +T:Microsoft.CodeAnalysis.Operations.IIsPatternOperation +T:Microsoft.CodeAnalysis.Operations.IIsTypeOperation +T:Microsoft.CodeAnalysis.Operations.ILabeledOperation +T:Microsoft.CodeAnalysis.Operations.IListPatternOperation +T:Microsoft.CodeAnalysis.Operations.ILiteralOperation +T:Microsoft.CodeAnalysis.Operations.ILocalFunctionOperation +T:Microsoft.CodeAnalysis.Operations.ILocalReferenceOperation +T:Microsoft.CodeAnalysis.Operations.ILockOperation +T:Microsoft.CodeAnalysis.Operations.ILoopOperation +T:Microsoft.CodeAnalysis.Operations.IMemberInitializerOperation +T:Microsoft.CodeAnalysis.Operations.IMemberReferenceOperation +T:Microsoft.CodeAnalysis.Operations.IMethodBodyBaseOperation +T:Microsoft.CodeAnalysis.Operations.IMethodBodyOperation +T:Microsoft.CodeAnalysis.Operations.IMethodReferenceOperation +T:Microsoft.CodeAnalysis.Operations.INameOfOperation +T:Microsoft.CodeAnalysis.Operations.INegatedPatternOperation +T:Microsoft.CodeAnalysis.Operations.InstanceReferenceKind +T:Microsoft.CodeAnalysis.Operations.InterpolatedStringArgumentPlaceholderKind +T:Microsoft.CodeAnalysis.Operations.IObjectCreationOperation +T:Microsoft.CodeAnalysis.Operations.IObjectOrCollectionInitializerOperation +T:Microsoft.CodeAnalysis.Operations.IOmittedArgumentOperation +T:Microsoft.CodeAnalysis.Operations.IParameterInitializerOperation +T:Microsoft.CodeAnalysis.Operations.IParameterReferenceOperation +T:Microsoft.CodeAnalysis.Operations.IParenthesizedOperation +T:Microsoft.CodeAnalysis.Operations.IPatternCaseClauseOperation +T:Microsoft.CodeAnalysis.Operations.IPatternOperation +T:Microsoft.CodeAnalysis.Operations.IPropertyInitializerOperation +T:Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation +T:Microsoft.CodeAnalysis.Operations.IPropertySubpatternOperation +T:Microsoft.CodeAnalysis.Operations.IRaiseEventOperation +T:Microsoft.CodeAnalysis.Operations.IRangeCaseClauseOperation +T:Microsoft.CodeAnalysis.Operations.IRangeOperation +T:Microsoft.CodeAnalysis.Operations.IRecursivePatternOperation +T:Microsoft.CodeAnalysis.Operations.IReDimClauseOperation +T:Microsoft.CodeAnalysis.Operations.IReDimOperation +T:Microsoft.CodeAnalysis.Operations.IRelationalCaseClauseOperation +T:Microsoft.CodeAnalysis.Operations.IRelationalPatternOperation +T:Microsoft.CodeAnalysis.Operations.IReturnOperation +T:Microsoft.CodeAnalysis.Operations.ISimpleAssignmentOperation +T:Microsoft.CodeAnalysis.Operations.ISingleValueCaseClauseOperation +T:Microsoft.CodeAnalysis.Operations.ISizeOfOperation +T:Microsoft.CodeAnalysis.Operations.ISlicePatternOperation +T:Microsoft.CodeAnalysis.Operations.ISpreadOperation +T:Microsoft.CodeAnalysis.Operations.IStopOperation +T:Microsoft.CodeAnalysis.Operations.ISwitchCaseOperation +T:Microsoft.CodeAnalysis.Operations.ISwitchExpressionArmOperation +T:Microsoft.CodeAnalysis.Operations.ISwitchExpressionOperation +T:Microsoft.CodeAnalysis.Operations.ISwitchOperation +T:Microsoft.CodeAnalysis.Operations.ISymbolInitializerOperation +T:Microsoft.CodeAnalysis.Operations.IThrowOperation +T:Microsoft.CodeAnalysis.Operations.ITranslatedQueryOperation +T:Microsoft.CodeAnalysis.Operations.ITryOperation +T:Microsoft.CodeAnalysis.Operations.ITupleBinaryOperation +T:Microsoft.CodeAnalysis.Operations.ITupleOperation +T:Microsoft.CodeAnalysis.Operations.ITypeOfOperation +T:Microsoft.CodeAnalysis.Operations.ITypeParameterObjectCreationOperation +T:Microsoft.CodeAnalysis.Operations.ITypePatternOperation +T:Microsoft.CodeAnalysis.Operations.IUnaryOperation +T:Microsoft.CodeAnalysis.Operations.IUsingDeclarationOperation +T:Microsoft.CodeAnalysis.Operations.IUsingOperation +T:Microsoft.CodeAnalysis.Operations.IUtf8StringOperation +T:Microsoft.CodeAnalysis.Operations.IVariableDeclarationGroupOperation +T:Microsoft.CodeAnalysis.Operations.IVariableDeclarationOperation +T:Microsoft.CodeAnalysis.Operations.IVariableDeclaratorOperation +T:Microsoft.CodeAnalysis.Operations.IVariableInitializerOperation +T:Microsoft.CodeAnalysis.Operations.IWhileLoopOperation +T:Microsoft.CodeAnalysis.Operations.IWithOperation +T:Microsoft.CodeAnalysis.Operations.LoopKind +T:Microsoft.CodeAnalysis.Operations.OperationExtensions +T:Microsoft.CodeAnalysis.Operations.OperationVisitor +T:Microsoft.CodeAnalysis.Operations.OperationVisitor`2 +T:Microsoft.CodeAnalysis.Operations.OperationWalker +T:Microsoft.CodeAnalysis.Operations.OperationWalker`1 +T:Microsoft.CodeAnalysis.Operations.UnaryOperatorKind +T:Microsoft.CodeAnalysis.OptimizationLevel +T:Microsoft.CodeAnalysis.Optional`1 +T:Microsoft.CodeAnalysis.OutputKind +T:Microsoft.CodeAnalysis.ParseOptions +T:Microsoft.CodeAnalysis.Platform +T:Microsoft.CodeAnalysis.PortableExecutableReference +T:Microsoft.CodeAnalysis.PreprocessingSymbolInfo +T:Microsoft.CodeAnalysis.RefKind +T:Microsoft.CodeAnalysis.ReportDiagnostic +T:Microsoft.CodeAnalysis.ResourceDescription +T:Microsoft.CodeAnalysis.RuleSet +T:Microsoft.CodeAnalysis.RuleSetInclude +T:Microsoft.CodeAnalysis.RuntimeCapability +T:Microsoft.CodeAnalysis.SarifVersion +T:Microsoft.CodeAnalysis.SarifVersionFacts +T:Microsoft.CodeAnalysis.ScopedKind +T:Microsoft.CodeAnalysis.ScriptCompilationInfo +T:Microsoft.CodeAnalysis.SemanticModel +T:Microsoft.CodeAnalysis.SemanticModelOptions +T:Microsoft.CodeAnalysis.SeparatedSyntaxList +T:Microsoft.CodeAnalysis.SeparatedSyntaxList`1 +T:Microsoft.CodeAnalysis.SeparatedSyntaxList`1.Enumerator +T:Microsoft.CodeAnalysis.SourceCodeKind +T:Microsoft.CodeAnalysis.SourceFileResolver +T:Microsoft.CodeAnalysis.SourceProductionContext +T:Microsoft.CodeAnalysis.SourceReferenceResolver +T:Microsoft.CodeAnalysis.SpecialType +T:Microsoft.CodeAnalysis.SpeculativeBindingOption +T:Microsoft.CodeAnalysis.StrongNameProvider +T:Microsoft.CodeAnalysis.SubsystemVersion +T:Microsoft.CodeAnalysis.SuppressionDescriptor +T:Microsoft.CodeAnalysis.SymbolDisplayDelegateStyle +T:Microsoft.CodeAnalysis.SymbolDisplayExtensionMethodStyle +T:Microsoft.CodeAnalysis.SymbolDisplayExtensions +T:Microsoft.CodeAnalysis.SymbolDisplayFormat +T:Microsoft.CodeAnalysis.SymbolDisplayGenericsOptions +T:Microsoft.CodeAnalysis.SymbolDisplayGlobalNamespaceStyle +T:Microsoft.CodeAnalysis.SymbolDisplayKindOptions +T:Microsoft.CodeAnalysis.SymbolDisplayLocalOptions +T:Microsoft.CodeAnalysis.SymbolDisplayMemberOptions +T:Microsoft.CodeAnalysis.SymbolDisplayMiscellaneousOptions +T:Microsoft.CodeAnalysis.SymbolDisplayParameterOptions +T:Microsoft.CodeAnalysis.SymbolDisplayPart +T:Microsoft.CodeAnalysis.SymbolDisplayPartKind +T:Microsoft.CodeAnalysis.SymbolDisplayPropertyStyle +T:Microsoft.CodeAnalysis.SymbolDisplayTypeQualificationStyle +T:Microsoft.CodeAnalysis.SymbolEqualityComparer +T:Microsoft.CodeAnalysis.SymbolFilter +T:Microsoft.CodeAnalysis.SymbolInfo +T:Microsoft.CodeAnalysis.SymbolKind +T:Microsoft.CodeAnalysis.SymbolVisitor +T:Microsoft.CodeAnalysis.SymbolVisitor`1 +T:Microsoft.CodeAnalysis.SymbolVisitor`2 +T:Microsoft.CodeAnalysis.SyntaxAnnotation +T:Microsoft.CodeAnalysis.SyntaxContextReceiverCreator +T:Microsoft.CodeAnalysis.SyntaxList +T:Microsoft.CodeAnalysis.SyntaxList`1 +T:Microsoft.CodeAnalysis.SyntaxList`1.Enumerator +T:Microsoft.CodeAnalysis.SyntaxNode +T:Microsoft.CodeAnalysis.SyntaxNodeExtensions +T:Microsoft.CodeAnalysis.SyntaxNodeOrToken +T:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList +T:Microsoft.CodeAnalysis.SyntaxNodeOrTokenList.Enumerator +T:Microsoft.CodeAnalysis.SyntaxReceiverCreator +T:Microsoft.CodeAnalysis.SyntaxReference +T:Microsoft.CodeAnalysis.SyntaxRemoveOptions +T:Microsoft.CodeAnalysis.SyntaxToken +T:Microsoft.CodeAnalysis.SyntaxTokenList +T:Microsoft.CodeAnalysis.SyntaxTokenList.Enumerator +T:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed +T:Microsoft.CodeAnalysis.SyntaxTokenList.Reversed.Enumerator +T:Microsoft.CodeAnalysis.SyntaxTree +T:Microsoft.CodeAnalysis.SyntaxTreeOptionsProvider +T:Microsoft.CodeAnalysis.SyntaxTrivia +T:Microsoft.CodeAnalysis.SyntaxTriviaList +T:Microsoft.CodeAnalysis.SyntaxTriviaList.Enumerator +T:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed +T:Microsoft.CodeAnalysis.SyntaxTriviaList.Reversed.Enumerator +T:Microsoft.CodeAnalysis.SyntaxValueProvider +T:Microsoft.CodeAnalysis.SyntaxWalker +T:Microsoft.CodeAnalysis.SyntaxWalkerDepth +T:Microsoft.CodeAnalysis.Text.LinePosition +T:Microsoft.CodeAnalysis.Text.LinePositionSpan +T:Microsoft.CodeAnalysis.Text.SourceHashAlgorithm +T:Microsoft.CodeAnalysis.Text.SourceText +T:Microsoft.CodeAnalysis.Text.SourceTextContainer +T:Microsoft.CodeAnalysis.Text.TextChange +T:Microsoft.CodeAnalysis.Text.TextChangeEventArgs +T:Microsoft.CodeAnalysis.Text.TextChangeRange +T:Microsoft.CodeAnalysis.Text.TextLine +T:Microsoft.CodeAnalysis.Text.TextLineCollection +T:Microsoft.CodeAnalysis.Text.TextLineCollection.Enumerator +T:Microsoft.CodeAnalysis.Text.TextSpan +T:Microsoft.CodeAnalysis.TypedConstant +T:Microsoft.CodeAnalysis.TypedConstantKind +T:Microsoft.CodeAnalysis.TypeInfo +T:Microsoft.CodeAnalysis.TypeKind +T:Microsoft.CodeAnalysis.TypeParameterKind +T:Microsoft.CodeAnalysis.UnresolvedMetadataReference +T:Microsoft.CodeAnalysis.VarianceKind +T:Microsoft.CodeAnalysis.WellKnownDiagnosticTags +T:Microsoft.CodeAnalysis.WellKnownGeneratorInputs +T:Microsoft.CodeAnalysis.WellKnownGeneratorOutputs +T:Microsoft.CodeAnalysis.WellKnownMemberNames +T:Microsoft.CodeAnalysis.XmlFileResolver +T:Microsoft.CodeAnalysis.XmlReferenceResolver \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Collections.Immutable.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Collections.Immutable.txt new file mode 100644 index 0000000000000..cca2b21a94568 --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Collections.Immutable.txt @@ -0,0 +1,783 @@ +F:System.Collections.Immutable.ImmutableArray`1.Empty +F:System.Collections.Immutable.ImmutableDictionary`2.Empty +F:System.Collections.Immutable.ImmutableHashSet`1.Empty +F:System.Collections.Immutable.ImmutableList`1.Empty +F:System.Collections.Immutable.ImmutableSortedDictionary`2.Empty +F:System.Collections.Immutable.ImmutableSortedSet`1.Empty +M:System.Collections.Frozen.FrozenDictionary.ToFrozenDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Frozen.FrozenDictionary.ToFrozenDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Frozen.FrozenDictionary.ToFrozenDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Frozen.FrozenDictionary`2.ContainsKey(`0) +M:System.Collections.Frozen.FrozenDictionary`2.CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32) +M:System.Collections.Frozen.FrozenDictionary`2.CopyTo(System.Span{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Frozen.FrozenDictionary`2.Enumerator.get_Current +M:System.Collections.Frozen.FrozenDictionary`2.Enumerator.MoveNext +M:System.Collections.Frozen.FrozenDictionary`2.get_Comparer +M:System.Collections.Frozen.FrozenDictionary`2.get_Count +M:System.Collections.Frozen.FrozenDictionary`2.get_Empty +M:System.Collections.Frozen.FrozenDictionary`2.get_Item(`0) +M:System.Collections.Frozen.FrozenDictionary`2.get_Keys +M:System.Collections.Frozen.FrozenDictionary`2.get_Values +M:System.Collections.Frozen.FrozenDictionary`2.GetEnumerator +M:System.Collections.Frozen.FrozenDictionary`2.GetValueRefOrNullRef(`0) +M:System.Collections.Frozen.FrozenDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Frozen.FrozenSet.ToFrozenSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Frozen.FrozenSet`1.Contains(`0) +M:System.Collections.Frozen.FrozenSet`1.CopyTo(`0[],System.Int32) +M:System.Collections.Frozen.FrozenSet`1.CopyTo(System.Span{`0}) +M:System.Collections.Frozen.FrozenSet`1.Enumerator.get_Current +M:System.Collections.Frozen.FrozenSet`1.Enumerator.MoveNext +M:System.Collections.Frozen.FrozenSet`1.get_Comparer +M:System.Collections.Frozen.FrozenSet`1.get_Count +M:System.Collections.Frozen.FrozenSet`1.get_Empty +M:System.Collections.Frozen.FrozenSet`1.get_Items +M:System.Collections.Frozen.FrozenSet`1.GetEnumerator +M:System.Collections.Frozen.FrozenSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Frozen.FrozenSet`1.TryGetValue(`0,`0@) +M:System.Collections.Immutable.IImmutableDictionary`2.Add(`0,`1) +M:System.Collections.Immutable.IImmutableDictionary`2.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.IImmutableDictionary`2.Clear +M:System.Collections.Immutable.IImmutableDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.IImmutableDictionary`2.Remove(`0) +M:System.Collections.Immutable.IImmutableDictionary`2.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableDictionary`2.SetItem(`0,`1) +M:System.Collections.Immutable.IImmutableDictionary`2.SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.IImmutableDictionary`2.TryGetKey(`0,`0@) +M:System.Collections.Immutable.IImmutableList`1.Add(`0) +M:System.Collections.Immutable.IImmutableList`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableList`1.Clear +M:System.Collections.Immutable.IImmutableList`1.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.IImmutableList`1.Insert(System.Int32,`0) +M:System.Collections.Immutable.IImmutableList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableList`1.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.IImmutableList`1.Remove(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.IImmutableList`1.RemoveAll(System.Predicate{`0}) +M:System.Collections.Immutable.IImmutableList`1.RemoveAt(System.Int32) +M:System.Collections.Immutable.IImmutableList`1.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.IImmutableList`1.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Immutable.IImmutableList`1.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.IImmutableList`1.SetItem(System.Int32,`0) +M:System.Collections.Immutable.IImmutableQueue`1.Clear +M:System.Collections.Immutable.IImmutableQueue`1.Dequeue +M:System.Collections.Immutable.IImmutableQueue`1.Enqueue(`0) +M:System.Collections.Immutable.IImmutableQueue`1.get_IsEmpty +M:System.Collections.Immutable.IImmutableQueue`1.Peek +M:System.Collections.Immutable.IImmutableSet`1.Add(`0) +M:System.Collections.Immutable.IImmutableSet`1.Clear +M:System.Collections.Immutable.IImmutableSet`1.Contains(`0) +M:System.Collections.Immutable.IImmutableSet`1.Except(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.Intersect(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.Remove(`0) +M:System.Collections.Immutable.IImmutableSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.SymmetricExcept(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableSet`1.TryGetValue(`0,`0@) +M:System.Collections.Immutable.IImmutableSet`1.Union(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.IImmutableStack`1.Clear +M:System.Collections.Immutable.IImmutableStack`1.get_IsEmpty +M:System.Collections.Immutable.IImmutableStack`1.Peek +M:System.Collections.Immutable.IImmutableStack`1.Pop +M:System.Collections.Immutable.IImmutableStack`1.Push(`0) +M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},``0) +M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},``0,System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,``0) +M:System.Collections.Immutable.ImmutableArray.BinarySearch``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,``0,System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableArray.Create``1 +M:System.Collections.Immutable.ImmutableArray.Create``1(``0) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0,``0) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0,``0,``0) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0,``0,``0,``0) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableArray.Create``1(``0[],System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray.Create``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableArray.Create``1(System.Span{``0}) +M:System.Collections.Immutable.ImmutableArray.CreateBuilder``1 +M:System.Collections.Immutable.ImmutableArray.CreateBuilder``1(System.Int32) +M:System.Collections.Immutable.ImmutableArray.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableArray.CreateRange``2(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``1}) +M:System.Collections.Immutable.ImmutableArray.CreateRange``2(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,System.Func{``0,``1}) +M:System.Collections.Immutable.ImmutableArray.CreateRange``3(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``1,``2},``1) +M:System.Collections.Immutable.ImmutableArray.CreateRange``3(System.Collections.Immutable.ImmutableArray{``0},System.Int32,System.Int32,System.Func{``0,``1,``2},``1) +M:System.Collections.Immutable.ImmutableArray.ToImmutableArray``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableArray.ToImmutableArray``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Collections.Immutable.ImmutableArray.ToImmutableArray``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableArray.ToImmutableArray``1(System.Span{``0}) +M:System.Collections.Immutable.ImmutableArray`1.Add(`0) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(`0[]) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(`0[],System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(System.Collections.Immutable.ImmutableArray{`0},System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.AddRange(System.ReadOnlySpan{`0}) +M:System.Collections.Immutable.ImmutableArray`1.AddRange``1(``0[]) +M:System.Collections.Immutable.ImmutableArray`1.AddRange``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableArray`1.As``1 +M:System.Collections.Immutable.ImmutableArray`1.AsMemory +M:System.Collections.Immutable.ImmutableArray`1.AsSpan +M:System.Collections.Immutable.ImmutableArray`1.AsSpan(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.AsSpan(System.Range) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Add(`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(`0[]) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(`0[],System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Immutable.ImmutableArray{`0},System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.Collections.Immutable.ImmutableArray{`0}.Builder) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange(System.ReadOnlySpan{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(``0[]) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Collections.Immutable.ImmutableArray`1.Builder.AddRange``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Clear +M:System.Collections.Immutable.ImmutableArray`1.Builder.Contains(`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.CopyTo(`0[]) +M:System.Collections.Immutable.ImmutableArray`1.Builder.CopyTo(`0[],System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.CopyTo(System.Int32,`0[],System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.CopyTo(System.Span{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.DrainToImmutable +M:System.Collections.Immutable.ImmutableArray`1.Builder.get_Capacity +M:System.Collections.Immutable.ImmutableArray`1.Builder.get_Count +M:System.Collections.Immutable.ImmutableArray`1.Builder.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Insert(System.Int32,`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.InsertRange(System.Int32,System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.MoveToImmutable +M:System.Collections.Immutable.ImmutableArray`1.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Remove(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveAt(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Replace(`0,`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Reverse +M:System.Collections.Immutable.ImmutableArray`1.Builder.set_Capacity(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.set_Count(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Builder.set_Item(System.Int32,`0) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort +M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort(System.Comparison{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Builder.ToArray +M:System.Collections.Immutable.ImmutableArray`1.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableArray`1.CastArray``1 +M:System.Collections.Immutable.ImmutableArray`1.CastUp``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableArray`1.Clear +M:System.Collections.Immutable.ImmutableArray`1.Contains(`0) +M:System.Collections.Immutable.ImmutableArray`1.Contains(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.CopyTo(`0[]) +M:System.Collections.Immutable.ImmutableArray`1.CopyTo(`0[],System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.CopyTo(System.Span{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableArray`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableArray`1.Equals(System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Equals(System.Object) +M:System.Collections.Immutable.ImmutableArray`1.get_IsDefault +M:System.Collections.Immutable.ImmutableArray`1.get_IsDefaultOrEmpty +M:System.Collections.Immutable.ImmutableArray`1.get_IsEmpty +M:System.Collections.Immutable.ImmutableArray`1.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.get_Length +M:System.Collections.Immutable.ImmutableArray`1.GetEnumerator +M:System.Collections.Immutable.ImmutableArray`1.GetHashCode +M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0) +M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Insert(System.Int32,`0) +M:System.Collections.Immutable.ImmutableArray`1.InsertRange(System.Int32,`0[]) +M:System.Collections.Immutable.ImmutableArray`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.InsertRange(System.Int32,System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.InsertRange(System.Int32,System.ReadOnlySpan{`0}) +M:System.Collections.Immutable.ImmutableArray`1.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0) +M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.OfType``1 +M:System.Collections.Immutable.ImmutableArray`1.op_Equality(System.Collections.Immutable.ImmutableArray{`0},System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.op_Equality(System.Nullable{System.Collections.Immutable.ImmutableArray{`0}},System.Nullable{System.Collections.Immutable.ImmutableArray{`0}}) +M:System.Collections.Immutable.ImmutableArray`1.op_Inequality(System.Collections.Immutable.ImmutableArray{`0},System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.op_Inequality(System.Nullable{System.Collections.Immutable.ImmutableArray{`0}},System.Nullable{System.Collections.Immutable.ImmutableArray{`0}}) +M:System.Collections.Immutable.ImmutableArray`1.Remove(`0) +M:System.Collections.Immutable.ImmutableArray`1.Remove(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveAt(System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(`0[],System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Immutable.ImmutableArray{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Collections.Immutable.ImmutableArray{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.RemoveRange(System.ReadOnlySpan{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Replace(`0,`0) +M:System.Collections.Immutable.ImmutableArray`1.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.SetItem(System.Int32,`0) +M:System.Collections.Immutable.ImmutableArray`1.Slice(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableArray`1.Sort +M:System.Collections.Immutable.ImmutableArray`1.Sort(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Sort(System.Comparison{`0}) +M:System.Collections.Immutable.ImmutableArray`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableArray`1.ToBuilder +M:System.Collections.Immutable.ImmutableDictionary.Contains``2(System.Collections.Immutable.IImmutableDictionary{``0,``1},``0,``1) +M:System.Collections.Immutable.ImmutableDictionary.Create``2 +M:System.Collections.Immutable.ImmutableDictionary.Create``2(System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableDictionary.Create``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableDictionary.CreateBuilder``2 +M:System.Collections.Immutable.ImmutableDictionary.CreateBuilder``2(System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableDictionary.CreateBuilder``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableDictionary.CreateRange``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableDictionary.CreateRange``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableDictionary.CreateRange``2(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableDictionary.GetValueOrDefault``2(System.Collections.Immutable.IImmutableDictionary{``0,``1},``0) +M:System.Collections.Immutable.ImmutableDictionary.GetValueOrDefault``2(System.Collections.Immutable.IImmutableDictionary{``0,``1},``0,``1) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}.Builder) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableDictionary.ToImmutableDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1},System.Collections.Generic.IEqualityComparer{``2}) +M:System.Collections.Immutable.ImmutableDictionary`2.Add(`0,`1) +M:System.Collections.Immutable.ImmutableDictionary`2.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Add(`0,`1) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Add(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Clear +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Contains(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.ContainsKey(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.ContainsValue(`1) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_Count +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_Item(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_KeyComparer +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_Keys +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_ValueComparer +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.get_Values +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.GetValueOrDefault(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.GetValueOrDefault(`0,`1) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.Remove(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.set_Item(`0,`1) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.set_KeyComparer(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.set_ValueComparer(System.Collections.Generic.IEqualityComparer{`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.TryGetKey(`0,`0@) +M:System.Collections.Immutable.ImmutableDictionary`2.Builder.TryGetValue(`0,`1@) +M:System.Collections.Immutable.ImmutableDictionary`2.Clear +M:System.Collections.Immutable.ImmutableDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableDictionary`2.ContainsKey(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.ContainsValue(`1) +M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.Dispose +M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableDictionary`2.Enumerator.Reset +M:System.Collections.Immutable.ImmutableDictionary`2.get_Count +M:System.Collections.Immutable.ImmutableDictionary`2.get_IsEmpty +M:System.Collections.Immutable.ImmutableDictionary`2.get_Item(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.get_KeyComparer +M:System.Collections.Immutable.ImmutableDictionary`2.get_Keys +M:System.Collections.Immutable.ImmutableDictionary`2.get_ValueComparer +M:System.Collections.Immutable.ImmutableDictionary`2.get_Values +M:System.Collections.Immutable.ImmutableDictionary`2.GetEnumerator +M:System.Collections.Immutable.ImmutableDictionary`2.Remove(`0) +M:System.Collections.Immutable.ImmutableDictionary`2.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableDictionary`2.SetItem(`0,`1) +M:System.Collections.Immutable.ImmutableDictionary`2.SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.ImmutableDictionary`2.ToBuilder +M:System.Collections.Immutable.ImmutableDictionary`2.TryGetKey(`0,`0@) +M:System.Collections.Immutable.ImmutableDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Immutable.ImmutableDictionary`2.WithComparers(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableDictionary`2.WithComparers(System.Collections.Generic.IEqualityComparer{`0},System.Collections.Generic.IEqualityComparer{`1}) +M:System.Collections.Immutable.ImmutableHashSet.Create``1 +M:System.Collections.Immutable.ImmutableHashSet.Create``1(``0) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0},``0) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0},``0[]) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.Collections.Generic.IEqualityComparer{``0},System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableHashSet.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableHashSet.CreateBuilder``1 +M:System.Collections.Immutable.ImmutableHashSet.CreateBuilder``1(System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableHashSet.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableHashSet.CreateRange``1(System.Collections.Generic.IEqualityComparer{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableHashSet.ToImmutableHashSet``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableHashSet.ToImmutableHashSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableHashSet.ToImmutableHashSet``1(System.Collections.Immutable.ImmutableHashSet{``0}.Builder) +M:System.Collections.Immutable.ImmutableHashSet`1.Add(`0) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Add(`0) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Clear +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Contains(`0) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.ExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.get_Count +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.get_KeyComparer +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IntersectWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.set_KeyComparer(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.TryGetValue(`0,`0@) +M:System.Collections.Immutable.ImmutableHashSet`1.Builder.UnionWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Clear +M:System.Collections.Immutable.ImmutableHashSet`1.Contains(`0) +M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.Dispose +M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableHashSet`1.Enumerator.Reset +M:System.Collections.Immutable.ImmutableHashSet`1.Except(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.get_Count +M:System.Collections.Immutable.ImmutableHashSet`1.get_IsEmpty +M:System.Collections.Immutable.ImmutableHashSet`1.get_KeyComparer +M:System.Collections.Immutable.ImmutableHashSet`1.GetEnumerator +M:System.Collections.Immutable.ImmutableHashSet`1.Intersect(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.Remove(`0) +M:System.Collections.Immutable.ImmutableHashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.SymmetricExcept(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.ToBuilder +M:System.Collections.Immutable.ImmutableHashSet`1.TryGetValue(`0,`0@) +M:System.Collections.Immutable.ImmutableHashSet`1.Union(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableHashSet`1.WithComparer(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableInterlocked.AddOrUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1,System.Func{``0,``1,``1}) +M:System.Collections.Immutable.ImmutableInterlocked.AddOrUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``1},System.Func{``0,``1,``1}) +M:System.Collections.Immutable.ImmutableInterlocked.Enqueue``1(System.Collections.Immutable.ImmutableQueue{``0}@,``0) +M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1) +M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``1}) +M:System.Collections.Immutable.ImmutableInterlocked.GetOrAdd``3(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,System.Func{``0,``2,``1},``2) +M:System.Collections.Immutable.ImmutableInterlocked.InterlockedCompareExchange``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0},System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableInterlocked.InterlockedExchange``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableInterlocked.InterlockedInitialize``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Collections.Immutable.ImmutableArray{``0}) +M:System.Collections.Immutable.ImmutableInterlocked.Push``1(System.Collections.Immutable.ImmutableStack{``0}@,``0) +M:System.Collections.Immutable.ImmutableInterlocked.TryAdd``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1) +M:System.Collections.Immutable.ImmutableInterlocked.TryDequeue``1(System.Collections.Immutable.ImmutableQueue{``0}@,``0@) +M:System.Collections.Immutable.ImmutableInterlocked.TryPop``1(System.Collections.Immutable.ImmutableStack{``0}@,``0@) +M:System.Collections.Immutable.ImmutableInterlocked.TryRemove``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1@) +M:System.Collections.Immutable.ImmutableInterlocked.TryUpdate``2(System.Collections.Immutable.ImmutableDictionary{``0,``1}@,``0,``1,``1) +M:System.Collections.Immutable.ImmutableInterlocked.Update``1(``0@,System.Func{``0,``0}) +M:System.Collections.Immutable.ImmutableInterlocked.Update``1(System.Collections.Immutable.ImmutableArray{``0}@,System.Func{System.Collections.Immutable.ImmutableArray{``0},System.Collections.Immutable.ImmutableArray{``0}}) +M:System.Collections.Immutable.ImmutableInterlocked.Update``2(``0@,System.Func{``0,``1,``0},``1) +M:System.Collections.Immutable.ImmutableInterlocked.Update``2(System.Collections.Immutable.ImmutableArray{``0}@,System.Func{System.Collections.Immutable.ImmutableArray{``0},``1,System.Collections.Immutable.ImmutableArray{``0}},``1) +M:System.Collections.Immutable.ImmutableList.Create``1 +M:System.Collections.Immutable.ImmutableList.Create``1(``0) +M:System.Collections.Immutable.ImmutableList.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableList.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableList.CreateBuilder``1 +M:System.Collections.Immutable.ImmutableList.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0) +M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32) +M:System.Collections.Immutable.ImmutableList.IndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0) +M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Collections.Generic.IEqualityComparer{``0}) +M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32) +M:System.Collections.Immutable.ImmutableList.LastIndexOf``1(System.Collections.Immutable.IImmutableList{``0},``0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList.Remove``1(System.Collections.Immutable.IImmutableList{``0},``0) +M:System.Collections.Immutable.ImmutableList.RemoveRange``1(System.Collections.Immutable.IImmutableList{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableList.Replace``1(System.Collections.Immutable.IImmutableList{``0},``0,``0) +M:System.Collections.Immutable.ImmutableList.ToImmutableList``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableList.ToImmutableList``1(System.Collections.Immutable.ImmutableList{``0}.Builder) +M:System.Collections.Immutable.ImmutableList`1.Add(`0) +M:System.Collections.Immutable.ImmutableList`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.BinarySearch(`0) +M:System.Collections.Immutable.ImmutableList`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Add(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.BinarySearch(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.BinarySearch(`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Clear +M:System.Collections.Immutable.ImmutableList`1.Builder.Contains(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.ConvertAll``1(System.Func{`0,``0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.CopyTo(`0[]) +M:System.Collections.Immutable.ImmutableList`1.Builder.CopyTo(`0[],System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.CopyTo(System.Int32,`0[],System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.Exists(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Find(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindIndex(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindLast(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindLastIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.FindLastIndex(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.ForEach(System.Action{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.get_Count +M:System.Collections.Immutable.ImmutableList`1.Builder.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableList`1.Builder.GetRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Insert(System.Int32,`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.Remove(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveAt(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.Replace(`0,`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Reverse +M:System.Collections.Immutable.ImmutableList`1.Builder.Reverse(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Builder.set_Item(System.Int32,`0) +M:System.Collections.Immutable.ImmutableList`1.Builder.Sort +M:System.Collections.Immutable.ImmutableList`1.Builder.Sort(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Sort(System.Comparison{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableList`1.Builder.TrueForAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Clear +M:System.Collections.Immutable.ImmutableList`1.Contains(`0) +M:System.Collections.Immutable.ImmutableList`1.ConvertAll``1(System.Func{`0,``0}) +M:System.Collections.Immutable.ImmutableList`1.CopyTo(`0[]) +M:System.Collections.Immutable.ImmutableList`1.CopyTo(`0[],System.Int32) +M:System.Collections.Immutable.ImmutableList`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Enumerator.Dispose +M:System.Collections.Immutable.ImmutableList`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableList`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableList`1.Enumerator.Reset +M:System.Collections.Immutable.ImmutableList`1.Exists(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.Find(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindIndex(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindLast(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindLastIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.FindLastIndex(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.ForEach(System.Action{`0}) +M:System.Collections.Immutable.ImmutableList`1.get_Count +M:System.Collections.Immutable.ImmutableList`1.get_IsEmpty +M:System.Collections.Immutable.ImmutableList`1.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.GetEnumerator +M:System.Collections.Immutable.ImmutableList`1.GetRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.IndexOf(`0) +M:System.Collections.Immutable.ImmutableList`1.IndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Insert(System.Int32,`0) +M:System.Collections.Immutable.ImmutableList`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.LastIndexOf(`0,System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Remove(`0) +M:System.Collections.Immutable.ImmutableList`1.Remove(`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.RemoveAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableList`1.RemoveAt(System.Int32) +M:System.Collections.Immutable.ImmutableList`1.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableList`1.RemoveRange(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.Replace(`0,`0) +M:System.Collections.Immutable.ImmutableList`1.Replace(`0,`0,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Reverse +M:System.Collections.Immutable.ImmutableList`1.Reverse(System.Int32,System.Int32) +M:System.Collections.Immutable.ImmutableList`1.SetItem(System.Int32,`0) +M:System.Collections.Immutable.ImmutableList`1.Sort +M:System.Collections.Immutable.ImmutableList`1.Sort(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.Sort(System.Comparison{`0}) +M:System.Collections.Immutable.ImmutableList`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableList`1.ToBuilder +M:System.Collections.Immutable.ImmutableList`1.TrueForAll(System.Predicate{`0}) +M:System.Collections.Immutable.ImmutableQueue.Create``1 +M:System.Collections.Immutable.ImmutableQueue.Create``1(``0) +M:System.Collections.Immutable.ImmutableQueue.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableQueue.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableQueue.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableQueue.Dequeue``1(System.Collections.Immutable.IImmutableQueue{``0},``0@) +M:System.Collections.Immutable.ImmutableQueue`1.Clear +M:System.Collections.Immutable.ImmutableQueue`1.Dequeue +M:System.Collections.Immutable.ImmutableQueue`1.Dequeue(`0@) +M:System.Collections.Immutable.ImmutableQueue`1.Enqueue(`0) +M:System.Collections.Immutable.ImmutableQueue`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableQueue`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableQueue`1.get_Empty +M:System.Collections.Immutable.ImmutableQueue`1.get_IsEmpty +M:System.Collections.Immutable.ImmutableQueue`1.GetEnumerator +M:System.Collections.Immutable.ImmutableQueue`1.Peek +M:System.Collections.Immutable.ImmutableQueue`1.PeekRef +M:System.Collections.Immutable.ImmutableSortedDictionary.Create``2 +M:System.Collections.Immutable.ImmutableSortedDictionary.Create``2(System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedDictionary.Create``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateBuilder``2 +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateBuilder``2(System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateBuilder``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateRange``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateRange``2(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary.CreateRange``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``2(System.Collections.Immutable.ImmutableSortedDictionary{``0,``1}.Builder) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IComparer{``1}) +M:System.Collections.Immutable.ImmutableSortedDictionary.ToImmutableSortedDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IComparer{``1},System.Collections.Generic.IEqualityComparer{``2}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Add(`0,`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Add(`0,`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Add(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.AddRange(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Clear +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Contains(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ContainsKey(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ContainsValue(`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_Count +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_Item(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_KeyComparer +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_Keys +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_ValueComparer +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.get_Values +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.GetValueOrDefault(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.GetValueOrDefault(`0,`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.Remove(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.set_Item(`0,`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.set_KeyComparer(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.set_ValueComparer(System.Collections.Generic.IEqualityComparer{`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.TryGetKey(`0,`0@) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.TryGetValue(`0,`1@) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder.ValueRef(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Clear +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.ContainsKey(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.ContainsValue(`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.Dispose +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator.Reset +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_Count +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_IsEmpty +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_Item(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_KeyComparer +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_Keys +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_ValueComparer +M:System.Collections.Immutable.ImmutableSortedDictionary`2.get_Values +M:System.Collections.Immutable.ImmutableSortedDictionary`2.GetEnumerator +M:System.Collections.Immutable.ImmutableSortedDictionary`2.Remove(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.RemoveRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.SetItem(`0,`1) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.SetItems(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.ToBuilder +M:System.Collections.Immutable.ImmutableSortedDictionary`2.TryGetKey(`0,`0@) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.ValueRef(`0) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.WithComparers(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableSortedDictionary`2.WithComparers(System.Collections.Generic.IComparer{`0},System.Collections.Generic.IEqualityComparer{`1}) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1 +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(``0) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0},``0) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0},``0[]) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.Collections.Generic.IComparer{``0},System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.CreateBuilder``1 +M:System.Collections.Immutable.ImmutableSortedSet.CreateBuilder``1(System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.CreateRange``1(System.Collections.Generic.IComparer{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.ToImmutableSortedSet``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.ToImmutableSortedSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) +M:System.Collections.Immutable.ImmutableSortedSet.ToImmutableSortedSet``1(System.Collections.Immutable.ImmutableSortedSet{``0}.Builder) +M:System.Collections.Immutable.ImmutableSortedSet`1.Add(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Add(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Clear +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Contains(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.ExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.get_Count +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.get_KeyComparer +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.get_Max +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.get_Min +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.GetEnumerator +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IndexOf(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IntersectWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Remove(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.Reverse +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.set_KeyComparer(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.ToImmutable +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.TryGetValue(`0,`0@) +M:System.Collections.Immutable.ImmutableSortedSet`1.Builder.UnionWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Clear +M:System.Collections.Immutable.ImmutableSortedSet`1.Contains(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.Dispose +M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator.Reset +M:System.Collections.Immutable.ImmutableSortedSet`1.Except(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.get_Count +M:System.Collections.Immutable.ImmutableSortedSet`1.get_IsEmpty +M:System.Collections.Immutable.ImmutableSortedSet`1.get_Item(System.Int32) +M:System.Collections.Immutable.ImmutableSortedSet`1.get_KeyComparer +M:System.Collections.Immutable.ImmutableSortedSet`1.get_Max +M:System.Collections.Immutable.ImmutableSortedSet`1.get_Min +M:System.Collections.Immutable.ImmutableSortedSet`1.GetEnumerator +M:System.Collections.Immutable.ImmutableSortedSet`1.IndexOf(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Intersect(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.ItemRef(System.Int32) +M:System.Collections.Immutable.ImmutableSortedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.Remove(`0) +M:System.Collections.Immutable.ImmutableSortedSet`1.Reverse +M:System.Collections.Immutable.ImmutableSortedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.SymmetricExcept(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.ToBuilder +M:System.Collections.Immutable.ImmutableSortedSet`1.TryGetValue(`0,`0@) +M:System.Collections.Immutable.ImmutableSortedSet`1.Union(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Immutable.ImmutableSortedSet`1.WithComparer(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Immutable.ImmutableStack.Create``1 +M:System.Collections.Immutable.ImmutableStack.Create``1(``0) +M:System.Collections.Immutable.ImmutableStack.Create``1(``0[]) +M:System.Collections.Immutable.ImmutableStack.Create``1(System.ReadOnlySpan{``0}) +M:System.Collections.Immutable.ImmutableStack.CreateRange``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Collections.Immutable.ImmutableStack.Pop``1(System.Collections.Immutable.IImmutableStack{``0},``0@) +M:System.Collections.Immutable.ImmutableStack`1.Clear +M:System.Collections.Immutable.ImmutableStack`1.Enumerator.get_Current +M:System.Collections.Immutable.ImmutableStack`1.Enumerator.MoveNext +M:System.Collections.Immutable.ImmutableStack`1.get_Empty +M:System.Collections.Immutable.ImmutableStack`1.get_IsEmpty +M:System.Collections.Immutable.ImmutableStack`1.GetEnumerator +M:System.Collections.Immutable.ImmutableStack`1.Peek +M:System.Collections.Immutable.ImmutableStack`1.PeekRef +M:System.Collections.Immutable.ImmutableStack`1.Pop +M:System.Collections.Immutable.ImmutableStack`1.Pop(`0@) +M:System.Collections.Immutable.ImmutableStack`1.Push(`0) +M:System.Linq.ImmutableArrayExtensions.Aggregate``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``0,``0}) +M:System.Linq.ImmutableArrayExtensions.Aggregate``2(System.Collections.Immutable.ImmutableArray{``1},``0,System.Func{``0,``1,``0}) +M:System.Linq.ImmutableArrayExtensions.Aggregate``3(System.Collections.Immutable.ImmutableArray{``2},``0,System.Func{``0,``2,``0},System.Func{``0,``1}) +M:System.Linq.ImmutableArrayExtensions.All``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.Any``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.Any``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.Any``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Linq.ImmutableArrayExtensions.ElementAt``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32) +M:System.Linq.ImmutableArrayExtensions.ElementAtOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Int32) +M:System.Linq.ImmutableArrayExtensions.First``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.First``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.First``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Linq.ImmutableArrayExtensions.FirstOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.FirstOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.FirstOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Linq.ImmutableArrayExtensions.Last``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.Last``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.Last``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Linq.ImmutableArrayExtensions.LastOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.LastOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.LastOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}.Builder) +M:System.Linq.ImmutableArrayExtensions.Select``2(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,``1}) +M:System.Linq.ImmutableArrayExtensions.SelectMany``3(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2}) +M:System.Linq.ImmutableArrayExtensions.SequenceEqual``2(System.Collections.Immutable.ImmutableArray{``1},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.ImmutableArrayExtensions.SequenceEqual``2(System.Collections.Immutable.ImmutableArray{``1},System.Collections.Immutable.ImmutableArray{``0},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.ImmutableArrayExtensions.SequenceEqual``2(System.Collections.Immutable.ImmutableArray{``1},System.Collections.Immutable.ImmutableArray{``0},System.Func{``1,``1,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.Single``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.Single``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.SingleOrDefault``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.SingleOrDefault``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Linq.ImmutableArrayExtensions.ToArray``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Linq.ImmutableArrayExtensions.ToDictionary``2(System.Collections.Immutable.ImmutableArray{``1},System.Func{``1,``0}) +M:System.Linq.ImmutableArrayExtensions.ToDictionary``2(System.Collections.Immutable.ImmutableArray{``1},System.Func{``1,``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.ImmutableArrayExtensions.ToDictionary``3(System.Collections.Immutable.ImmutableArray{``2},System.Func{``2,``0},System.Func{``2,``1}) +M:System.Linq.ImmutableArrayExtensions.ToDictionary``3(System.Collections.Immutable.ImmutableArray{``2},System.Func{``2,``0},System.Func{``2,``1},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.ImmutableArrayExtensions.Where``1(System.Collections.Immutable.ImmutableArray{``0},System.Func{``0,System.Boolean}) +M:System.Runtime.InteropServices.ImmutableCollectionsMarshal.AsArray``1(System.Collections.Immutable.ImmutableArray{``0}) +M:System.Runtime.InteropServices.ImmutableCollectionsMarshal.AsImmutableArray``1(``0[]) +T:System.Collections.Frozen.FrozenDictionary +T:System.Collections.Frozen.FrozenDictionary`2 +T:System.Collections.Frozen.FrozenDictionary`2.Enumerator +T:System.Collections.Frozen.FrozenSet +T:System.Collections.Frozen.FrozenSet`1 +T:System.Collections.Frozen.FrozenSet`1.Enumerator +T:System.Collections.Immutable.IImmutableDictionary`2 +T:System.Collections.Immutable.IImmutableList`1 +T:System.Collections.Immutable.IImmutableQueue`1 +T:System.Collections.Immutable.IImmutableSet`1 +T:System.Collections.Immutable.IImmutableStack`1 +T:System.Collections.Immutable.ImmutableArray +T:System.Collections.Immutable.ImmutableArray`1 +T:System.Collections.Immutable.ImmutableArray`1.Builder +T:System.Collections.Immutable.ImmutableArray`1.Enumerator +T:System.Collections.Immutable.ImmutableDictionary +T:System.Collections.Immutable.ImmutableDictionary`2 +T:System.Collections.Immutable.ImmutableDictionary`2.Builder +T:System.Collections.Immutable.ImmutableDictionary`2.Enumerator +T:System.Collections.Immutable.ImmutableHashSet +T:System.Collections.Immutable.ImmutableHashSet`1 +T:System.Collections.Immutable.ImmutableHashSet`1.Builder +T:System.Collections.Immutable.ImmutableHashSet`1.Enumerator +T:System.Collections.Immutable.ImmutableInterlocked +T:System.Collections.Immutable.ImmutableList +T:System.Collections.Immutable.ImmutableList`1 +T:System.Collections.Immutable.ImmutableList`1.Builder +T:System.Collections.Immutable.ImmutableList`1.Enumerator +T:System.Collections.Immutable.ImmutableQueue +T:System.Collections.Immutable.ImmutableQueue`1 +T:System.Collections.Immutable.ImmutableQueue`1.Enumerator +T:System.Collections.Immutable.ImmutableSortedDictionary +T:System.Collections.Immutable.ImmutableSortedDictionary`2 +T:System.Collections.Immutable.ImmutableSortedDictionary`2.Builder +T:System.Collections.Immutable.ImmutableSortedDictionary`2.Enumerator +T:System.Collections.Immutable.ImmutableSortedSet +T:System.Collections.Immutable.ImmutableSortedSet`1 +T:System.Collections.Immutable.ImmutableSortedSet`1.Builder +T:System.Collections.Immutable.ImmutableSortedSet`1.Enumerator +T:System.Collections.Immutable.ImmutableStack +T:System.Collections.Immutable.ImmutableStack`1 +T:System.Collections.Immutable.ImmutableStack`1.Enumerator +T:System.Linq.ImmutableArrayExtensions +T:System.Runtime.InteropServices.ImmutableCollectionsMarshal \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Collections.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Collections.txt new file mode 100644 index 0000000000000..6476ecccd5041 --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Collections.txt @@ -0,0 +1,431 @@ +M:System.Collections.BitArray.#ctor(System.Boolean[]) +M:System.Collections.BitArray.#ctor(System.Byte[]) +M:System.Collections.BitArray.#ctor(System.Collections.BitArray) +M:System.Collections.BitArray.#ctor(System.Int32) +M:System.Collections.BitArray.#ctor(System.Int32,System.Boolean) +M:System.Collections.BitArray.#ctor(System.Int32[]) +M:System.Collections.BitArray.And(System.Collections.BitArray) +M:System.Collections.BitArray.Clone +M:System.Collections.BitArray.CopyTo(System.Array,System.Int32) +M:System.Collections.BitArray.Get(System.Int32) +M:System.Collections.BitArray.get_Count +M:System.Collections.BitArray.get_IsReadOnly +M:System.Collections.BitArray.get_IsSynchronized +M:System.Collections.BitArray.get_Item(System.Int32) +M:System.Collections.BitArray.get_Length +M:System.Collections.BitArray.get_SyncRoot +M:System.Collections.BitArray.GetEnumerator +M:System.Collections.BitArray.HasAllSet +M:System.Collections.BitArray.HasAnySet +M:System.Collections.BitArray.LeftShift(System.Int32) +M:System.Collections.BitArray.Not +M:System.Collections.BitArray.Or(System.Collections.BitArray) +M:System.Collections.BitArray.RightShift(System.Int32) +M:System.Collections.BitArray.Set(System.Int32,System.Boolean) +M:System.Collections.BitArray.set_Item(System.Int32,System.Boolean) +M:System.Collections.BitArray.set_Length(System.Int32) +M:System.Collections.BitArray.SetAll(System.Boolean) +M:System.Collections.BitArray.Xor(System.Collections.BitArray) +M:System.Collections.Generic.CollectionExtensions.AddRange``1(System.Collections.Generic.List{``0},System.ReadOnlySpan{``0}) +M:System.Collections.Generic.CollectionExtensions.AsReadOnly``1(System.Collections.Generic.IList{``0}) +M:System.Collections.Generic.CollectionExtensions.AsReadOnly``2(System.Collections.Generic.IDictionary{``0,``1}) +M:System.Collections.Generic.CollectionExtensions.CopyTo``1(System.Collections.Generic.List{``0},System.Span{``0}) +M:System.Collections.Generic.CollectionExtensions.GetValueOrDefault``2(System.Collections.Generic.IReadOnlyDictionary{``0,``1},``0) +M:System.Collections.Generic.CollectionExtensions.GetValueOrDefault``2(System.Collections.Generic.IReadOnlyDictionary{``0,``1},``0,``1) +M:System.Collections.Generic.CollectionExtensions.InsertRange``1(System.Collections.Generic.List{``0},System.Int32,System.ReadOnlySpan{``0}) +M:System.Collections.Generic.CollectionExtensions.Remove``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1@) +M:System.Collections.Generic.CollectionExtensions.TryAdd``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1) +M:System.Collections.Generic.Comparer`1.#ctor +M:System.Collections.Generic.Comparer`1.Compare(`0,`0) +M:System.Collections.Generic.Comparer`1.Create(System.Comparison{`0}) +M:System.Collections.Generic.Comparer`1.get_Default +M:System.Collections.Generic.Dictionary`2.#ctor +M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.Dictionary`2.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.Dictionary`2.Add(`0,`1) +M:System.Collections.Generic.Dictionary`2.Clear +M:System.Collections.Generic.Dictionary`2.ContainsKey(`0) +M:System.Collections.Generic.Dictionary`2.ContainsValue(`1) +M:System.Collections.Generic.Dictionary`2.EnsureCapacity(System.Int32) +M:System.Collections.Generic.Dictionary`2.Enumerator.Dispose +M:System.Collections.Generic.Dictionary`2.Enumerator.get_Current +M:System.Collections.Generic.Dictionary`2.Enumerator.MoveNext +M:System.Collections.Generic.Dictionary`2.get_Comparer +M:System.Collections.Generic.Dictionary`2.get_Count +M:System.Collections.Generic.Dictionary`2.get_Item(`0) +M:System.Collections.Generic.Dictionary`2.get_Keys +M:System.Collections.Generic.Dictionary`2.get_Values +M:System.Collections.Generic.Dictionary`2.GetEnumerator +M:System.Collections.Generic.Dictionary`2.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.Dictionary`2.KeyCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1}) +M:System.Collections.Generic.Dictionary`2.KeyCollection.Contains(`0) +M:System.Collections.Generic.Dictionary`2.KeyCollection.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Dispose +M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.get_Current +M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.MoveNext +M:System.Collections.Generic.Dictionary`2.KeyCollection.get_Count +M:System.Collections.Generic.Dictionary`2.KeyCollection.GetEnumerator +M:System.Collections.Generic.Dictionary`2.OnDeserialization(System.Object) +M:System.Collections.Generic.Dictionary`2.Remove(`0) +M:System.Collections.Generic.Dictionary`2.Remove(`0,`1@) +M:System.Collections.Generic.Dictionary`2.set_Item(`0,`1) +M:System.Collections.Generic.Dictionary`2.TrimExcess +M:System.Collections.Generic.Dictionary`2.TrimExcess(System.Int32) +M:System.Collections.Generic.Dictionary`2.TryAdd(`0,`1) +M:System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Generic.Dictionary`2.ValueCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1}) +M:System.Collections.Generic.Dictionary`2.ValueCollection.CopyTo(`1[],System.Int32) +M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Dispose +M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.get_Current +M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.MoveNext +M:System.Collections.Generic.Dictionary`2.ValueCollection.get_Count +M:System.Collections.Generic.Dictionary`2.ValueCollection.GetEnumerator +M:System.Collections.Generic.EqualityComparer`1.#ctor +M:System.Collections.Generic.EqualityComparer`1.Create(System.Func{`0,`0,System.Boolean},System.Func{`0,System.Int32}) +M:System.Collections.Generic.EqualityComparer`1.Equals(`0,`0) +M:System.Collections.Generic.EqualityComparer`1.get_Default +M:System.Collections.Generic.EqualityComparer`1.GetHashCode(`0) +M:System.Collections.Generic.HashSet`1.#ctor +M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.HashSet`1.#ctor(System.Int32) +M:System.Collections.Generic.HashSet`1.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.HashSet`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.HashSet`1.Add(`0) +M:System.Collections.Generic.HashSet`1.Clear +M:System.Collections.Generic.HashSet`1.Contains(`0) +M:System.Collections.Generic.HashSet`1.CopyTo(`0[]) +M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32,System.Int32) +M:System.Collections.Generic.HashSet`1.CreateSetComparer +M:System.Collections.Generic.HashSet`1.EnsureCapacity(System.Int32) +M:System.Collections.Generic.HashSet`1.Enumerator.Dispose +M:System.Collections.Generic.HashSet`1.Enumerator.get_Current +M:System.Collections.Generic.HashSet`1.Enumerator.MoveNext +M:System.Collections.Generic.HashSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.get_Comparer +M:System.Collections.Generic.HashSet`1.get_Count +M:System.Collections.Generic.HashSet`1.GetEnumerator +M:System.Collections.Generic.HashSet`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.HashSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.OnDeserialization(System.Object) +M:System.Collections.Generic.HashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.Remove(`0) +M:System.Collections.Generic.HashSet`1.RemoveWhere(System.Predicate{`0}) +M:System.Collections.Generic.HashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.HashSet`1.TrimExcess +M:System.Collections.Generic.HashSet`1.TryGetValue(`0,`0@) +M:System.Collections.Generic.HashSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.LinkedList`1.#ctor +M:System.Collections.Generic.LinkedList`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.LinkedList`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},`0) +M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0}) +M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},`0) +M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0}) +M:System.Collections.Generic.LinkedList`1.AddFirst(`0) +M:System.Collections.Generic.LinkedList`1.AddFirst(System.Collections.Generic.LinkedListNode{`0}) +M:System.Collections.Generic.LinkedList`1.AddLast(`0) +M:System.Collections.Generic.LinkedList`1.AddLast(System.Collections.Generic.LinkedListNode{`0}) +M:System.Collections.Generic.LinkedList`1.Clear +M:System.Collections.Generic.LinkedList`1.Contains(`0) +M:System.Collections.Generic.LinkedList`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.LinkedList`1.Enumerator.Dispose +M:System.Collections.Generic.LinkedList`1.Enumerator.get_Current +M:System.Collections.Generic.LinkedList`1.Enumerator.MoveNext +M:System.Collections.Generic.LinkedList`1.Find(`0) +M:System.Collections.Generic.LinkedList`1.FindLast(`0) +M:System.Collections.Generic.LinkedList`1.get_Count +M:System.Collections.Generic.LinkedList`1.get_First +M:System.Collections.Generic.LinkedList`1.get_Last +M:System.Collections.Generic.LinkedList`1.GetEnumerator +M:System.Collections.Generic.LinkedList`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.LinkedList`1.OnDeserialization(System.Object) +M:System.Collections.Generic.LinkedList`1.Remove(`0) +M:System.Collections.Generic.LinkedList`1.Remove(System.Collections.Generic.LinkedListNode{`0}) +M:System.Collections.Generic.LinkedList`1.RemoveFirst +M:System.Collections.Generic.LinkedList`1.RemoveLast +M:System.Collections.Generic.LinkedListNode`1.#ctor(`0) +M:System.Collections.Generic.LinkedListNode`1.get_List +M:System.Collections.Generic.LinkedListNode`1.get_Next +M:System.Collections.Generic.LinkedListNode`1.get_Previous +M:System.Collections.Generic.LinkedListNode`1.get_Value +M:System.Collections.Generic.LinkedListNode`1.get_ValueRef +M:System.Collections.Generic.LinkedListNode`1.set_Value(`0) +M:System.Collections.Generic.List`1.#ctor +M:System.Collections.Generic.List`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.List`1.#ctor(System.Int32) +M:System.Collections.Generic.List`1.Add(`0) +M:System.Collections.Generic.List`1.AddRange(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.List`1.AsReadOnly +M:System.Collections.Generic.List`1.BinarySearch(`0) +M:System.Collections.Generic.List`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.List`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.List`1.Clear +M:System.Collections.Generic.List`1.Contains(`0) +M:System.Collections.Generic.List`1.ConvertAll``1(System.Converter{`0,``0}) +M:System.Collections.Generic.List`1.CopyTo(`0[]) +M:System.Collections.Generic.List`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.List`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32) +M:System.Collections.Generic.List`1.EnsureCapacity(System.Int32) +M:System.Collections.Generic.List`1.Enumerator.Dispose +M:System.Collections.Generic.List`1.Enumerator.get_Current +M:System.Collections.Generic.List`1.Enumerator.MoveNext +M:System.Collections.Generic.List`1.Exists(System.Predicate{`0}) +M:System.Collections.Generic.List`1.Find(System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindAll(System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindIndex(System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindLast(System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Predicate{`0}) +M:System.Collections.Generic.List`1.FindLastIndex(System.Predicate{`0}) +M:System.Collections.Generic.List`1.ForEach(System.Action{`0}) +M:System.Collections.Generic.List`1.get_Capacity +M:System.Collections.Generic.List`1.get_Count +M:System.Collections.Generic.List`1.get_Item(System.Int32) +M:System.Collections.Generic.List`1.GetEnumerator +M:System.Collections.Generic.List`1.GetRange(System.Int32,System.Int32) +M:System.Collections.Generic.List`1.IndexOf(`0) +M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32) +M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Generic.List`1.Insert(System.Int32,`0) +M:System.Collections.Generic.List`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.List`1.LastIndexOf(`0) +M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32) +M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32,System.Int32) +M:System.Collections.Generic.List`1.Remove(`0) +M:System.Collections.Generic.List`1.RemoveAll(System.Predicate{`0}) +M:System.Collections.Generic.List`1.RemoveAt(System.Int32) +M:System.Collections.Generic.List`1.RemoveRange(System.Int32,System.Int32) +M:System.Collections.Generic.List`1.Reverse +M:System.Collections.Generic.List`1.Reverse(System.Int32,System.Int32) +M:System.Collections.Generic.List`1.set_Capacity(System.Int32) +M:System.Collections.Generic.List`1.set_Item(System.Int32,`0) +M:System.Collections.Generic.List`1.Slice(System.Int32,System.Int32) +M:System.Collections.Generic.List`1.Sort +M:System.Collections.Generic.List`1.Sort(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.List`1.Sort(System.Comparison{`0}) +M:System.Collections.Generic.List`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.List`1.ToArray +M:System.Collections.Generic.List`1.TrimExcess +M:System.Collections.Generic.List`1.TrueForAll(System.Predicate{`0}) +M:System.Collections.Generic.PriorityQueue`2.#ctor +M:System.Collections.Generic.PriorityQueue`2.#ctor(System.Collections.Generic.IComparer{`1}) +M:System.Collections.Generic.PriorityQueue`2.#ctor(System.Collections.Generic.IEnumerable{System.ValueTuple{`0,`1}}) +M:System.Collections.Generic.PriorityQueue`2.#ctor(System.Collections.Generic.IEnumerable{System.ValueTuple{`0,`1}},System.Collections.Generic.IComparer{`1}) +M:System.Collections.Generic.PriorityQueue`2.#ctor(System.Int32) +M:System.Collections.Generic.PriorityQueue`2.#ctor(System.Int32,System.Collections.Generic.IComparer{`1}) +M:System.Collections.Generic.PriorityQueue`2.Clear +M:System.Collections.Generic.PriorityQueue`2.Dequeue +M:System.Collections.Generic.PriorityQueue`2.DequeueEnqueue(`0,`1) +M:System.Collections.Generic.PriorityQueue`2.Enqueue(`0,`1) +M:System.Collections.Generic.PriorityQueue`2.EnqueueDequeue(`0,`1) +M:System.Collections.Generic.PriorityQueue`2.EnqueueRange(System.Collections.Generic.IEnumerable{`0},`1) +M:System.Collections.Generic.PriorityQueue`2.EnqueueRange(System.Collections.Generic.IEnumerable{System.ValueTuple{`0,`1}}) +M:System.Collections.Generic.PriorityQueue`2.EnsureCapacity(System.Int32) +M:System.Collections.Generic.PriorityQueue`2.get_Comparer +M:System.Collections.Generic.PriorityQueue`2.get_Count +M:System.Collections.Generic.PriorityQueue`2.get_UnorderedItems +M:System.Collections.Generic.PriorityQueue`2.Peek +M:System.Collections.Generic.PriorityQueue`2.TrimExcess +M:System.Collections.Generic.PriorityQueue`2.TryDequeue(`0@,`1@) +M:System.Collections.Generic.PriorityQueue`2.TryPeek(`0@,`1@) +M:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.Enumerator.Dispose +M:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.Enumerator.get_Current +M:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.Enumerator.MoveNext +M:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.get_Count +M:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.GetEnumerator +M:System.Collections.Generic.Queue`1.#ctor +M:System.Collections.Generic.Queue`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.Queue`1.#ctor(System.Int32) +M:System.Collections.Generic.Queue`1.Clear +M:System.Collections.Generic.Queue`1.Contains(`0) +M:System.Collections.Generic.Queue`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.Queue`1.Dequeue +M:System.Collections.Generic.Queue`1.Enqueue(`0) +M:System.Collections.Generic.Queue`1.EnsureCapacity(System.Int32) +M:System.Collections.Generic.Queue`1.Enumerator.Dispose +M:System.Collections.Generic.Queue`1.Enumerator.get_Current +M:System.Collections.Generic.Queue`1.Enumerator.MoveNext +M:System.Collections.Generic.Queue`1.get_Count +M:System.Collections.Generic.Queue`1.GetEnumerator +M:System.Collections.Generic.Queue`1.Peek +M:System.Collections.Generic.Queue`1.ToArray +M:System.Collections.Generic.Queue`1.TrimExcess +M:System.Collections.Generic.Queue`1.TryDequeue(`0@) +M:System.Collections.Generic.Queue`1.TryPeek(`0@) +M:System.Collections.Generic.ReferenceEqualityComparer.Equals(System.Object,System.Object) +M:System.Collections.Generic.ReferenceEqualityComparer.get_Instance +M:System.Collections.Generic.ReferenceEqualityComparer.GetHashCode(System.Object) +M:System.Collections.Generic.SortedDictionary`2.#ctor +M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1}) +M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedDictionary`2.Add(`0,`1) +M:System.Collections.Generic.SortedDictionary`2.Clear +M:System.Collections.Generic.SortedDictionary`2.ContainsKey(`0) +M:System.Collections.Generic.SortedDictionary`2.ContainsValue(`1) +M:System.Collections.Generic.SortedDictionary`2.CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32) +M:System.Collections.Generic.SortedDictionary`2.Enumerator.Dispose +M:System.Collections.Generic.SortedDictionary`2.Enumerator.get_Current +M:System.Collections.Generic.SortedDictionary`2.Enumerator.MoveNext +M:System.Collections.Generic.SortedDictionary`2.get_Comparer +M:System.Collections.Generic.SortedDictionary`2.get_Count +M:System.Collections.Generic.SortedDictionary`2.get_Item(`0) +M:System.Collections.Generic.SortedDictionary`2.get_Keys +M:System.Collections.Generic.SortedDictionary`2.get_Values +M:System.Collections.Generic.SortedDictionary`2.GetEnumerator +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1}) +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Contains(`0) +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Dispose +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.get_Current +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.MoveNext +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.get_Count +M:System.Collections.Generic.SortedDictionary`2.KeyCollection.GetEnumerator +M:System.Collections.Generic.SortedDictionary`2.Remove(`0) +M:System.Collections.Generic.SortedDictionary`2.set_Item(`0,`1) +M:System.Collections.Generic.SortedDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1}) +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.CopyTo(`1[],System.Int32) +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Dispose +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.get_Current +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.MoveNext +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.get_Count +M:System.Collections.Generic.SortedDictionary`2.ValueCollection.GetEnumerator +M:System.Collections.Generic.SortedList`2.#ctor +M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1}) +M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedList`2.#ctor(System.Int32) +M:System.Collections.Generic.SortedList`2.#ctor(System.Int32,System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedList`2.Add(`0,`1) +M:System.Collections.Generic.SortedList`2.Clear +M:System.Collections.Generic.SortedList`2.ContainsKey(`0) +M:System.Collections.Generic.SortedList`2.ContainsValue(`1) +M:System.Collections.Generic.SortedList`2.get_Capacity +M:System.Collections.Generic.SortedList`2.get_Comparer +M:System.Collections.Generic.SortedList`2.get_Count +M:System.Collections.Generic.SortedList`2.get_Item(`0) +M:System.Collections.Generic.SortedList`2.get_Keys +M:System.Collections.Generic.SortedList`2.get_Values +M:System.Collections.Generic.SortedList`2.GetEnumerator +M:System.Collections.Generic.SortedList`2.GetKeyAtIndex(System.Int32) +M:System.Collections.Generic.SortedList`2.GetValueAtIndex(System.Int32) +M:System.Collections.Generic.SortedList`2.IndexOfKey(`0) +M:System.Collections.Generic.SortedList`2.IndexOfValue(`1) +M:System.Collections.Generic.SortedList`2.Remove(`0) +M:System.Collections.Generic.SortedList`2.RemoveAt(System.Int32) +M:System.Collections.Generic.SortedList`2.set_Capacity(System.Int32) +M:System.Collections.Generic.SortedList`2.set_Item(`0,`1) +M:System.Collections.Generic.SortedList`2.SetValueAtIndex(System.Int32,`1) +M:System.Collections.Generic.SortedList`2.TrimExcess +M:System.Collections.Generic.SortedList`2.TryGetValue(`0,`1@) +M:System.Collections.Generic.SortedSet`1.#ctor +M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IComparer{`0}) +M:System.Collections.Generic.SortedSet`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.SortedSet`1.Add(`0) +M:System.Collections.Generic.SortedSet`1.Clear +M:System.Collections.Generic.SortedSet`1.Contains(`0) +M:System.Collections.Generic.SortedSet`1.CopyTo(`0[]) +M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32,System.Int32) +M:System.Collections.Generic.SortedSet`1.CreateSetComparer +M:System.Collections.Generic.SortedSet`1.CreateSetComparer(System.Collections.Generic.IEqualityComparer{`0}) +M:System.Collections.Generic.SortedSet`1.Enumerator.Dispose +M:System.Collections.Generic.SortedSet`1.Enumerator.get_Current +M:System.Collections.Generic.SortedSet`1.Enumerator.MoveNext +M:System.Collections.Generic.SortedSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.get_Comparer +M:System.Collections.Generic.SortedSet`1.get_Count +M:System.Collections.Generic.SortedSet`1.get_Max +M:System.Collections.Generic.SortedSet`1.get_Min +M:System.Collections.Generic.SortedSet`1.GetEnumerator +M:System.Collections.Generic.SortedSet`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.SortedSet`1.GetViewBetween(`0,`0) +M:System.Collections.Generic.SortedSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.OnDeserialization(System.Object) +M:System.Collections.Generic.SortedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.Remove(`0) +M:System.Collections.Generic.SortedSet`1.RemoveWhere(System.Predicate{`0}) +M:System.Collections.Generic.SortedSet`1.Reverse +M:System.Collections.Generic.SortedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.SortedSet`1.TryGetValue(`0,`0@) +M:System.Collections.Generic.SortedSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.Stack`1.#ctor +M:System.Collections.Generic.Stack`1.#ctor(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.Stack`1.#ctor(System.Int32) +M:System.Collections.Generic.Stack`1.Clear +M:System.Collections.Generic.Stack`1.Contains(`0) +M:System.Collections.Generic.Stack`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.Stack`1.EnsureCapacity(System.Int32) +M:System.Collections.Generic.Stack`1.Enumerator.Dispose +M:System.Collections.Generic.Stack`1.Enumerator.get_Current +M:System.Collections.Generic.Stack`1.Enumerator.MoveNext +M:System.Collections.Generic.Stack`1.get_Count +M:System.Collections.Generic.Stack`1.GetEnumerator +M:System.Collections.Generic.Stack`1.Peek +M:System.Collections.Generic.Stack`1.Pop +M:System.Collections.Generic.Stack`1.Push(`0) +M:System.Collections.Generic.Stack`1.ToArray +M:System.Collections.Generic.Stack`1.TrimExcess +M:System.Collections.Generic.Stack`1.TryPeek(`0@) +M:System.Collections.Generic.Stack`1.TryPop(`0@) +M:System.Collections.StructuralComparisons.get_StructuralComparer +M:System.Collections.StructuralComparisons.get_StructuralEqualityComparer +T:System.Collections.BitArray +T:System.Collections.Generic.CollectionExtensions +T:System.Collections.Generic.Comparer`1 +T:System.Collections.Generic.Dictionary`2 +T:System.Collections.Generic.Dictionary`2.Enumerator +T:System.Collections.Generic.Dictionary`2.KeyCollection +T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator +T:System.Collections.Generic.Dictionary`2.ValueCollection +T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator +T:System.Collections.Generic.EqualityComparer`1 +T:System.Collections.Generic.HashSet`1 +T:System.Collections.Generic.HashSet`1.Enumerator +T:System.Collections.Generic.LinkedList`1 +T:System.Collections.Generic.LinkedList`1.Enumerator +T:System.Collections.Generic.LinkedListNode`1 +T:System.Collections.Generic.List`1 +T:System.Collections.Generic.List`1.Enumerator +T:System.Collections.Generic.PriorityQueue`2 +T:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection +T:System.Collections.Generic.PriorityQueue`2.UnorderedItemsCollection.Enumerator +T:System.Collections.Generic.Queue`1 +T:System.Collections.Generic.Queue`1.Enumerator +T:System.Collections.Generic.ReferenceEqualityComparer +T:System.Collections.Generic.SortedDictionary`2 +T:System.Collections.Generic.SortedDictionary`2.Enumerator +T:System.Collections.Generic.SortedDictionary`2.KeyCollection +T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator +T:System.Collections.Generic.SortedDictionary`2.ValueCollection +T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator +T:System.Collections.Generic.SortedList`2 +T:System.Collections.Generic.SortedSet`1 +T:System.Collections.Generic.SortedSet`1.Enumerator +T:System.Collections.Generic.Stack`1 +T:System.Collections.Generic.Stack`1.Enumerator +T:System.Collections.StructuralComparisons \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Linq.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Linq.txt new file mode 100644 index 0000000000000..a9dec4ae8affc --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Linq.txt @@ -0,0 +1,231 @@ +M:System.Linq.Enumerable.Aggregate``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``0,``0}) +M:System.Linq.Enumerable.Aggregate``2(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1}) +M:System.Linq.Enumerable.Aggregate``3(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1},System.Func{``1,``2}) +M:System.Linq.Enumerable.All``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.Append``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.AsEnumerable``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Decimal}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Double}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int32}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int64}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Single}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single}) +M:System.Linq.Enumerable.Cast``1(System.Collections.IEnumerable) +M:System.Linq.Enumerable.Chunk``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.Concat``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.DistinctBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.DistinctBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Index) +M:System.Linq.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Index) +M:System.Linq.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.Empty``1 +M:System.Linq.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.ExceptBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1}) +M:System.Linq.Enumerable.ExceptBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean},``0) +M:System.Linq.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2}) +M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``1,System.Collections.Generic.IEnumerable{``0},``2}) +M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``1,System.Collections.Generic.IEnumerable{``0},``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``1,System.Collections.Generic.IEnumerable{``2},``3}) +M:System.Linq.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``1,System.Collections.Generic.IEnumerable{``2},``3},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3}) +M:System.Linq.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3},System.Collections.Generic.IEqualityComparer{``2}) +M:System.Linq.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.IntersectBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1}) +M:System.Linq.Enumerable.IntersectBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3}) +M:System.Linq.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3},System.Collections.Generic.IEqualityComparer{``2}) +M:System.Linq.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean},``0) +M:System.Linq.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Decimal}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Double}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Int32}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Int64}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Single}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single}) +M:System.Linq.Enumerable.Max``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.MaxBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.MaxBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Decimal}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Double}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Int32}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Int64}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Single}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single}) +M:System.Linq.Enumerable.Min``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.MinBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.MinBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.OfType``1(System.Collections.IEnumerable) +M:System.Linq.Enumerable.Order``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Order``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) +M:System.Linq.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.OrderDescending``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.OrderDescending``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) +M:System.Linq.Enumerable.Prepend``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.Range(System.Int32,System.Int32) +M:System.Linq.Enumerable.Repeat``1(``0,System.Int32) +M:System.Linq.Enumerable.Reverse``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,``1}) +M:System.Linq.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}}) +M:System.Linq.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}}) +M:System.Linq.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2}) +M:System.Linq.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2}) +M:System.Linq.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},``0) +M:System.Linq.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean},``0) +M:System.Linq.Enumerable.Skip``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.SkipLast``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Boolean}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Decimal}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Double}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int32}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int64}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Single}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}}) +M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single}) +M:System.Linq.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Range) +M:System.Linq.Enumerable.TakeLast``1(System.Collections.Generic.IEnumerable{``0},System.Int32) +M:System.Linq.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Boolean}) +M:System.Linq.Enumerable.ThenBy``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.ThenBy``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.ThenByDescending``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.ThenByDescending``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1}) +M:System.Linq.Enumerable.ToArray``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.ValueTuple{``0,``1}}) +M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.ValueTuple{``0,``1}},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2}) +M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.ToHashSet``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.ToHashSet``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.ToList``1(System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2}) +M:System.Linq.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.TryGetNonEnumeratedCount``1(System.Collections.Generic.IEnumerable{``0},System.Int32@) +M:System.Linq.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}) +M:System.Linq.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0}) +M:System.Linq.Enumerable.UnionBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1}) +M:System.Linq.Enumerable.UnionBy``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1}) +M:System.Linq.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean}) +M:System.Linq.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Boolean}) +M:System.Linq.Enumerable.Zip``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1}) +M:System.Linq.Enumerable.Zip``3(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Collections.Generic.IEnumerable{``2}) +M:System.Linq.Enumerable.Zip``3(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1,``2}) +M:System.Linq.IGrouping`2.get_Key +M:System.Linq.ILookup`2.Contains(`0) +M:System.Linq.ILookup`2.get_Count +M:System.Linq.ILookup`2.get_Item(`0) +M:System.Linq.IOrderedEnumerable`1.CreateOrderedEnumerable``1(System.Func{`0,``0},System.Collections.Generic.IComparer{``0},System.Boolean) +M:System.Linq.Lookup`2.ApplyResultSelector``1(System.Func{`0,System.Collections.Generic.IEnumerable{`1},``0}) +M:System.Linq.Lookup`2.Contains(`0) +M:System.Linq.Lookup`2.get_Count +M:System.Linq.Lookup`2.get_Item(`0) +M:System.Linq.Lookup`2.GetEnumerator +T:System.Linq.Enumerable +T:System.Linq.IGrouping`2 +T:System.Linq.ILookup`2 +T:System.Linq.IOrderedEnumerable`1 +T:System.Linq.Lookup`2 \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Runtime.txt b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Runtime.txt new file mode 100644 index 0000000000000..9c3c4baadbf5d --- /dev/null +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/Baselines/System.Runtime.txt @@ -0,0 +1,7717 @@ +F:System.AttributeTargets.All +F:System.AttributeTargets.Assembly +F:System.AttributeTargets.Class +F:System.AttributeTargets.Constructor +F:System.AttributeTargets.Delegate +F:System.AttributeTargets.Enum +F:System.AttributeTargets.Event +F:System.AttributeTargets.Field +F:System.AttributeTargets.GenericParameter +F:System.AttributeTargets.Interface +F:System.AttributeTargets.Method +F:System.AttributeTargets.Module +F:System.AttributeTargets.Parameter +F:System.AttributeTargets.Property +F:System.AttributeTargets.ReturnValue +F:System.AttributeTargets.Struct +F:System.Base64FormattingOptions.InsertLineBreaks +F:System.Base64FormattingOptions.None +F:System.BitConverter.IsLittleEndian +F:System.Boolean.FalseString +F:System.Boolean.TrueString +F:System.Buffers.OperationStatus.DestinationTooSmall +F:System.Buffers.OperationStatus.Done +F:System.Buffers.OperationStatus.InvalidData +F:System.Buffers.OperationStatus.NeedMoreData +F:System.Byte.MaxValue +F:System.Byte.MinValue +F:System.Char.MaxValue +F:System.Char.MinValue +F:System.CodeDom.Compiler.IndentedTextWriter.DefaultTabString +F:System.Collections.Comparer.Default +F:System.Collections.Comparer.DefaultInvariant +F:System.ComponentModel.EditorBrowsableState.Advanced +F:System.ComponentModel.EditorBrowsableState.Always +F:System.ComponentModel.EditorBrowsableState.Never +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5 +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.None +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA1 +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA256 +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA384 +F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA512 +F:System.Configuration.Assemblies.AssemblyVersionCompatibility.SameDomain +F:System.Configuration.Assemblies.AssemblyVersionCompatibility.SameMachine +F:System.Configuration.Assemblies.AssemblyVersionCompatibility.SameProcess +F:System.Convert.DBNull +F:System.DateTime.MaxValue +F:System.DateTime.MinValue +F:System.DateTime.UnixEpoch +F:System.DateTimeKind.Local +F:System.DateTimeKind.Unspecified +F:System.DateTimeKind.Utc +F:System.DateTimeOffset.MaxValue +F:System.DateTimeOffset.MinValue +F:System.DateTimeOffset.UnixEpoch +F:System.DayOfWeek.Friday +F:System.DayOfWeek.Monday +F:System.DayOfWeek.Saturday +F:System.DayOfWeek.Sunday +F:System.DayOfWeek.Thursday +F:System.DayOfWeek.Tuesday +F:System.DayOfWeek.Wednesday +F:System.DBNull.Value +F:System.Decimal.MaxValue +F:System.Decimal.MinusOne +F:System.Decimal.MinValue +F:System.Decimal.One +F:System.Decimal.Zero +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.Interfaces +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.None +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicConstructors +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicEvents +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicFields +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicMethods +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicNestedTypes +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicProperties +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicParameterlessConstructor +F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.CompositeFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.DateOnlyFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.DateTimeFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.EnumFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.GuidFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Json +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.NumericFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Regex +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.TimeOnlyFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.TimeSpanFormat +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Uri +F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Xml +F:System.Diagnostics.DebuggableAttribute.DebuggingModes.Default +F:System.Diagnostics.DebuggableAttribute.DebuggingModes.DisableOptimizations +F:System.Diagnostics.DebuggableAttribute.DebuggingModes.EnableEditAndContinue +F:System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints +F:System.Diagnostics.DebuggableAttribute.DebuggingModes.None +F:System.Diagnostics.DebuggerBrowsableState.Collapsed +F:System.Diagnostics.DebuggerBrowsableState.Never +F:System.Diagnostics.DebuggerBrowsableState.RootHidden +F:System.Diagnostics.Stopwatch.Frequency +F:System.Diagnostics.Stopwatch.IsHighResolution +F:System.Double.E +F:System.Double.Epsilon +F:System.Double.MaxValue +F:System.Double.MinValue +F:System.Double.NaN +F:System.Double.NegativeInfinity +F:System.Double.NegativeZero +F:System.Double.Pi +F:System.Double.PositiveInfinity +F:System.Double.Tau +F:System.EventArgs.Empty +F:System.GenericUriParserOptions.AllowEmptyAuthority +F:System.GenericUriParserOptions.Default +F:System.GenericUriParserOptions.DontCompressPath +F:System.GenericUriParserOptions.DontConvertPathBackslashes +F:System.GenericUriParserOptions.DontUnescapePathDotsAndSlashes +F:System.GenericUriParserOptions.GenericAuthority +F:System.GenericUriParserOptions.Idn +F:System.GenericUriParserOptions.IriParsing +F:System.GenericUriParserOptions.NoFragment +F:System.GenericUriParserOptions.NoPort +F:System.GenericUriParserOptions.NoQuery +F:System.GenericUriParserOptions.NoUserInfo +F:System.Globalization.Calendar.CurrentEra +F:System.Globalization.CalendarAlgorithmType.LunarCalendar +F:System.Globalization.CalendarAlgorithmType.LunisolarCalendar +F:System.Globalization.CalendarAlgorithmType.SolarCalendar +F:System.Globalization.CalendarAlgorithmType.Unknown +F:System.Globalization.CalendarWeekRule.FirstDay +F:System.Globalization.CalendarWeekRule.FirstFourDayWeek +F:System.Globalization.CalendarWeekRule.FirstFullWeek +F:System.Globalization.ChineseLunisolarCalendar.ChineseEra +F:System.Globalization.CompareOptions.IgnoreCase +F:System.Globalization.CompareOptions.IgnoreKanaType +F:System.Globalization.CompareOptions.IgnoreNonSpace +F:System.Globalization.CompareOptions.IgnoreSymbols +F:System.Globalization.CompareOptions.IgnoreWidth +F:System.Globalization.CompareOptions.None +F:System.Globalization.CompareOptions.Ordinal +F:System.Globalization.CompareOptions.OrdinalIgnoreCase +F:System.Globalization.CompareOptions.StringSort +F:System.Globalization.CultureTypes.AllCultures +F:System.Globalization.CultureTypes.FrameworkCultures +F:System.Globalization.CultureTypes.InstalledWin32Cultures +F:System.Globalization.CultureTypes.NeutralCultures +F:System.Globalization.CultureTypes.ReplacementCultures +F:System.Globalization.CultureTypes.SpecificCultures +F:System.Globalization.CultureTypes.UserCustomCulture +F:System.Globalization.CultureTypes.WindowsOnlyCultures +F:System.Globalization.DateTimeStyles.AdjustToUniversal +F:System.Globalization.DateTimeStyles.AllowInnerWhite +F:System.Globalization.DateTimeStyles.AllowLeadingWhite +F:System.Globalization.DateTimeStyles.AllowTrailingWhite +F:System.Globalization.DateTimeStyles.AllowWhiteSpaces +F:System.Globalization.DateTimeStyles.AssumeLocal +F:System.Globalization.DateTimeStyles.AssumeUniversal +F:System.Globalization.DateTimeStyles.NoCurrentDateDefault +F:System.Globalization.DateTimeStyles.None +F:System.Globalization.DateTimeStyles.RoundtripKind +F:System.Globalization.DigitShapes.Context +F:System.Globalization.DigitShapes.NativeNational +F:System.Globalization.DigitShapes.None +F:System.Globalization.GregorianCalendar.ADEra +F:System.Globalization.GregorianCalendarTypes.Arabic +F:System.Globalization.GregorianCalendarTypes.Localized +F:System.Globalization.GregorianCalendarTypes.MiddleEastFrench +F:System.Globalization.GregorianCalendarTypes.TransliteratedEnglish +F:System.Globalization.GregorianCalendarTypes.TransliteratedFrench +F:System.Globalization.GregorianCalendarTypes.USEnglish +F:System.Globalization.HebrewCalendar.HebrewEra +F:System.Globalization.HijriCalendar.HijriEra +F:System.Globalization.JapaneseLunisolarCalendar.JapaneseEra +F:System.Globalization.JulianCalendar.JulianEra +F:System.Globalization.KoreanCalendar.KoreanEra +F:System.Globalization.KoreanLunisolarCalendar.GregorianEra +F:System.Globalization.NumberStyles.AllowBinarySpecifier +F:System.Globalization.NumberStyles.AllowCurrencySymbol +F:System.Globalization.NumberStyles.AllowDecimalPoint +F:System.Globalization.NumberStyles.AllowExponent +F:System.Globalization.NumberStyles.AllowHexSpecifier +F:System.Globalization.NumberStyles.AllowLeadingSign +F:System.Globalization.NumberStyles.AllowLeadingWhite +F:System.Globalization.NumberStyles.AllowParentheses +F:System.Globalization.NumberStyles.AllowThousands +F:System.Globalization.NumberStyles.AllowTrailingSign +F:System.Globalization.NumberStyles.AllowTrailingWhite +F:System.Globalization.NumberStyles.Any +F:System.Globalization.NumberStyles.BinaryNumber +F:System.Globalization.NumberStyles.Currency +F:System.Globalization.NumberStyles.Float +F:System.Globalization.NumberStyles.HexNumber +F:System.Globalization.NumberStyles.Integer +F:System.Globalization.NumberStyles.None +F:System.Globalization.NumberStyles.Number +F:System.Globalization.PersianCalendar.PersianEra +F:System.Globalization.ThaiBuddhistCalendar.ThaiBuddhistEra +F:System.Globalization.TimeSpanStyles.AssumeNegative +F:System.Globalization.TimeSpanStyles.None +F:System.Globalization.UmAlQuraCalendar.UmAlQuraEra +F:System.Globalization.UnicodeCategory.ClosePunctuation +F:System.Globalization.UnicodeCategory.ConnectorPunctuation +F:System.Globalization.UnicodeCategory.Control +F:System.Globalization.UnicodeCategory.CurrencySymbol +F:System.Globalization.UnicodeCategory.DashPunctuation +F:System.Globalization.UnicodeCategory.DecimalDigitNumber +F:System.Globalization.UnicodeCategory.EnclosingMark +F:System.Globalization.UnicodeCategory.FinalQuotePunctuation +F:System.Globalization.UnicodeCategory.Format +F:System.Globalization.UnicodeCategory.InitialQuotePunctuation +F:System.Globalization.UnicodeCategory.LetterNumber +F:System.Globalization.UnicodeCategory.LineSeparator +F:System.Globalization.UnicodeCategory.LowercaseLetter +F:System.Globalization.UnicodeCategory.MathSymbol +F:System.Globalization.UnicodeCategory.ModifierLetter +F:System.Globalization.UnicodeCategory.ModifierSymbol +F:System.Globalization.UnicodeCategory.NonSpacingMark +F:System.Globalization.UnicodeCategory.OpenPunctuation +F:System.Globalization.UnicodeCategory.OtherLetter +F:System.Globalization.UnicodeCategory.OtherNotAssigned +F:System.Globalization.UnicodeCategory.OtherNumber +F:System.Globalization.UnicodeCategory.OtherPunctuation +F:System.Globalization.UnicodeCategory.OtherSymbol +F:System.Globalization.UnicodeCategory.ParagraphSeparator +F:System.Globalization.UnicodeCategory.PrivateUse +F:System.Globalization.UnicodeCategory.SpaceSeparator +F:System.Globalization.UnicodeCategory.SpacingCombiningMark +F:System.Globalization.UnicodeCategory.Surrogate +F:System.Globalization.UnicodeCategory.TitlecaseLetter +F:System.Globalization.UnicodeCategory.UppercaseLetter +F:System.Guid.Empty +F:System.Int16.MaxValue +F:System.Int16.MinValue +F:System.Int32.MaxValue +F:System.Int32.MinValue +F:System.Int64.MaxValue +F:System.Int64.MinValue +F:System.IntPtr.Zero +F:System.Math.E +F:System.Math.PI +F:System.Math.Tau +F:System.MathF.E +F:System.MathF.PI +F:System.MathF.Tau +F:System.MidpointRounding.AwayFromZero +F:System.MidpointRounding.ToEven +F:System.MidpointRounding.ToNegativeInfinity +F:System.MidpointRounding.ToPositiveInfinity +F:System.MidpointRounding.ToZero +F:System.MissingMemberException.ClassName +F:System.MissingMemberException.MemberName +F:System.MissingMemberException.Signature +F:System.ModuleHandle.EmptyHandle +F:System.PlatformID.MacOSX +F:System.PlatformID.Other +F:System.PlatformID.Unix +F:System.PlatformID.Win32NT +F:System.PlatformID.Win32S +F:System.PlatformID.Win32Windows +F:System.PlatformID.WinCE +F:System.PlatformID.Xbox +F:System.Runtime.CompilerServices.CompilationRelaxations.NoStringInterning +F:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.RefStructs +F:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.RequiredMembers +F:System.Runtime.CompilerServices.LoadHint.Always +F:System.Runtime.CompilerServices.LoadHint.Default +F:System.Runtime.CompilerServices.LoadHint.Sometimes +F:System.Runtime.CompilerServices.MethodCodeType.IL +F:System.Runtime.CompilerServices.MethodCodeType.Native +F:System.Runtime.CompilerServices.MethodCodeType.OPTIL +F:System.Runtime.CompilerServices.MethodCodeType.Runtime +F:System.Runtime.CompilerServices.MethodImplAttribute.MethodCodeType +F:System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining +F:System.Runtime.CompilerServices.MethodImplOptions.AggressiveOptimization +F:System.Runtime.CompilerServices.MethodImplOptions.ForwardRef +F:System.Runtime.CompilerServices.MethodImplOptions.InternalCall +F:System.Runtime.CompilerServices.MethodImplOptions.NoInlining +F:System.Runtime.CompilerServices.MethodImplOptions.NoOptimization +F:System.Runtime.CompilerServices.MethodImplOptions.PreserveSig +F:System.Runtime.CompilerServices.MethodImplOptions.Synchronized +F:System.Runtime.CompilerServices.MethodImplOptions.Unmanaged +F:System.Runtime.CompilerServices.NullableAttribute.NullableFlags +F:System.Runtime.CompilerServices.NullableContextAttribute.Flag +F:System.Runtime.CompilerServices.NullablePublicOnlyAttribute.IncludesInternals +F:System.Runtime.CompilerServices.RuntimeFeature.ByRefFields +F:System.Runtime.CompilerServices.RuntimeFeature.CovariantReturnsOfClasses +F:System.Runtime.CompilerServices.RuntimeFeature.DefaultImplementationsOfInterfaces +F:System.Runtime.CompilerServices.RuntimeFeature.NumericIntPtr +F:System.Runtime.CompilerServices.RuntimeFeature.PortablePdb +F:System.Runtime.CompilerServices.RuntimeFeature.UnmanagedSignatureCallingConvention +F:System.Runtime.CompilerServices.RuntimeFeature.VirtualStaticsInInterfaces +F:System.Runtime.CompilerServices.StrongBox`1.Value +F:System.Runtime.CompilerServices.UnsafeAccessorKind.Constructor +F:System.Runtime.CompilerServices.UnsafeAccessorKind.Field +F:System.Runtime.CompilerServices.UnsafeAccessorKind.Method +F:System.Runtime.CompilerServices.UnsafeAccessorKind.StaticField +F:System.Runtime.CompilerServices.UnsafeAccessorKind.StaticMethod +F:System.SByte.MaxValue +F:System.SByte.MinValue +F:System.Single.E +F:System.Single.Epsilon +F:System.Single.MaxValue +F:System.Single.MinValue +F:System.Single.NaN +F:System.Single.NegativeInfinity +F:System.Single.NegativeZero +F:System.Single.Pi +F:System.Single.PositiveInfinity +F:System.Single.Tau +F:System.String.Empty +F:System.StringComparison.CurrentCulture +F:System.StringComparison.CurrentCultureIgnoreCase +F:System.StringComparison.InvariantCulture +F:System.StringComparison.InvariantCultureIgnoreCase +F:System.StringComparison.Ordinal +F:System.StringComparison.OrdinalIgnoreCase +F:System.StringSplitOptions.None +F:System.StringSplitOptions.RemoveEmptyEntries +F:System.StringSplitOptions.TrimEntries +F:System.Text.NormalizationForm.FormC +F:System.Text.NormalizationForm.FormD +F:System.Text.NormalizationForm.FormKC +F:System.Text.NormalizationForm.FormKD +F:System.Threading.Tasks.ConfigureAwaitOptions.ContinueOnCapturedContext +F:System.Threading.Tasks.ConfigureAwaitOptions.ForceYielding +F:System.Threading.Tasks.ConfigureAwaitOptions.None +F:System.Threading.Tasks.ConfigureAwaitOptions.SuppressThrowing +F:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags.FlowExecutionContext +F:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags.None +F:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags.UseSchedulingContext +F:System.Threading.Tasks.Sources.ValueTaskSourceStatus.Canceled +F:System.Threading.Tasks.Sources.ValueTaskSourceStatus.Faulted +F:System.Threading.Tasks.Sources.ValueTaskSourceStatus.Pending +F:System.Threading.Tasks.Sources.ValueTaskSourceStatus.Succeeded +F:System.Threading.Tasks.TaskContinuationOptions.AttachedToParent +F:System.Threading.Tasks.TaskContinuationOptions.DenyChildAttach +F:System.Threading.Tasks.TaskContinuationOptions.ExecuteSynchronously +F:System.Threading.Tasks.TaskContinuationOptions.HideScheduler +F:System.Threading.Tasks.TaskContinuationOptions.LazyCancellation +F:System.Threading.Tasks.TaskContinuationOptions.LongRunning +F:System.Threading.Tasks.TaskContinuationOptions.None +F:System.Threading.Tasks.TaskContinuationOptions.NotOnCanceled +F:System.Threading.Tasks.TaskContinuationOptions.NotOnFaulted +F:System.Threading.Tasks.TaskContinuationOptions.NotOnRanToCompletion +F:System.Threading.Tasks.TaskContinuationOptions.OnlyOnCanceled +F:System.Threading.Tasks.TaskContinuationOptions.OnlyOnFaulted +F:System.Threading.Tasks.TaskContinuationOptions.OnlyOnRanToCompletion +F:System.Threading.Tasks.TaskContinuationOptions.PreferFairness +F:System.Threading.Tasks.TaskContinuationOptions.RunContinuationsAsynchronously +F:System.Threading.Tasks.TaskCreationOptions.AttachedToParent +F:System.Threading.Tasks.TaskCreationOptions.DenyChildAttach +F:System.Threading.Tasks.TaskCreationOptions.HideScheduler +F:System.Threading.Tasks.TaskCreationOptions.LongRunning +F:System.Threading.Tasks.TaskCreationOptions.None +F:System.Threading.Tasks.TaskCreationOptions.PreferFairness +F:System.Threading.Tasks.TaskCreationOptions.RunContinuationsAsynchronously +F:System.Threading.Tasks.TaskStatus.Canceled +F:System.Threading.Tasks.TaskStatus.Created +F:System.Threading.Tasks.TaskStatus.Faulted +F:System.Threading.Tasks.TaskStatus.RanToCompletion +F:System.Threading.Tasks.TaskStatus.Running +F:System.Threading.Tasks.TaskStatus.WaitingForActivation +F:System.Threading.Tasks.TaskStatus.WaitingForChildrenToComplete +F:System.Threading.Tasks.TaskStatus.WaitingToRun +F:System.TimeSpan.MaxValue +F:System.TimeSpan.MinValue +F:System.TimeSpan.NanosecondsPerTick +F:System.TimeSpan.TicksPerDay +F:System.TimeSpan.TicksPerHour +F:System.TimeSpan.TicksPerMicrosecond +F:System.TimeSpan.TicksPerMillisecond +F:System.TimeSpan.TicksPerMinute +F:System.TimeSpan.TicksPerSecond +F:System.TimeSpan.Zero +F:System.Type.Delimiter +F:System.Type.EmptyTypes +F:System.Type.FilterAttribute +F:System.Type.FilterName +F:System.Type.FilterNameIgnoreCase +F:System.Type.Missing +F:System.TypeCode.Boolean +F:System.TypeCode.Byte +F:System.TypeCode.Char +F:System.TypeCode.DateTime +F:System.TypeCode.DBNull +F:System.TypeCode.Decimal +F:System.TypeCode.Double +F:System.TypeCode.Empty +F:System.TypeCode.Int16 +F:System.TypeCode.Int32 +F:System.TypeCode.Int64 +F:System.TypeCode.Object +F:System.TypeCode.SByte +F:System.TypeCode.Single +F:System.TypeCode.String +F:System.TypeCode.UInt16 +F:System.TypeCode.UInt32 +F:System.TypeCode.UInt64 +F:System.UInt16.MaxValue +F:System.UInt16.MinValue +F:System.UInt32.MaxValue +F:System.UInt32.MinValue +F:System.UInt64.MaxValue +F:System.UInt64.MinValue +F:System.UIntPtr.Zero +F:System.Uri.SchemeDelimiter +F:System.Uri.UriSchemeFile +F:System.Uri.UriSchemeFtp +F:System.Uri.UriSchemeFtps +F:System.Uri.UriSchemeGopher +F:System.Uri.UriSchemeHttp +F:System.Uri.UriSchemeHttps +F:System.Uri.UriSchemeMailto +F:System.Uri.UriSchemeNetPipe +F:System.Uri.UriSchemeNetTcp +F:System.Uri.UriSchemeNews +F:System.Uri.UriSchemeNntp +F:System.Uri.UriSchemeSftp +F:System.Uri.UriSchemeSsh +F:System.Uri.UriSchemeTelnet +F:System.Uri.UriSchemeWs +F:System.Uri.UriSchemeWss +F:System.UriComponents.AbsoluteUri +F:System.UriComponents.Fragment +F:System.UriComponents.Host +F:System.UriComponents.HostAndPort +F:System.UriComponents.HttpRequestUrl +F:System.UriComponents.KeepDelimiter +F:System.UriComponents.NormalizedHost +F:System.UriComponents.Path +F:System.UriComponents.PathAndQuery +F:System.UriComponents.Port +F:System.UriComponents.Query +F:System.UriComponents.Scheme +F:System.UriComponents.SchemeAndServer +F:System.UriComponents.SerializationInfoString +F:System.UriComponents.StrongAuthority +F:System.UriComponents.StrongPort +F:System.UriComponents.UserInfo +F:System.UriFormat.SafeUnescaped +F:System.UriFormat.Unescaped +F:System.UriFormat.UriEscaped +F:System.UriHostNameType.Basic +F:System.UriHostNameType.Dns +F:System.UriHostNameType.IPv4 +F:System.UriHostNameType.IPv6 +F:System.UriHostNameType.Unknown +F:System.UriKind.Absolute +F:System.UriKind.Relative +F:System.UriKind.RelativeOrAbsolute +F:System.UriPartial.Authority +F:System.UriPartial.Path +F:System.UriPartial.Query +F:System.UriPartial.Scheme +F:System.ValueTuple`1.Item1 +F:System.ValueTuple`2.Item1 +F:System.ValueTuple`2.Item2 +F:System.ValueTuple`3.Item1 +F:System.ValueTuple`3.Item2 +F:System.ValueTuple`3.Item3 +F:System.ValueTuple`4.Item1 +F:System.ValueTuple`4.Item2 +F:System.ValueTuple`4.Item3 +F:System.ValueTuple`4.Item4 +F:System.ValueTuple`5.Item1 +F:System.ValueTuple`5.Item2 +F:System.ValueTuple`5.Item3 +F:System.ValueTuple`5.Item4 +F:System.ValueTuple`5.Item5 +F:System.ValueTuple`6.Item1 +F:System.ValueTuple`6.Item2 +F:System.ValueTuple`6.Item3 +F:System.ValueTuple`6.Item4 +F:System.ValueTuple`6.Item5 +F:System.ValueTuple`6.Item6 +F:System.ValueTuple`7.Item1 +F:System.ValueTuple`7.Item2 +F:System.ValueTuple`7.Item3 +F:System.ValueTuple`7.Item4 +F:System.ValueTuple`7.Item5 +F:System.ValueTuple`7.Item6 +F:System.ValueTuple`7.Item7 +F:System.ValueTuple`8.Item1 +F:System.ValueTuple`8.Item2 +F:System.ValueTuple`8.Item3 +F:System.ValueTuple`8.Item4 +F:System.ValueTuple`8.Item5 +F:System.ValueTuple`8.Item6 +F:System.ValueTuple`8.Item7 +F:System.ValueTuple`8.Rest +M:System.AccessViolationException.#ctor +M:System.AccessViolationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.AccessViolationException.#ctor(System.String) +M:System.AccessViolationException.#ctor(System.String,System.Exception) +M:System.Action.#ctor(System.Object,System.IntPtr) +M:System.Action.BeginInvoke(System.AsyncCallback,System.Object) +M:System.Action.EndInvoke(System.IAsyncResult) +M:System.Action.Invoke +M:System.Action`1.#ctor(System.Object,System.IntPtr) +M:System.Action`1.BeginInvoke(`0,System.AsyncCallback,System.Object) +M:System.Action`1.EndInvoke(System.IAsyncResult) +M:System.Action`1.Invoke(`0) +M:System.Action`10.#ctor(System.Object,System.IntPtr) +M:System.Action`10.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,System.AsyncCallback,System.Object) +M:System.Action`10.EndInvoke(System.IAsyncResult) +M:System.Action`10.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9) +M:System.Action`11.#ctor(System.Object,System.IntPtr) +M:System.Action`11.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,System.AsyncCallback,System.Object) +M:System.Action`11.EndInvoke(System.IAsyncResult) +M:System.Action`11.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10) +M:System.Action`12.#ctor(System.Object,System.IntPtr) +M:System.Action`12.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,System.AsyncCallback,System.Object) +M:System.Action`12.EndInvoke(System.IAsyncResult) +M:System.Action`12.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11) +M:System.Action`13.#ctor(System.Object,System.IntPtr) +M:System.Action`13.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,System.AsyncCallback,System.Object) +M:System.Action`13.EndInvoke(System.IAsyncResult) +M:System.Action`13.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12) +M:System.Action`14.#ctor(System.Object,System.IntPtr) +M:System.Action`14.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,System.AsyncCallback,System.Object) +M:System.Action`14.EndInvoke(System.IAsyncResult) +M:System.Action`14.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13) +M:System.Action`15.#ctor(System.Object,System.IntPtr) +M:System.Action`15.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,System.AsyncCallback,System.Object) +M:System.Action`15.EndInvoke(System.IAsyncResult) +M:System.Action`15.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14) +M:System.Action`16.#ctor(System.Object,System.IntPtr) +M:System.Action`16.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,`15,System.AsyncCallback,System.Object) +M:System.Action`16.EndInvoke(System.IAsyncResult) +M:System.Action`16.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,`15) +M:System.Action`2.#ctor(System.Object,System.IntPtr) +M:System.Action`2.BeginInvoke(`0,`1,System.AsyncCallback,System.Object) +M:System.Action`2.EndInvoke(System.IAsyncResult) +M:System.Action`2.Invoke(`0,`1) +M:System.Action`3.#ctor(System.Object,System.IntPtr) +M:System.Action`3.BeginInvoke(`0,`1,`2,System.AsyncCallback,System.Object) +M:System.Action`3.EndInvoke(System.IAsyncResult) +M:System.Action`3.Invoke(`0,`1,`2) +M:System.Action`4.#ctor(System.Object,System.IntPtr) +M:System.Action`4.BeginInvoke(`0,`1,`2,`3,System.AsyncCallback,System.Object) +M:System.Action`4.EndInvoke(System.IAsyncResult) +M:System.Action`4.Invoke(`0,`1,`2,`3) +M:System.Action`5.#ctor(System.Object,System.IntPtr) +M:System.Action`5.BeginInvoke(`0,`1,`2,`3,`4,System.AsyncCallback,System.Object) +M:System.Action`5.EndInvoke(System.IAsyncResult) +M:System.Action`5.Invoke(`0,`1,`2,`3,`4) +M:System.Action`6.#ctor(System.Object,System.IntPtr) +M:System.Action`6.BeginInvoke(`0,`1,`2,`3,`4,`5,System.AsyncCallback,System.Object) +M:System.Action`6.EndInvoke(System.IAsyncResult) +M:System.Action`6.Invoke(`0,`1,`2,`3,`4,`5) +M:System.Action`7.#ctor(System.Object,System.IntPtr) +M:System.Action`7.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,System.AsyncCallback,System.Object) +M:System.Action`7.EndInvoke(System.IAsyncResult) +M:System.Action`7.Invoke(`0,`1,`2,`3,`4,`5,`6) +M:System.Action`8.#ctor(System.Object,System.IntPtr) +M:System.Action`8.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,System.AsyncCallback,System.Object) +M:System.Action`8.EndInvoke(System.IAsyncResult) +M:System.Action`8.Invoke(`0,`1,`2,`3,`4,`5,`6,`7) +M:System.Action`9.#ctor(System.Object,System.IntPtr) +M:System.Action`9.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,System.AsyncCallback,System.Object) +M:System.Action`9.EndInvoke(System.IAsyncResult) +M:System.Action`9.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8) +M:System.AggregateException.#ctor +M:System.AggregateException.#ctor(System.Collections.Generic.IEnumerable{System.Exception}) +M:System.AggregateException.#ctor(System.Exception[]) +M:System.AggregateException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.AggregateException.#ctor(System.String) +M:System.AggregateException.#ctor(System.String,System.Collections.Generic.IEnumerable{System.Exception}) +M:System.AggregateException.#ctor(System.String,System.Exception) +M:System.AggregateException.#ctor(System.String,System.Exception[]) +M:System.AggregateException.Flatten +M:System.AggregateException.get_InnerExceptions +M:System.AggregateException.get_Message +M:System.AggregateException.GetBaseException +M:System.AggregateException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.AggregateException.Handle(System.Func{System.Exception,System.Boolean}) +M:System.AggregateException.ToString +M:System.ApplicationException.#ctor +M:System.ApplicationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ApplicationException.#ctor(System.String) +M:System.ApplicationException.#ctor(System.String,System.Exception) +M:System.ApplicationId.#ctor(System.Byte[],System.String,System.Version,System.String,System.String) +M:System.ApplicationId.Copy +M:System.ApplicationId.Equals(System.Object) +M:System.ApplicationId.get_Culture +M:System.ApplicationId.get_Name +M:System.ApplicationId.get_ProcessorArchitecture +M:System.ApplicationId.get_PublicKeyToken +M:System.ApplicationId.get_Version +M:System.ApplicationId.GetHashCode +M:System.ApplicationId.ToString +M:System.ArgIterator.#ctor(System.RuntimeArgumentHandle) +M:System.ArgIterator.#ctor(System.RuntimeArgumentHandle,System.Void*) +M:System.ArgIterator.End +M:System.ArgIterator.Equals(System.Object) +M:System.ArgIterator.GetHashCode +M:System.ArgIterator.GetNextArg +M:System.ArgIterator.GetNextArg(System.RuntimeTypeHandle) +M:System.ArgIterator.GetNextArgType +M:System.ArgIterator.GetRemainingCount +M:System.ArgumentException.#ctor +M:System.ArgumentException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArgumentException.#ctor(System.String) +M:System.ArgumentException.#ctor(System.String,System.Exception) +M:System.ArgumentException.#ctor(System.String,System.String) +M:System.ArgumentException.#ctor(System.String,System.String,System.Exception) +M:System.ArgumentException.get_Message +M:System.ArgumentException.get_ParamName +M:System.ArgumentException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArgumentException.ThrowIfNullOrEmpty(System.String,System.String) +M:System.ArgumentException.ThrowIfNullOrWhiteSpace(System.String,System.String) +M:System.ArgumentNullException.#ctor +M:System.ArgumentNullException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArgumentNullException.#ctor(System.String) +M:System.ArgumentNullException.#ctor(System.String,System.Exception) +M:System.ArgumentNullException.#ctor(System.String,System.String) +M:System.ArgumentNullException.ThrowIfNull(System.Object,System.String) +M:System.ArgumentNullException.ThrowIfNull(System.Void*,System.String) +M:System.ArgumentOutOfRangeException.#ctor +M:System.ArgumentOutOfRangeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArgumentOutOfRangeException.#ctor(System.String) +M:System.ArgumentOutOfRangeException.#ctor(System.String,System.Exception) +M:System.ArgumentOutOfRangeException.#ctor(System.String,System.Object,System.String) +M:System.ArgumentOutOfRangeException.#ctor(System.String,System.String) +M:System.ArgumentOutOfRangeException.get_ActualValue +M:System.ArgumentOutOfRangeException.get_Message +M:System.ArgumentOutOfRangeException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArgumentOutOfRangeException.ThrowIfEqual``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfGreaterThan``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfLessThan``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfLessThanOrEqual``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfNegative``1(``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfNegativeOrZero``1(``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfNotEqual``1(``0,``0,System.String) +M:System.ArgumentOutOfRangeException.ThrowIfZero``1(``0,System.String) +M:System.ArithmeticException.#ctor +M:System.ArithmeticException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArithmeticException.#ctor(System.String) +M:System.ArithmeticException.#ctor(System.String,System.Exception) +M:System.Array.AsReadOnly``1(``0[]) +M:System.Array.BinarySearch(System.Array,System.Int32,System.Int32,System.Object) +M:System.Array.BinarySearch(System.Array,System.Int32,System.Int32,System.Object,System.Collections.IComparer) +M:System.Array.BinarySearch(System.Array,System.Object) +M:System.Array.BinarySearch(System.Array,System.Object,System.Collections.IComparer) +M:System.Array.BinarySearch``1(``0[],``0) +M:System.Array.BinarySearch``1(``0[],``0,System.Collections.Generic.IComparer{``0}) +M:System.Array.BinarySearch``1(``0[],System.Int32,System.Int32,``0) +M:System.Array.BinarySearch``1(``0[],System.Int32,System.Int32,``0,System.Collections.Generic.IComparer{``0}) +M:System.Array.Clear(System.Array) +M:System.Array.Clear(System.Array,System.Int32,System.Int32) +M:System.Array.Clone +M:System.Array.ConstrainedCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) +M:System.Array.ConvertAll``2(``0[],System.Converter{``0,``1}) +M:System.Array.Copy(System.Array,System.Array,System.Int32) +M:System.Array.Copy(System.Array,System.Array,System.Int64) +M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) +M:System.Array.Copy(System.Array,System.Int64,System.Array,System.Int64,System.Int64) +M:System.Array.CopyTo(System.Array,System.Int32) +M:System.Array.CopyTo(System.Array,System.Int64) +M:System.Array.CreateInstance(System.Type,System.Int32) +M:System.Array.CreateInstance(System.Type,System.Int32,System.Int32) +M:System.Array.CreateInstance(System.Type,System.Int32,System.Int32,System.Int32) +M:System.Array.CreateInstance(System.Type,System.Int32[]) +M:System.Array.CreateInstance(System.Type,System.Int32[],System.Int32[]) +M:System.Array.CreateInstance(System.Type,System.Int64[]) +M:System.Array.Empty``1 +M:System.Array.Exists``1(``0[],System.Predicate{``0}) +M:System.Array.Fill``1(``0[],``0) +M:System.Array.Fill``1(``0[],``0,System.Int32,System.Int32) +M:System.Array.Find``1(``0[],System.Predicate{``0}) +M:System.Array.FindAll``1(``0[],System.Predicate{``0}) +M:System.Array.FindIndex``1(``0[],System.Int32,System.Int32,System.Predicate{``0}) +M:System.Array.FindIndex``1(``0[],System.Int32,System.Predicate{``0}) +M:System.Array.FindIndex``1(``0[],System.Predicate{``0}) +M:System.Array.FindLast``1(``0[],System.Predicate{``0}) +M:System.Array.FindLastIndex``1(``0[],System.Int32,System.Int32,System.Predicate{``0}) +M:System.Array.FindLastIndex``1(``0[],System.Int32,System.Predicate{``0}) +M:System.Array.FindLastIndex``1(``0[],System.Predicate{``0}) +M:System.Array.ForEach``1(``0[],System.Action{``0}) +M:System.Array.get_IsFixedSize +M:System.Array.get_IsReadOnly +M:System.Array.get_IsSynchronized +M:System.Array.get_Length +M:System.Array.get_LongLength +M:System.Array.get_MaxLength +M:System.Array.get_Rank +M:System.Array.get_SyncRoot +M:System.Array.GetEnumerator +M:System.Array.GetLength(System.Int32) +M:System.Array.GetLongLength(System.Int32) +M:System.Array.GetLowerBound(System.Int32) +M:System.Array.GetUpperBound(System.Int32) +M:System.Array.GetValue(System.Int32) +M:System.Array.GetValue(System.Int32,System.Int32) +M:System.Array.GetValue(System.Int32,System.Int32,System.Int32) +M:System.Array.GetValue(System.Int32[]) +M:System.Array.GetValue(System.Int64) +M:System.Array.GetValue(System.Int64,System.Int64) +M:System.Array.GetValue(System.Int64,System.Int64,System.Int64) +M:System.Array.GetValue(System.Int64[]) +M:System.Array.IndexOf(System.Array,System.Object) +M:System.Array.IndexOf(System.Array,System.Object,System.Int32) +M:System.Array.IndexOf(System.Array,System.Object,System.Int32,System.Int32) +M:System.Array.IndexOf``1(``0[],``0) +M:System.Array.IndexOf``1(``0[],``0,System.Int32) +M:System.Array.IndexOf``1(``0[],``0,System.Int32,System.Int32) +M:System.Array.Initialize +M:System.Array.LastIndexOf(System.Array,System.Object) +M:System.Array.LastIndexOf(System.Array,System.Object,System.Int32) +M:System.Array.LastIndexOf(System.Array,System.Object,System.Int32,System.Int32) +M:System.Array.LastIndexOf``1(``0[],``0) +M:System.Array.LastIndexOf``1(``0[],``0,System.Int32) +M:System.Array.LastIndexOf``1(``0[],``0,System.Int32,System.Int32) +M:System.Array.Resize``1(``0[]@,System.Int32) +M:System.Array.Reverse(System.Array) +M:System.Array.Reverse(System.Array,System.Int32,System.Int32) +M:System.Array.Reverse``1(``0[]) +M:System.Array.Reverse``1(``0[],System.Int32,System.Int32) +M:System.Array.SetValue(System.Object,System.Int32) +M:System.Array.SetValue(System.Object,System.Int32,System.Int32) +M:System.Array.SetValue(System.Object,System.Int32,System.Int32,System.Int32) +M:System.Array.SetValue(System.Object,System.Int32[]) +M:System.Array.SetValue(System.Object,System.Int64) +M:System.Array.SetValue(System.Object,System.Int64,System.Int64) +M:System.Array.SetValue(System.Object,System.Int64,System.Int64,System.Int64) +M:System.Array.SetValue(System.Object,System.Int64[]) +M:System.Array.Sort(System.Array) +M:System.Array.Sort(System.Array,System.Array) +M:System.Array.Sort(System.Array,System.Array,System.Collections.IComparer) +M:System.Array.Sort(System.Array,System.Array,System.Int32,System.Int32) +M:System.Array.Sort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer) +M:System.Array.Sort(System.Array,System.Collections.IComparer) +M:System.Array.Sort(System.Array,System.Int32,System.Int32) +M:System.Array.Sort(System.Array,System.Int32,System.Int32,System.Collections.IComparer) +M:System.Array.Sort``1(``0[]) +M:System.Array.Sort``1(``0[],System.Collections.Generic.IComparer{``0}) +M:System.Array.Sort``1(``0[],System.Comparison{``0}) +M:System.Array.Sort``1(``0[],System.Int32,System.Int32) +M:System.Array.Sort``1(``0[],System.Int32,System.Int32,System.Collections.Generic.IComparer{``0}) +M:System.Array.Sort``2(``0[],``1[]) +M:System.Array.Sort``2(``0[],``1[],System.Collections.Generic.IComparer{``0}) +M:System.Array.Sort``2(``0[],``1[],System.Int32,System.Int32) +M:System.Array.Sort``2(``0[],``1[],System.Int32,System.Int32,System.Collections.Generic.IComparer{``0}) +M:System.Array.TrueForAll``1(``0[],System.Predicate{``0}) +M:System.ArraySegment`1.#ctor(`0[]) +M:System.ArraySegment`1.#ctor(`0[],System.Int32,System.Int32) +M:System.ArraySegment`1.CopyTo(`0[]) +M:System.ArraySegment`1.CopyTo(`0[],System.Int32) +M:System.ArraySegment`1.CopyTo(System.ArraySegment{`0}) +M:System.ArraySegment`1.Enumerator.Dispose +M:System.ArraySegment`1.Enumerator.get_Current +M:System.ArraySegment`1.Enumerator.MoveNext +M:System.ArraySegment`1.Equals(System.ArraySegment{`0}) +M:System.ArraySegment`1.Equals(System.Object) +M:System.ArraySegment`1.get_Array +M:System.ArraySegment`1.get_Count +M:System.ArraySegment`1.get_Empty +M:System.ArraySegment`1.get_Item(System.Int32) +M:System.ArraySegment`1.get_Offset +M:System.ArraySegment`1.GetEnumerator +M:System.ArraySegment`1.GetHashCode +M:System.ArraySegment`1.op_Equality(System.ArraySegment{`0},System.ArraySegment{`0}) +M:System.ArraySegment`1.op_Implicit(`0[])~System.ArraySegment{`0} +M:System.ArraySegment`1.op_Inequality(System.ArraySegment{`0},System.ArraySegment{`0}) +M:System.ArraySegment`1.set_Item(System.Int32,`0) +M:System.ArraySegment`1.Slice(System.Int32) +M:System.ArraySegment`1.Slice(System.Int32,System.Int32) +M:System.ArraySegment`1.ToArray +M:System.ArrayTypeMismatchException.#ctor +M:System.ArrayTypeMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ArrayTypeMismatchException.#ctor(System.String) +M:System.ArrayTypeMismatchException.#ctor(System.String,System.Exception) +M:System.AsyncCallback.#ctor(System.Object,System.IntPtr) +M:System.AsyncCallback.BeginInvoke(System.IAsyncResult,System.AsyncCallback,System.Object) +M:System.AsyncCallback.EndInvoke(System.IAsyncResult) +M:System.AsyncCallback.Invoke(System.IAsyncResult) +M:System.Attribute.#ctor +M:System.Attribute.Equals(System.Object) +M:System.Attribute.get_TypeId +M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) +M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) +M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) +M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) +M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly) +M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) +M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) +M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) +M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.Module) +M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) +M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) +M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) +M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) +M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) +M:System.Attribute.GetHashCode +M:System.Attribute.IsDefaultAttribute +M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) +M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) +M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) +M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) +M:System.Attribute.IsDefined(System.Reflection.Module,System.Type) +M:System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) +M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) +M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) +M:System.Attribute.Match(System.Object) +M:System.AttributeUsageAttribute.#ctor(System.AttributeTargets) +M:System.AttributeUsageAttribute.get_AllowMultiple +M:System.AttributeUsageAttribute.get_Inherited +M:System.AttributeUsageAttribute.get_ValidOn +M:System.AttributeUsageAttribute.set_AllowMultiple(System.Boolean) +M:System.AttributeUsageAttribute.set_Inherited(System.Boolean) +M:System.BadImageFormatException.#ctor +M:System.BadImageFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.BadImageFormatException.#ctor(System.String) +M:System.BadImageFormatException.#ctor(System.String,System.Exception) +M:System.BadImageFormatException.#ctor(System.String,System.String) +M:System.BadImageFormatException.#ctor(System.String,System.String,System.Exception) +M:System.BadImageFormatException.get_FileName +M:System.BadImageFormatException.get_FusionLog +M:System.BadImageFormatException.get_Message +M:System.BadImageFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.BadImageFormatException.ToString +M:System.BitConverter.DoubleToInt64Bits(System.Double) +M:System.BitConverter.DoubleToUInt64Bits(System.Double) +M:System.BitConverter.GetBytes(System.Boolean) +M:System.BitConverter.GetBytes(System.Char) +M:System.BitConverter.GetBytes(System.Double) +M:System.BitConverter.GetBytes(System.Half) +M:System.BitConverter.GetBytes(System.Int16) +M:System.BitConverter.GetBytes(System.Int32) +M:System.BitConverter.GetBytes(System.Int64) +M:System.BitConverter.GetBytes(System.Single) +M:System.BitConverter.GetBytes(System.UInt16) +M:System.BitConverter.GetBytes(System.UInt32) +M:System.BitConverter.GetBytes(System.UInt64) +M:System.BitConverter.HalfToInt16Bits(System.Half) +M:System.BitConverter.HalfToUInt16Bits(System.Half) +M:System.BitConverter.Int16BitsToHalf(System.Int16) +M:System.BitConverter.Int32BitsToSingle(System.Int32) +M:System.BitConverter.Int64BitsToDouble(System.Int64) +M:System.BitConverter.SingleToInt32Bits(System.Single) +M:System.BitConverter.SingleToUInt32Bits(System.Single) +M:System.BitConverter.ToBoolean(System.Byte[],System.Int32) +M:System.BitConverter.ToBoolean(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToChar(System.Byte[],System.Int32) +M:System.BitConverter.ToChar(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToDouble(System.Byte[],System.Int32) +M:System.BitConverter.ToDouble(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToHalf(System.Byte[],System.Int32) +M:System.BitConverter.ToHalf(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToInt16(System.Byte[],System.Int32) +M:System.BitConverter.ToInt16(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToInt32(System.Byte[],System.Int32) +M:System.BitConverter.ToInt32(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToInt64(System.Byte[],System.Int32) +M:System.BitConverter.ToInt64(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToSingle(System.Byte[],System.Int32) +M:System.BitConverter.ToSingle(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToString(System.Byte[]) +M:System.BitConverter.ToString(System.Byte[],System.Int32) +M:System.BitConverter.ToString(System.Byte[],System.Int32,System.Int32) +M:System.BitConverter.ToUInt16(System.Byte[],System.Int32) +M:System.BitConverter.ToUInt16(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToUInt32(System.Byte[],System.Int32) +M:System.BitConverter.ToUInt32(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.ToUInt64(System.Byte[],System.Int32) +M:System.BitConverter.ToUInt64(System.ReadOnlySpan{System.Byte}) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Boolean) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Char) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Double) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Half) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Int16) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Int32) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Int64) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Single) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.UInt16) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.UInt32) +M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.UInt64) +M:System.BitConverter.UInt16BitsToHalf(System.UInt16) +M:System.BitConverter.UInt32BitsToSingle(System.UInt32) +M:System.BitConverter.UInt64BitsToDouble(System.UInt64) +M:System.Boolean.CompareTo(System.Boolean) +M:System.Boolean.CompareTo(System.Object) +M:System.Boolean.Equals(System.Boolean) +M:System.Boolean.Equals(System.Object) +M:System.Boolean.GetHashCode +M:System.Boolean.GetTypeCode +M:System.Boolean.Parse(System.ReadOnlySpan{System.Char}) +M:System.Boolean.Parse(System.String) +M:System.Boolean.ToString +M:System.Boolean.ToString(System.IFormatProvider) +M:System.Boolean.TryFormat(System.Span{System.Char},System.Int32@) +M:System.Boolean.TryParse(System.ReadOnlySpan{System.Char},System.Boolean@) +M:System.Boolean.TryParse(System.String,System.Boolean@) +M:System.Buffer.BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) +M:System.Buffer.ByteLength(System.Array) +M:System.Buffer.GetByte(System.Array,System.Int32) +M:System.Buffer.MemoryCopy(System.Void*,System.Void*,System.Int64,System.Int64) +M:System.Buffer.MemoryCopy(System.Void*,System.Void*,System.UInt64,System.UInt64) +M:System.Buffer.SetByte(System.Array,System.Int32,System.Byte) +M:System.Buffers.ArrayPool`1.#ctor +M:System.Buffers.ArrayPool`1.Create +M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32) +M:System.Buffers.ArrayPool`1.get_Shared +M:System.Buffers.ArrayPool`1.Rent(System.Int32) +M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean) +M:System.Buffers.IMemoryOwner`1.get_Memory +M:System.Buffers.IPinnable.Pin(System.Int32) +M:System.Buffers.IPinnable.Unpin +M:System.Buffers.MemoryHandle.#ctor(System.Void*,System.Runtime.InteropServices.GCHandle,System.Buffers.IPinnable) +M:System.Buffers.MemoryHandle.Dispose +M:System.Buffers.MemoryHandle.get_Pointer +M:System.Buffers.MemoryManager`1.#ctor +M:System.Buffers.MemoryManager`1.CreateMemory(System.Int32) +M:System.Buffers.MemoryManager`1.CreateMemory(System.Int32,System.Int32) +M:System.Buffers.MemoryManager`1.Dispose(System.Boolean) +M:System.Buffers.MemoryManager`1.get_Memory +M:System.Buffers.MemoryManager`1.GetSpan +M:System.Buffers.MemoryManager`1.Pin(System.Int32) +M:System.Buffers.MemoryManager`1.TryGetArray(System.ArraySegment{`0}@) +M:System.Buffers.MemoryManager`1.Unpin +M:System.Buffers.ReadOnlySpanAction`2.#ctor(System.Object,System.IntPtr) +M:System.Buffers.ReadOnlySpanAction`2.BeginInvoke(System.ReadOnlySpan{`0},`1,System.AsyncCallback,System.Object) +M:System.Buffers.ReadOnlySpanAction`2.EndInvoke(System.IAsyncResult) +M:System.Buffers.ReadOnlySpanAction`2.Invoke(System.ReadOnlySpan{`0},`1) +M:System.Buffers.SearchValues.Create(System.ReadOnlySpan{System.Byte}) +M:System.Buffers.SearchValues.Create(System.ReadOnlySpan{System.Char}) +M:System.Buffers.SearchValues`1.Contains(`0) +M:System.Buffers.SpanAction`2.#ctor(System.Object,System.IntPtr) +M:System.Buffers.SpanAction`2.BeginInvoke(System.Span{`0},`1,System.AsyncCallback,System.Object) +M:System.Buffers.SpanAction`2.EndInvoke(System.IAsyncResult) +M:System.Buffers.SpanAction`2.Invoke(System.Span{`0},`1) +M:System.Buffers.Text.Base64.DecodeFromUtf8(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int32@,System.Boolean) +M:System.Buffers.Text.Base64.DecodeFromUtf8InPlace(System.Span{System.Byte},System.Int32@) +M:System.Buffers.Text.Base64.EncodeToUtf8(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int32@,System.Boolean) +M:System.Buffers.Text.Base64.EncodeToUtf8InPlace(System.Span{System.Byte},System.Int32,System.Int32@) +M:System.Buffers.Text.Base64.GetMaxDecodedFromUtf8Length(System.Int32) +M:System.Buffers.Text.Base64.GetMaxEncodedToUtf8Length(System.Int32) +M:System.Buffers.Text.Base64.IsValid(System.ReadOnlySpan{System.Byte}) +M:System.Buffers.Text.Base64.IsValid(System.ReadOnlySpan{System.Byte},System.Int32@) +M:System.Buffers.Text.Base64.IsValid(System.ReadOnlySpan{System.Char}) +M:System.Buffers.Text.Base64.IsValid(System.ReadOnlySpan{System.Char},System.Int32@) +M:System.Byte.Clamp(System.Byte,System.Byte,System.Byte) +M:System.Byte.CompareTo(System.Byte) +M:System.Byte.CompareTo(System.Object) +M:System.Byte.CreateChecked``1(``0) +M:System.Byte.CreateSaturating``1(``0) +M:System.Byte.CreateTruncating``1(``0) +M:System.Byte.DivRem(System.Byte,System.Byte) +M:System.Byte.Equals(System.Byte) +M:System.Byte.Equals(System.Object) +M:System.Byte.GetHashCode +M:System.Byte.GetTypeCode +M:System.Byte.IsEvenInteger(System.Byte) +M:System.Byte.IsOddInteger(System.Byte) +M:System.Byte.IsPow2(System.Byte) +M:System.Byte.LeadingZeroCount(System.Byte) +M:System.Byte.Log2(System.Byte) +M:System.Byte.Max(System.Byte,System.Byte) +M:System.Byte.Min(System.Byte,System.Byte) +M:System.Byte.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Byte.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Byte.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Byte.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Byte.Parse(System.String) +M:System.Byte.Parse(System.String,System.Globalization.NumberStyles) +M:System.Byte.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Byte.Parse(System.String,System.IFormatProvider) +M:System.Byte.PopCount(System.Byte) +M:System.Byte.RotateLeft(System.Byte,System.Int32) +M:System.Byte.RotateRight(System.Byte,System.Int32) +M:System.Byte.Sign(System.Byte) +M:System.Byte.ToString +M:System.Byte.ToString(System.IFormatProvider) +M:System.Byte.ToString(System.String) +M:System.Byte.ToString(System.String,System.IFormatProvider) +M:System.Byte.TrailingZeroCount(System.Byte) +M:System.Byte.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Byte.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Byte},System.Byte@) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Byte@) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Byte@) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Char},System.Byte@) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Byte@) +M:System.Byte.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Byte@) +M:System.Byte.TryParse(System.String,System.Byte@) +M:System.Byte.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Byte@) +M:System.Byte.TryParse(System.String,System.IFormatProvider,System.Byte@) +M:System.CannotUnloadAppDomainException.#ctor +M:System.CannotUnloadAppDomainException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.CannotUnloadAppDomainException.#ctor(System.String) +M:System.CannotUnloadAppDomainException.#ctor(System.String,System.Exception) +M:System.Char.CompareTo(System.Char) +M:System.Char.CompareTo(System.Object) +M:System.Char.ConvertFromUtf32(System.Int32) +M:System.Char.ConvertToUtf32(System.Char,System.Char) +M:System.Char.ConvertToUtf32(System.String,System.Int32) +M:System.Char.Equals(System.Char) +M:System.Char.Equals(System.Object) +M:System.Char.GetHashCode +M:System.Char.GetNumericValue(System.Char) +M:System.Char.GetNumericValue(System.String,System.Int32) +M:System.Char.GetTypeCode +M:System.Char.GetUnicodeCategory(System.Char) +M:System.Char.GetUnicodeCategory(System.String,System.Int32) +M:System.Char.IsAscii(System.Char) +M:System.Char.IsAsciiDigit(System.Char) +M:System.Char.IsAsciiHexDigit(System.Char) +M:System.Char.IsAsciiHexDigitLower(System.Char) +M:System.Char.IsAsciiHexDigitUpper(System.Char) +M:System.Char.IsAsciiLetter(System.Char) +M:System.Char.IsAsciiLetterLower(System.Char) +M:System.Char.IsAsciiLetterOrDigit(System.Char) +M:System.Char.IsAsciiLetterUpper(System.Char) +M:System.Char.IsBetween(System.Char,System.Char,System.Char) +M:System.Char.IsControl(System.Char) +M:System.Char.IsControl(System.String,System.Int32) +M:System.Char.IsDigit(System.Char) +M:System.Char.IsDigit(System.String,System.Int32) +M:System.Char.IsHighSurrogate(System.Char) +M:System.Char.IsHighSurrogate(System.String,System.Int32) +M:System.Char.IsLetter(System.Char) +M:System.Char.IsLetter(System.String,System.Int32) +M:System.Char.IsLetterOrDigit(System.Char) +M:System.Char.IsLetterOrDigit(System.String,System.Int32) +M:System.Char.IsLower(System.Char) +M:System.Char.IsLower(System.String,System.Int32) +M:System.Char.IsLowSurrogate(System.Char) +M:System.Char.IsLowSurrogate(System.String,System.Int32) +M:System.Char.IsNumber(System.Char) +M:System.Char.IsNumber(System.String,System.Int32) +M:System.Char.IsPunctuation(System.Char) +M:System.Char.IsPunctuation(System.String,System.Int32) +M:System.Char.IsSeparator(System.Char) +M:System.Char.IsSeparator(System.String,System.Int32) +M:System.Char.IsSurrogate(System.Char) +M:System.Char.IsSurrogate(System.String,System.Int32) +M:System.Char.IsSurrogatePair(System.Char,System.Char) +M:System.Char.IsSurrogatePair(System.String,System.Int32) +M:System.Char.IsSymbol(System.Char) +M:System.Char.IsSymbol(System.String,System.Int32) +M:System.Char.IsUpper(System.Char) +M:System.Char.IsUpper(System.String,System.Int32) +M:System.Char.IsWhiteSpace(System.Char) +M:System.Char.IsWhiteSpace(System.String,System.Int32) +M:System.Char.Parse(System.String) +M:System.Char.ToLower(System.Char) +M:System.Char.ToLower(System.Char,System.Globalization.CultureInfo) +M:System.Char.ToLowerInvariant(System.Char) +M:System.Char.ToString +M:System.Char.ToString(System.Char) +M:System.Char.ToString(System.IFormatProvider) +M:System.Char.ToUpper(System.Char) +M:System.Char.ToUpper(System.Char,System.Globalization.CultureInfo) +M:System.Char.ToUpperInvariant(System.Char) +M:System.Char.TryParse(System.String,System.Char@) +M:System.CharEnumerator.Clone +M:System.CharEnumerator.Dispose +M:System.CharEnumerator.get_Current +M:System.CharEnumerator.MoveNext +M:System.CharEnumerator.Reset +M:System.CLSCompliantAttribute.#ctor(System.Boolean) +M:System.CLSCompliantAttribute.get_IsCompliant +M:System.CodeDom.Compiler.GeneratedCodeAttribute.#ctor(System.String,System.String) +M:System.CodeDom.Compiler.GeneratedCodeAttribute.get_Tool +M:System.CodeDom.Compiler.GeneratedCodeAttribute.get_Version +M:System.CodeDom.Compiler.IndentedTextWriter.#ctor(System.IO.TextWriter) +M:System.CodeDom.Compiler.IndentedTextWriter.#ctor(System.IO.TextWriter,System.String) +M:System.CodeDom.Compiler.IndentedTextWriter.Close +M:System.CodeDom.Compiler.IndentedTextWriter.DisposeAsync +M:System.CodeDom.Compiler.IndentedTextWriter.Flush +M:System.CodeDom.Compiler.IndentedTextWriter.FlushAsync +M:System.CodeDom.Compiler.IndentedTextWriter.FlushAsync(System.Threading.CancellationToken) +M:System.CodeDom.Compiler.IndentedTextWriter.get_Encoding +M:System.CodeDom.Compiler.IndentedTextWriter.get_Indent +M:System.CodeDom.Compiler.IndentedTextWriter.get_InnerWriter +M:System.CodeDom.Compiler.IndentedTextWriter.get_NewLine +M:System.CodeDom.Compiler.IndentedTextWriter.OutputTabs +M:System.CodeDom.Compiler.IndentedTextWriter.OutputTabsAsync +M:System.CodeDom.Compiler.IndentedTextWriter.set_Indent(System.Int32) +M:System.CodeDom.Compiler.IndentedTextWriter.set_NewLine(System.String) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Boolean) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Char) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Char[]) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Char[],System.Int32,System.Int32) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Double) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Int32) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Int64) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Object) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Single) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.String) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.String,System.Object) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.String,System.Object,System.Object) +M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.String,System.Object[]) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteAsync(System.Char) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteAsync(System.Char[],System.Int32,System.Int32) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteAsync(System.ReadOnlyMemory{System.Char},System.Threading.CancellationToken) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteAsync(System.String) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteAsync(System.Text.StringBuilder,System.Threading.CancellationToken) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Boolean) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Char) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Char[]) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Char[],System.Int32,System.Int32) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Double) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Int32) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Int64) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Object) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Single) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.String) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.String,System.Object) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.String,System.Object,System.Object) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.String,System.Object[]) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.UInt32) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLineAsync +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLineAsync(System.Char) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLineAsync(System.Char[],System.Int32,System.Int32) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLineAsync(System.ReadOnlyMemory{System.Char},System.Threading.CancellationToken) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLineAsync(System.String) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLineAsync(System.Text.StringBuilder,System.Threading.CancellationToken) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLineNoTabs(System.String) +M:System.CodeDom.Compiler.IndentedTextWriter.WriteLineNoTabsAsync(System.String) +M:System.Collections.ArrayList.#ctor +M:System.Collections.ArrayList.#ctor(System.Collections.ICollection) +M:System.Collections.ArrayList.#ctor(System.Int32) +M:System.Collections.ArrayList.Adapter(System.Collections.IList) +M:System.Collections.ArrayList.Add(System.Object) +M:System.Collections.ArrayList.AddRange(System.Collections.ICollection) +M:System.Collections.ArrayList.BinarySearch(System.Int32,System.Int32,System.Object,System.Collections.IComparer) +M:System.Collections.ArrayList.BinarySearch(System.Object) +M:System.Collections.ArrayList.BinarySearch(System.Object,System.Collections.IComparer) +M:System.Collections.ArrayList.Clear +M:System.Collections.ArrayList.Clone +M:System.Collections.ArrayList.Contains(System.Object) +M:System.Collections.ArrayList.CopyTo(System.Array) +M:System.Collections.ArrayList.CopyTo(System.Array,System.Int32) +M:System.Collections.ArrayList.CopyTo(System.Int32,System.Array,System.Int32,System.Int32) +M:System.Collections.ArrayList.FixedSize(System.Collections.ArrayList) +M:System.Collections.ArrayList.FixedSize(System.Collections.IList) +M:System.Collections.ArrayList.get_Capacity +M:System.Collections.ArrayList.get_Count +M:System.Collections.ArrayList.get_IsFixedSize +M:System.Collections.ArrayList.get_IsReadOnly +M:System.Collections.ArrayList.get_IsSynchronized +M:System.Collections.ArrayList.get_Item(System.Int32) +M:System.Collections.ArrayList.get_SyncRoot +M:System.Collections.ArrayList.GetEnumerator +M:System.Collections.ArrayList.GetEnumerator(System.Int32,System.Int32) +M:System.Collections.ArrayList.GetRange(System.Int32,System.Int32) +M:System.Collections.ArrayList.IndexOf(System.Object) +M:System.Collections.ArrayList.IndexOf(System.Object,System.Int32) +M:System.Collections.ArrayList.IndexOf(System.Object,System.Int32,System.Int32) +M:System.Collections.ArrayList.Insert(System.Int32,System.Object) +M:System.Collections.ArrayList.InsertRange(System.Int32,System.Collections.ICollection) +M:System.Collections.ArrayList.LastIndexOf(System.Object) +M:System.Collections.ArrayList.LastIndexOf(System.Object,System.Int32) +M:System.Collections.ArrayList.LastIndexOf(System.Object,System.Int32,System.Int32) +M:System.Collections.ArrayList.ReadOnly(System.Collections.ArrayList) +M:System.Collections.ArrayList.ReadOnly(System.Collections.IList) +M:System.Collections.ArrayList.Remove(System.Object) +M:System.Collections.ArrayList.RemoveAt(System.Int32) +M:System.Collections.ArrayList.RemoveRange(System.Int32,System.Int32) +M:System.Collections.ArrayList.Repeat(System.Object,System.Int32) +M:System.Collections.ArrayList.Reverse +M:System.Collections.ArrayList.Reverse(System.Int32,System.Int32) +M:System.Collections.ArrayList.set_Capacity(System.Int32) +M:System.Collections.ArrayList.set_Item(System.Int32,System.Object) +M:System.Collections.ArrayList.SetRange(System.Int32,System.Collections.ICollection) +M:System.Collections.ArrayList.Sort +M:System.Collections.ArrayList.Sort(System.Collections.IComparer) +M:System.Collections.ArrayList.Sort(System.Int32,System.Int32,System.Collections.IComparer) +M:System.Collections.ArrayList.Synchronized(System.Collections.ArrayList) +M:System.Collections.ArrayList.Synchronized(System.Collections.IList) +M:System.Collections.ArrayList.ToArray +M:System.Collections.ArrayList.ToArray(System.Type) +M:System.Collections.ArrayList.TrimToSize +M:System.Collections.Comparer.#ctor(System.Globalization.CultureInfo) +M:System.Collections.Comparer.Compare(System.Object,System.Object) +M:System.Collections.Comparer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.DictionaryEntry.#ctor(System.Object,System.Object) +M:System.Collections.DictionaryEntry.Deconstruct(System.Object@,System.Object@) +M:System.Collections.DictionaryEntry.get_Key +M:System.Collections.DictionaryEntry.get_Value +M:System.Collections.DictionaryEntry.set_Key(System.Object) +M:System.Collections.DictionaryEntry.set_Value(System.Object) +M:System.Collections.Generic.IAsyncEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken) +M:System.Collections.Generic.IAsyncEnumerator`1.get_Current +M:System.Collections.Generic.IAsyncEnumerator`1.MoveNextAsync +M:System.Collections.Generic.ICollection`1.Add(`0) +M:System.Collections.Generic.ICollection`1.Clear +M:System.Collections.Generic.ICollection`1.Contains(`0) +M:System.Collections.Generic.ICollection`1.CopyTo(`0[],System.Int32) +M:System.Collections.Generic.ICollection`1.get_Count +M:System.Collections.Generic.ICollection`1.get_IsReadOnly +M:System.Collections.Generic.ICollection`1.Remove(`0) +M:System.Collections.Generic.IComparer`1.Compare(`0,`0) +M:System.Collections.Generic.IDictionary`2.Add(`0,`1) +M:System.Collections.Generic.IDictionary`2.ContainsKey(`0) +M:System.Collections.Generic.IDictionary`2.get_Item(`0) +M:System.Collections.Generic.IDictionary`2.get_Keys +M:System.Collections.Generic.IDictionary`2.get_Values +M:System.Collections.Generic.IDictionary`2.Remove(`0) +M:System.Collections.Generic.IDictionary`2.set_Item(`0,`1) +M:System.Collections.Generic.IDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Generic.IEnumerable`1.GetEnumerator +M:System.Collections.Generic.IEnumerator`1.get_Current +M:System.Collections.Generic.IEqualityComparer`1.Equals(`0,`0) +M:System.Collections.Generic.IEqualityComparer`1.GetHashCode(`0) +M:System.Collections.Generic.IList`1.get_Item(System.Int32) +M:System.Collections.Generic.IList`1.IndexOf(`0) +M:System.Collections.Generic.IList`1.Insert(System.Int32,`0) +M:System.Collections.Generic.IList`1.RemoveAt(System.Int32) +M:System.Collections.Generic.IList`1.set_Item(System.Int32,`0) +M:System.Collections.Generic.IReadOnlyCollection`1.get_Count +M:System.Collections.Generic.IReadOnlyDictionary`2.ContainsKey(`0) +M:System.Collections.Generic.IReadOnlyDictionary`2.get_Item(`0) +M:System.Collections.Generic.IReadOnlyDictionary`2.get_Keys +M:System.Collections.Generic.IReadOnlyDictionary`2.get_Values +M:System.Collections.Generic.IReadOnlyDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.Generic.IReadOnlyList`1.get_Item(System.Int32) +M:System.Collections.Generic.IReadOnlySet`1.Contains(`0) +M:System.Collections.Generic.IReadOnlySet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.IReadOnlySet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.IReadOnlySet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.IReadOnlySet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.IReadOnlySet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.IReadOnlySet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.Add(`0) +M:System.Collections.Generic.ISet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.Overlaps(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.SetEquals(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.ISet`1.UnionWith(System.Collections.Generic.IEnumerable{`0}) +M:System.Collections.Generic.KeyNotFoundException.#ctor +M:System.Collections.Generic.KeyNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Generic.KeyNotFoundException.#ctor(System.String) +M:System.Collections.Generic.KeyNotFoundException.#ctor(System.String,System.Exception) +M:System.Collections.Generic.KeyValuePair.Create``2(``0,``1) +M:System.Collections.Generic.KeyValuePair`2.#ctor(`0,`1) +M:System.Collections.Generic.KeyValuePair`2.Deconstruct(`0@,`1@) +M:System.Collections.Generic.KeyValuePair`2.get_Key +M:System.Collections.Generic.KeyValuePair`2.get_Value +M:System.Collections.Generic.KeyValuePair`2.ToString +M:System.Collections.Hashtable.#ctor +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary) +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Collections.IEqualityComparer) +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Collections.IHashCodeProvider,System.Collections.IComparer) +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single) +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single,System.Collections.IEqualityComparer) +M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer) +M:System.Collections.Hashtable.#ctor(System.Collections.IEqualityComparer) +M:System.Collections.Hashtable.#ctor(System.Collections.IHashCodeProvider,System.Collections.IComparer) +M:System.Collections.Hashtable.#ctor(System.Int32) +M:System.Collections.Hashtable.#ctor(System.Int32,System.Collections.IEqualityComparer) +M:System.Collections.Hashtable.#ctor(System.Int32,System.Collections.IHashCodeProvider,System.Collections.IComparer) +M:System.Collections.Hashtable.#ctor(System.Int32,System.Single) +M:System.Collections.Hashtable.#ctor(System.Int32,System.Single,System.Collections.IEqualityComparer) +M:System.Collections.Hashtable.#ctor(System.Int32,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer) +M:System.Collections.Hashtable.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Hashtable.Add(System.Object,System.Object) +M:System.Collections.Hashtable.Clear +M:System.Collections.Hashtable.Clone +M:System.Collections.Hashtable.Contains(System.Object) +M:System.Collections.Hashtable.ContainsKey(System.Object) +M:System.Collections.Hashtable.ContainsValue(System.Object) +M:System.Collections.Hashtable.CopyTo(System.Array,System.Int32) +M:System.Collections.Hashtable.get_comparer +M:System.Collections.Hashtable.get_Count +M:System.Collections.Hashtable.get_EqualityComparer +M:System.Collections.Hashtable.get_hcp +M:System.Collections.Hashtable.get_IsFixedSize +M:System.Collections.Hashtable.get_IsReadOnly +M:System.Collections.Hashtable.get_IsSynchronized +M:System.Collections.Hashtable.get_Item(System.Object) +M:System.Collections.Hashtable.get_Keys +M:System.Collections.Hashtable.get_SyncRoot +M:System.Collections.Hashtable.get_Values +M:System.Collections.Hashtable.GetEnumerator +M:System.Collections.Hashtable.GetHash(System.Object) +M:System.Collections.Hashtable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Collections.Hashtable.KeyEquals(System.Object,System.Object) +M:System.Collections.Hashtable.OnDeserialization(System.Object) +M:System.Collections.Hashtable.Remove(System.Object) +M:System.Collections.Hashtable.set_comparer(System.Collections.IComparer) +M:System.Collections.Hashtable.set_hcp(System.Collections.IHashCodeProvider) +M:System.Collections.Hashtable.set_Item(System.Object,System.Object) +M:System.Collections.Hashtable.Synchronized(System.Collections.Hashtable) +M:System.Collections.ICollection.CopyTo(System.Array,System.Int32) +M:System.Collections.ICollection.get_Count +M:System.Collections.ICollection.get_IsSynchronized +M:System.Collections.ICollection.get_SyncRoot +M:System.Collections.IComparer.Compare(System.Object,System.Object) +M:System.Collections.IDictionary.Add(System.Object,System.Object) +M:System.Collections.IDictionary.Clear +M:System.Collections.IDictionary.Contains(System.Object) +M:System.Collections.IDictionary.get_IsFixedSize +M:System.Collections.IDictionary.get_IsReadOnly +M:System.Collections.IDictionary.get_Item(System.Object) +M:System.Collections.IDictionary.get_Keys +M:System.Collections.IDictionary.get_Values +M:System.Collections.IDictionary.GetEnumerator +M:System.Collections.IDictionary.Remove(System.Object) +M:System.Collections.IDictionary.set_Item(System.Object,System.Object) +M:System.Collections.IDictionaryEnumerator.get_Entry +M:System.Collections.IDictionaryEnumerator.get_Key +M:System.Collections.IDictionaryEnumerator.get_Value +M:System.Collections.IEnumerable.GetEnumerator +M:System.Collections.IEnumerator.get_Current +M:System.Collections.IEnumerator.MoveNext +M:System.Collections.IEnumerator.Reset +M:System.Collections.IEqualityComparer.Equals(System.Object,System.Object) +M:System.Collections.IEqualityComparer.GetHashCode(System.Object) +M:System.Collections.IHashCodeProvider.GetHashCode(System.Object) +M:System.Collections.IList.Add(System.Object) +M:System.Collections.IList.Clear +M:System.Collections.IList.Contains(System.Object) +M:System.Collections.IList.get_IsFixedSize +M:System.Collections.IList.get_IsReadOnly +M:System.Collections.IList.get_Item(System.Int32) +M:System.Collections.IList.IndexOf(System.Object) +M:System.Collections.IList.Insert(System.Int32,System.Object) +M:System.Collections.IList.Remove(System.Object) +M:System.Collections.IList.RemoveAt(System.Int32) +M:System.Collections.IList.set_Item(System.Int32,System.Object) +M:System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) +M:System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) +M:System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) +M:System.Collections.ObjectModel.Collection`1.#ctor +M:System.Collections.ObjectModel.Collection`1.#ctor(System.Collections.Generic.IList{`0}) +M:System.Collections.ObjectModel.Collection`1.Add(`0) +M:System.Collections.ObjectModel.Collection`1.Clear +M:System.Collections.ObjectModel.Collection`1.ClearItems +M:System.Collections.ObjectModel.Collection`1.Contains(`0) +M:System.Collections.ObjectModel.Collection`1.CopyTo(`0[],System.Int32) +M:System.Collections.ObjectModel.Collection`1.get_Count +M:System.Collections.ObjectModel.Collection`1.get_Item(System.Int32) +M:System.Collections.ObjectModel.Collection`1.get_Items +M:System.Collections.ObjectModel.Collection`1.GetEnumerator +M:System.Collections.ObjectModel.Collection`1.IndexOf(`0) +M:System.Collections.ObjectModel.Collection`1.Insert(System.Int32,`0) +M:System.Collections.ObjectModel.Collection`1.InsertItem(System.Int32,`0) +M:System.Collections.ObjectModel.Collection`1.Remove(`0) +M:System.Collections.ObjectModel.Collection`1.RemoveAt(System.Int32) +M:System.Collections.ObjectModel.Collection`1.RemoveItem(System.Int32) +M:System.Collections.ObjectModel.Collection`1.set_Item(System.Int32,`0) +M:System.Collections.ObjectModel.Collection`1.SetItem(System.Int32,`0) +M:System.Collections.ObjectModel.ReadOnlyCollection`1.#ctor(System.Collections.Generic.IList{`0}) +M:System.Collections.ObjectModel.ReadOnlyCollection`1.Contains(`0) +M:System.Collections.ObjectModel.ReadOnlyCollection`1.CopyTo(`0[],System.Int32) +M:System.Collections.ObjectModel.ReadOnlyCollection`1.get_Count +M:System.Collections.ObjectModel.ReadOnlyCollection`1.get_Empty +M:System.Collections.ObjectModel.ReadOnlyCollection`1.get_Item(System.Int32) +M:System.Collections.ObjectModel.ReadOnlyCollection`1.get_Items +M:System.Collections.ObjectModel.ReadOnlyCollection`1.GetEnumerator +M:System.Collections.ObjectModel.ReadOnlyCollection`1.IndexOf(`0) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1}) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ContainsKey(`0) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Count +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Dictionary +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Empty +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Item(`0) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Keys +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.get_Values +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.GetEnumerator +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.Contains(`0) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.CopyTo(`0[],System.Int32) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.get_Count +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.GetEnumerator +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.TryGetValue(`0,`1@) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.CopyTo(`1[],System.Int32) +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.get_Count +M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.GetEnumerator +M:System.Comparison`1.#ctor(System.Object,System.IntPtr) +M:System.Comparison`1.BeginInvoke(`0,`0,System.AsyncCallback,System.Object) +M:System.Comparison`1.EndInvoke(System.IAsyncResult) +M:System.Comparison`1.Invoke(`0,`0) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Boolean) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Byte) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Char) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Double) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Int16) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Int32) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Int64) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Object) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.SByte) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Single) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.String) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Type,System.String) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.UInt16) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.UInt32) +M:System.ComponentModel.DefaultValueAttribute.#ctor(System.UInt64) +M:System.ComponentModel.DefaultValueAttribute.Equals(System.Object) +M:System.ComponentModel.DefaultValueAttribute.get_Value +M:System.ComponentModel.DefaultValueAttribute.GetHashCode +M:System.ComponentModel.DefaultValueAttribute.SetValue(System.Object) +M:System.ComponentModel.EditorBrowsableAttribute.#ctor +M:System.ComponentModel.EditorBrowsableAttribute.#ctor(System.ComponentModel.EditorBrowsableState) +M:System.ComponentModel.EditorBrowsableAttribute.Equals(System.Object) +M:System.ComponentModel.EditorBrowsableAttribute.get_State +M:System.ComponentModel.EditorBrowsableAttribute.GetHashCode +M:System.ContextBoundObject.#ctor +M:System.ContextMarshalException.#ctor +M:System.ContextMarshalException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ContextMarshalException.#ctor(System.String) +M:System.ContextMarshalException.#ctor(System.String,System.Exception) +M:System.ContextStaticAttribute.#ctor +M:System.Convert.ChangeType(System.Object,System.Type) +M:System.Convert.ChangeType(System.Object,System.Type,System.IFormatProvider) +M:System.Convert.ChangeType(System.Object,System.TypeCode) +M:System.Convert.ChangeType(System.Object,System.TypeCode,System.IFormatProvider) +M:System.Convert.FromBase64CharArray(System.Char[],System.Int32,System.Int32) +M:System.Convert.FromBase64String(System.String) +M:System.Convert.FromHexString(System.ReadOnlySpan{System.Char}) +M:System.Convert.FromHexString(System.String) +M:System.Convert.GetTypeCode(System.Object) +M:System.Convert.IsDBNull(System.Object) +M:System.Convert.ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) +M:System.Convert.ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Base64FormattingOptions) +M:System.Convert.ToBase64String(System.Byte[]) +M:System.Convert.ToBase64String(System.Byte[],System.Base64FormattingOptions) +M:System.Convert.ToBase64String(System.Byte[],System.Int32,System.Int32) +M:System.Convert.ToBase64String(System.Byte[],System.Int32,System.Int32,System.Base64FormattingOptions) +M:System.Convert.ToBase64String(System.ReadOnlySpan{System.Byte},System.Base64FormattingOptions) +M:System.Convert.ToBoolean(System.Boolean) +M:System.Convert.ToBoolean(System.Byte) +M:System.Convert.ToBoolean(System.Char) +M:System.Convert.ToBoolean(System.DateTime) +M:System.Convert.ToBoolean(System.Decimal) +M:System.Convert.ToBoolean(System.Double) +M:System.Convert.ToBoolean(System.Int16) +M:System.Convert.ToBoolean(System.Int32) +M:System.Convert.ToBoolean(System.Int64) +M:System.Convert.ToBoolean(System.Object) +M:System.Convert.ToBoolean(System.Object,System.IFormatProvider) +M:System.Convert.ToBoolean(System.SByte) +M:System.Convert.ToBoolean(System.Single) +M:System.Convert.ToBoolean(System.String) +M:System.Convert.ToBoolean(System.String,System.IFormatProvider) +M:System.Convert.ToBoolean(System.UInt16) +M:System.Convert.ToBoolean(System.UInt32) +M:System.Convert.ToBoolean(System.UInt64) +M:System.Convert.ToByte(System.Boolean) +M:System.Convert.ToByte(System.Byte) +M:System.Convert.ToByte(System.Char) +M:System.Convert.ToByte(System.DateTime) +M:System.Convert.ToByte(System.Decimal) +M:System.Convert.ToByte(System.Double) +M:System.Convert.ToByte(System.Int16) +M:System.Convert.ToByte(System.Int32) +M:System.Convert.ToByte(System.Int64) +M:System.Convert.ToByte(System.Object) +M:System.Convert.ToByte(System.Object,System.IFormatProvider) +M:System.Convert.ToByte(System.SByte) +M:System.Convert.ToByte(System.Single) +M:System.Convert.ToByte(System.String) +M:System.Convert.ToByte(System.String,System.IFormatProvider) +M:System.Convert.ToByte(System.String,System.Int32) +M:System.Convert.ToByte(System.UInt16) +M:System.Convert.ToByte(System.UInt32) +M:System.Convert.ToByte(System.UInt64) +M:System.Convert.ToChar(System.Boolean) +M:System.Convert.ToChar(System.Byte) +M:System.Convert.ToChar(System.Char) +M:System.Convert.ToChar(System.DateTime) +M:System.Convert.ToChar(System.Decimal) +M:System.Convert.ToChar(System.Double) +M:System.Convert.ToChar(System.Int16) +M:System.Convert.ToChar(System.Int32) +M:System.Convert.ToChar(System.Int64) +M:System.Convert.ToChar(System.Object) +M:System.Convert.ToChar(System.Object,System.IFormatProvider) +M:System.Convert.ToChar(System.SByte) +M:System.Convert.ToChar(System.Single) +M:System.Convert.ToChar(System.String) +M:System.Convert.ToChar(System.String,System.IFormatProvider) +M:System.Convert.ToChar(System.UInt16) +M:System.Convert.ToChar(System.UInt32) +M:System.Convert.ToChar(System.UInt64) +M:System.Convert.ToDateTime(System.Boolean) +M:System.Convert.ToDateTime(System.Byte) +M:System.Convert.ToDateTime(System.Char) +M:System.Convert.ToDateTime(System.DateTime) +M:System.Convert.ToDateTime(System.Decimal) +M:System.Convert.ToDateTime(System.Double) +M:System.Convert.ToDateTime(System.Int16) +M:System.Convert.ToDateTime(System.Int32) +M:System.Convert.ToDateTime(System.Int64) +M:System.Convert.ToDateTime(System.Object) +M:System.Convert.ToDateTime(System.Object,System.IFormatProvider) +M:System.Convert.ToDateTime(System.SByte) +M:System.Convert.ToDateTime(System.Single) +M:System.Convert.ToDateTime(System.String) +M:System.Convert.ToDateTime(System.String,System.IFormatProvider) +M:System.Convert.ToDateTime(System.UInt16) +M:System.Convert.ToDateTime(System.UInt32) +M:System.Convert.ToDateTime(System.UInt64) +M:System.Convert.ToDecimal(System.Boolean) +M:System.Convert.ToDecimal(System.Byte) +M:System.Convert.ToDecimal(System.Char) +M:System.Convert.ToDecimal(System.DateTime) +M:System.Convert.ToDecimal(System.Decimal) +M:System.Convert.ToDecimal(System.Double) +M:System.Convert.ToDecimal(System.Int16) +M:System.Convert.ToDecimal(System.Int32) +M:System.Convert.ToDecimal(System.Int64) +M:System.Convert.ToDecimal(System.Object) +M:System.Convert.ToDecimal(System.Object,System.IFormatProvider) +M:System.Convert.ToDecimal(System.SByte) +M:System.Convert.ToDecimal(System.Single) +M:System.Convert.ToDecimal(System.String) +M:System.Convert.ToDecimal(System.String,System.IFormatProvider) +M:System.Convert.ToDecimal(System.UInt16) +M:System.Convert.ToDecimal(System.UInt32) +M:System.Convert.ToDecimal(System.UInt64) +M:System.Convert.ToDouble(System.Boolean) +M:System.Convert.ToDouble(System.Byte) +M:System.Convert.ToDouble(System.Char) +M:System.Convert.ToDouble(System.DateTime) +M:System.Convert.ToDouble(System.Decimal) +M:System.Convert.ToDouble(System.Double) +M:System.Convert.ToDouble(System.Int16) +M:System.Convert.ToDouble(System.Int32) +M:System.Convert.ToDouble(System.Int64) +M:System.Convert.ToDouble(System.Object) +M:System.Convert.ToDouble(System.Object,System.IFormatProvider) +M:System.Convert.ToDouble(System.SByte) +M:System.Convert.ToDouble(System.Single) +M:System.Convert.ToDouble(System.String) +M:System.Convert.ToDouble(System.String,System.IFormatProvider) +M:System.Convert.ToDouble(System.UInt16) +M:System.Convert.ToDouble(System.UInt32) +M:System.Convert.ToDouble(System.UInt64) +M:System.Convert.ToHexString(System.Byte[]) +M:System.Convert.ToHexString(System.Byte[],System.Int32,System.Int32) +M:System.Convert.ToHexString(System.ReadOnlySpan{System.Byte}) +M:System.Convert.ToInt16(System.Boolean) +M:System.Convert.ToInt16(System.Byte) +M:System.Convert.ToInt16(System.Char) +M:System.Convert.ToInt16(System.DateTime) +M:System.Convert.ToInt16(System.Decimal) +M:System.Convert.ToInt16(System.Double) +M:System.Convert.ToInt16(System.Int16) +M:System.Convert.ToInt16(System.Int32) +M:System.Convert.ToInt16(System.Int64) +M:System.Convert.ToInt16(System.Object) +M:System.Convert.ToInt16(System.Object,System.IFormatProvider) +M:System.Convert.ToInt16(System.SByte) +M:System.Convert.ToInt16(System.Single) +M:System.Convert.ToInt16(System.String) +M:System.Convert.ToInt16(System.String,System.IFormatProvider) +M:System.Convert.ToInt16(System.String,System.Int32) +M:System.Convert.ToInt16(System.UInt16) +M:System.Convert.ToInt16(System.UInt32) +M:System.Convert.ToInt16(System.UInt64) +M:System.Convert.ToInt32(System.Boolean) +M:System.Convert.ToInt32(System.Byte) +M:System.Convert.ToInt32(System.Char) +M:System.Convert.ToInt32(System.DateTime) +M:System.Convert.ToInt32(System.Decimal) +M:System.Convert.ToInt32(System.Double) +M:System.Convert.ToInt32(System.Int16) +M:System.Convert.ToInt32(System.Int32) +M:System.Convert.ToInt32(System.Int64) +M:System.Convert.ToInt32(System.Object) +M:System.Convert.ToInt32(System.Object,System.IFormatProvider) +M:System.Convert.ToInt32(System.SByte) +M:System.Convert.ToInt32(System.Single) +M:System.Convert.ToInt32(System.String) +M:System.Convert.ToInt32(System.String,System.IFormatProvider) +M:System.Convert.ToInt32(System.String,System.Int32) +M:System.Convert.ToInt32(System.UInt16) +M:System.Convert.ToInt32(System.UInt32) +M:System.Convert.ToInt32(System.UInt64) +M:System.Convert.ToInt64(System.Boolean) +M:System.Convert.ToInt64(System.Byte) +M:System.Convert.ToInt64(System.Char) +M:System.Convert.ToInt64(System.DateTime) +M:System.Convert.ToInt64(System.Decimal) +M:System.Convert.ToInt64(System.Double) +M:System.Convert.ToInt64(System.Int16) +M:System.Convert.ToInt64(System.Int32) +M:System.Convert.ToInt64(System.Int64) +M:System.Convert.ToInt64(System.Object) +M:System.Convert.ToInt64(System.Object,System.IFormatProvider) +M:System.Convert.ToInt64(System.SByte) +M:System.Convert.ToInt64(System.Single) +M:System.Convert.ToInt64(System.String) +M:System.Convert.ToInt64(System.String,System.IFormatProvider) +M:System.Convert.ToInt64(System.String,System.Int32) +M:System.Convert.ToInt64(System.UInt16) +M:System.Convert.ToInt64(System.UInt32) +M:System.Convert.ToInt64(System.UInt64) +M:System.Convert.ToSByte(System.Boolean) +M:System.Convert.ToSByte(System.Byte) +M:System.Convert.ToSByte(System.Char) +M:System.Convert.ToSByte(System.DateTime) +M:System.Convert.ToSByte(System.Decimal) +M:System.Convert.ToSByte(System.Double) +M:System.Convert.ToSByte(System.Int16) +M:System.Convert.ToSByte(System.Int32) +M:System.Convert.ToSByte(System.Int64) +M:System.Convert.ToSByte(System.Object) +M:System.Convert.ToSByte(System.Object,System.IFormatProvider) +M:System.Convert.ToSByte(System.SByte) +M:System.Convert.ToSByte(System.Single) +M:System.Convert.ToSByte(System.String) +M:System.Convert.ToSByte(System.String,System.IFormatProvider) +M:System.Convert.ToSByte(System.String,System.Int32) +M:System.Convert.ToSByte(System.UInt16) +M:System.Convert.ToSByte(System.UInt32) +M:System.Convert.ToSByte(System.UInt64) +M:System.Convert.ToSingle(System.Boolean) +M:System.Convert.ToSingle(System.Byte) +M:System.Convert.ToSingle(System.Char) +M:System.Convert.ToSingle(System.DateTime) +M:System.Convert.ToSingle(System.Decimal) +M:System.Convert.ToSingle(System.Double) +M:System.Convert.ToSingle(System.Int16) +M:System.Convert.ToSingle(System.Int32) +M:System.Convert.ToSingle(System.Int64) +M:System.Convert.ToSingle(System.Object) +M:System.Convert.ToSingle(System.Object,System.IFormatProvider) +M:System.Convert.ToSingle(System.SByte) +M:System.Convert.ToSingle(System.Single) +M:System.Convert.ToSingle(System.String) +M:System.Convert.ToSingle(System.String,System.IFormatProvider) +M:System.Convert.ToSingle(System.UInt16) +M:System.Convert.ToSingle(System.UInt32) +M:System.Convert.ToSingle(System.UInt64) +M:System.Convert.ToString(System.Boolean) +M:System.Convert.ToString(System.Boolean,System.IFormatProvider) +M:System.Convert.ToString(System.Byte) +M:System.Convert.ToString(System.Byte,System.IFormatProvider) +M:System.Convert.ToString(System.Byte,System.Int32) +M:System.Convert.ToString(System.Char) +M:System.Convert.ToString(System.Char,System.IFormatProvider) +M:System.Convert.ToString(System.DateTime) +M:System.Convert.ToString(System.DateTime,System.IFormatProvider) +M:System.Convert.ToString(System.Decimal) +M:System.Convert.ToString(System.Decimal,System.IFormatProvider) +M:System.Convert.ToString(System.Double) +M:System.Convert.ToString(System.Double,System.IFormatProvider) +M:System.Convert.ToString(System.Int16) +M:System.Convert.ToString(System.Int16,System.IFormatProvider) +M:System.Convert.ToString(System.Int16,System.Int32) +M:System.Convert.ToString(System.Int32) +M:System.Convert.ToString(System.Int32,System.IFormatProvider) +M:System.Convert.ToString(System.Int32,System.Int32) +M:System.Convert.ToString(System.Int64) +M:System.Convert.ToString(System.Int64,System.IFormatProvider) +M:System.Convert.ToString(System.Int64,System.Int32) +M:System.Convert.ToString(System.Object) +M:System.Convert.ToString(System.Object,System.IFormatProvider) +M:System.Convert.ToString(System.SByte) +M:System.Convert.ToString(System.SByte,System.IFormatProvider) +M:System.Convert.ToString(System.Single) +M:System.Convert.ToString(System.Single,System.IFormatProvider) +M:System.Convert.ToString(System.String) +M:System.Convert.ToString(System.String,System.IFormatProvider) +M:System.Convert.ToString(System.UInt16) +M:System.Convert.ToString(System.UInt16,System.IFormatProvider) +M:System.Convert.ToString(System.UInt32) +M:System.Convert.ToString(System.UInt32,System.IFormatProvider) +M:System.Convert.ToString(System.UInt64) +M:System.Convert.ToString(System.UInt64,System.IFormatProvider) +M:System.Convert.ToUInt16(System.Boolean) +M:System.Convert.ToUInt16(System.Byte) +M:System.Convert.ToUInt16(System.Char) +M:System.Convert.ToUInt16(System.DateTime) +M:System.Convert.ToUInt16(System.Decimal) +M:System.Convert.ToUInt16(System.Double) +M:System.Convert.ToUInt16(System.Int16) +M:System.Convert.ToUInt16(System.Int32) +M:System.Convert.ToUInt16(System.Int64) +M:System.Convert.ToUInt16(System.Object) +M:System.Convert.ToUInt16(System.Object,System.IFormatProvider) +M:System.Convert.ToUInt16(System.SByte) +M:System.Convert.ToUInt16(System.Single) +M:System.Convert.ToUInt16(System.String) +M:System.Convert.ToUInt16(System.String,System.IFormatProvider) +M:System.Convert.ToUInt16(System.String,System.Int32) +M:System.Convert.ToUInt16(System.UInt16) +M:System.Convert.ToUInt16(System.UInt32) +M:System.Convert.ToUInt16(System.UInt64) +M:System.Convert.ToUInt32(System.Boolean) +M:System.Convert.ToUInt32(System.Byte) +M:System.Convert.ToUInt32(System.Char) +M:System.Convert.ToUInt32(System.DateTime) +M:System.Convert.ToUInt32(System.Decimal) +M:System.Convert.ToUInt32(System.Double) +M:System.Convert.ToUInt32(System.Int16) +M:System.Convert.ToUInt32(System.Int32) +M:System.Convert.ToUInt32(System.Int64) +M:System.Convert.ToUInt32(System.Object) +M:System.Convert.ToUInt32(System.Object,System.IFormatProvider) +M:System.Convert.ToUInt32(System.SByte) +M:System.Convert.ToUInt32(System.Single) +M:System.Convert.ToUInt32(System.String) +M:System.Convert.ToUInt32(System.String,System.IFormatProvider) +M:System.Convert.ToUInt32(System.String,System.Int32) +M:System.Convert.ToUInt32(System.UInt16) +M:System.Convert.ToUInt32(System.UInt32) +M:System.Convert.ToUInt32(System.UInt64) +M:System.Convert.ToUInt64(System.Boolean) +M:System.Convert.ToUInt64(System.Byte) +M:System.Convert.ToUInt64(System.Char) +M:System.Convert.ToUInt64(System.DateTime) +M:System.Convert.ToUInt64(System.Decimal) +M:System.Convert.ToUInt64(System.Double) +M:System.Convert.ToUInt64(System.Int16) +M:System.Convert.ToUInt64(System.Int32) +M:System.Convert.ToUInt64(System.Int64) +M:System.Convert.ToUInt64(System.Object) +M:System.Convert.ToUInt64(System.Object,System.IFormatProvider) +M:System.Convert.ToUInt64(System.SByte) +M:System.Convert.ToUInt64(System.Single) +M:System.Convert.ToUInt64(System.String) +M:System.Convert.ToUInt64(System.String,System.IFormatProvider) +M:System.Convert.ToUInt64(System.String,System.Int32) +M:System.Convert.ToUInt64(System.UInt16) +M:System.Convert.ToUInt64(System.UInt32) +M:System.Convert.ToUInt64(System.UInt64) +M:System.Convert.TryFromBase64Chars(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@) +M:System.Convert.TryFromBase64String(System.String,System.Span{System.Byte},System.Int32@) +M:System.Convert.TryToBase64Chars(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@,System.Base64FormattingOptions) +M:System.Converter`2.#ctor(System.Object,System.IntPtr) +M:System.Converter`2.BeginInvoke(`0,System.AsyncCallback,System.Object) +M:System.Converter`2.EndInvoke(System.IAsyncResult) +M:System.Converter`2.Invoke(`0) +M:System.DateOnly.#ctor(System.Int32,System.Int32,System.Int32) +M:System.DateOnly.#ctor(System.Int32,System.Int32,System.Int32,System.Globalization.Calendar) +M:System.DateOnly.AddDays(System.Int32) +M:System.DateOnly.AddMonths(System.Int32) +M:System.DateOnly.AddYears(System.Int32) +M:System.DateOnly.CompareTo(System.DateOnly) +M:System.DateOnly.CompareTo(System.Object) +M:System.DateOnly.Deconstruct(System.Int32@,System.Int32@,System.Int32@) +M:System.DateOnly.Equals(System.DateOnly) +M:System.DateOnly.Equals(System.Object) +M:System.DateOnly.FromDateTime(System.DateTime) +M:System.DateOnly.FromDayNumber(System.Int32) +M:System.DateOnly.get_Day +M:System.DateOnly.get_DayNumber +M:System.DateOnly.get_DayOfWeek +M:System.DateOnly.get_DayOfYear +M:System.DateOnly.get_MaxValue +M:System.DateOnly.get_MinValue +M:System.DateOnly.get_Month +M:System.DateOnly.get_Year +M:System.DateOnly.GetHashCode +M:System.DateOnly.op_Equality(System.DateOnly,System.DateOnly) +M:System.DateOnly.op_GreaterThan(System.DateOnly,System.DateOnly) +M:System.DateOnly.op_GreaterThanOrEqual(System.DateOnly,System.DateOnly) +M:System.DateOnly.op_Inequality(System.DateOnly,System.DateOnly) +M:System.DateOnly.op_LessThan(System.DateOnly,System.DateOnly) +M:System.DateOnly.op_LessThanOrEqual(System.DateOnly,System.DateOnly) +M:System.DateOnly.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateOnly.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.Parse(System.String) +M:System.DateOnly.Parse(System.String,System.IFormatProvider) +M:System.DateOnly.Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.ParseExact(System.ReadOnlySpan{System.Char},System.String[]) +M:System.DateOnly.ParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.ParseExact(System.String,System.String) +M:System.DateOnly.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.ParseExact(System.String,System.String[]) +M:System.DateOnly.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateOnly.ToDateTime(System.TimeOnly) +M:System.DateOnly.ToDateTime(System.TimeOnly,System.DateTimeKind) +M:System.DateOnly.ToLongDateString +M:System.DateOnly.ToShortDateString +M:System.DateOnly.ToString +M:System.DateOnly.ToString(System.IFormatProvider) +M:System.DateOnly.ToString(System.String) +M:System.DateOnly.ToString(System.String,System.IFormatProvider) +M:System.DateOnly.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateOnly.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateOnly.TryParse(System.ReadOnlySpan{System.Char},System.DateOnly@) +M:System.DateOnly.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.DateOnly@) +M:System.DateOnly.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.TryParse(System.String,System.DateOnly@) +M:System.DateOnly.TryParse(System.String,System.IFormatProvider,System.DateOnly@) +M:System.DateOnly.TryParse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.DateOnly@) +M:System.DateOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.DateOnly@) +M:System.DateOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.TryParseExact(System.String,System.String,System.DateOnly@) +M:System.DateOnly.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateOnly.TryParseExact(System.String,System.String[],System.DateOnly@) +M:System.DateOnly.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateOnly@) +M:System.DateTime.#ctor(System.DateOnly,System.TimeOnly) +M:System.DateTime.#ctor(System.DateOnly,System.TimeOnly,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Globalization.Calendar) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar) +M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar,System.DateTimeKind) +M:System.DateTime.#ctor(System.Int64) +M:System.DateTime.#ctor(System.Int64,System.DateTimeKind) +M:System.DateTime.Add(System.TimeSpan) +M:System.DateTime.AddDays(System.Double) +M:System.DateTime.AddHours(System.Double) +M:System.DateTime.AddMicroseconds(System.Double) +M:System.DateTime.AddMilliseconds(System.Double) +M:System.DateTime.AddMinutes(System.Double) +M:System.DateTime.AddMonths(System.Int32) +M:System.DateTime.AddSeconds(System.Double) +M:System.DateTime.AddTicks(System.Int64) +M:System.DateTime.AddYears(System.Int32) +M:System.DateTime.Compare(System.DateTime,System.DateTime) +M:System.DateTime.CompareTo(System.DateTime) +M:System.DateTime.CompareTo(System.Object) +M:System.DateTime.DaysInMonth(System.Int32,System.Int32) +M:System.DateTime.Deconstruct(System.DateOnly@,System.TimeOnly@) +M:System.DateTime.Deconstruct(System.Int32@,System.Int32@,System.Int32@) +M:System.DateTime.Equals(System.DateTime) +M:System.DateTime.Equals(System.DateTime,System.DateTime) +M:System.DateTime.Equals(System.Object) +M:System.DateTime.FromBinary(System.Int64) +M:System.DateTime.FromFileTime(System.Int64) +M:System.DateTime.FromFileTimeUtc(System.Int64) +M:System.DateTime.FromOADate(System.Double) +M:System.DateTime.get_Date +M:System.DateTime.get_Day +M:System.DateTime.get_DayOfWeek +M:System.DateTime.get_DayOfYear +M:System.DateTime.get_Hour +M:System.DateTime.get_Kind +M:System.DateTime.get_Microsecond +M:System.DateTime.get_Millisecond +M:System.DateTime.get_Minute +M:System.DateTime.get_Month +M:System.DateTime.get_Nanosecond +M:System.DateTime.get_Now +M:System.DateTime.get_Second +M:System.DateTime.get_Ticks +M:System.DateTime.get_TimeOfDay +M:System.DateTime.get_Today +M:System.DateTime.get_UtcNow +M:System.DateTime.get_Year +M:System.DateTime.GetDateTimeFormats +M:System.DateTime.GetDateTimeFormats(System.Char) +M:System.DateTime.GetDateTimeFormats(System.Char,System.IFormatProvider) +M:System.DateTime.GetDateTimeFormats(System.IFormatProvider) +M:System.DateTime.GetHashCode +M:System.DateTime.GetTypeCode +M:System.DateTime.IsDaylightSavingTime +M:System.DateTime.IsLeapYear(System.Int32) +M:System.DateTime.op_Addition(System.DateTime,System.TimeSpan) +M:System.DateTime.op_Equality(System.DateTime,System.DateTime) +M:System.DateTime.op_GreaterThan(System.DateTime,System.DateTime) +M:System.DateTime.op_GreaterThanOrEqual(System.DateTime,System.DateTime) +M:System.DateTime.op_Inequality(System.DateTime,System.DateTime) +M:System.DateTime.op_LessThan(System.DateTime,System.DateTime) +M:System.DateTime.op_LessThanOrEqual(System.DateTime,System.DateTime) +M:System.DateTime.op_Subtraction(System.DateTime,System.DateTime) +M:System.DateTime.op_Subtraction(System.DateTime,System.TimeSpan) +M:System.DateTime.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTime.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.Parse(System.String) +M:System.DateTime.Parse(System.String,System.IFormatProvider) +M:System.DateTime.Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.ParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.ParseExact(System.String,System.String,System.IFormatProvider) +M:System.DateTime.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTime.SpecifyKind(System.DateTime,System.DateTimeKind) +M:System.DateTime.Subtract(System.DateTime) +M:System.DateTime.Subtract(System.TimeSpan) +M:System.DateTime.ToBinary +M:System.DateTime.ToFileTime +M:System.DateTime.ToFileTimeUtc +M:System.DateTime.ToLocalTime +M:System.DateTime.ToLongDateString +M:System.DateTime.ToLongTimeString +M:System.DateTime.ToOADate +M:System.DateTime.ToShortDateString +M:System.DateTime.ToShortTimeString +M:System.DateTime.ToString +M:System.DateTime.ToString(System.IFormatProvider) +M:System.DateTime.ToString(System.String) +M:System.DateTime.ToString(System.String,System.IFormatProvider) +M:System.DateTime.ToUniversalTime +M:System.DateTime.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTime.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTime.TryParse(System.ReadOnlySpan{System.Char},System.DateTime@) +M:System.DateTime.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.DateTime@) +M:System.DateTime.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTime.TryParse(System.String,System.DateTime@) +M:System.DateTime.TryParse(System.String,System.IFormatProvider,System.DateTime@) +M:System.DateTime.TryParse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTime.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTime.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTime.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTime.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime@) +M:System.DateTimeOffset.#ctor(System.DateOnly,System.TimeOnly,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.DateTime) +M:System.DateTimeOffset.#ctor(System.DateTime,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.TimeSpan) +M:System.DateTimeOffset.#ctor(System.Int64,System.TimeSpan) +M:System.DateTimeOffset.Add(System.TimeSpan) +M:System.DateTimeOffset.AddDays(System.Double) +M:System.DateTimeOffset.AddHours(System.Double) +M:System.DateTimeOffset.AddMicroseconds(System.Double) +M:System.DateTimeOffset.AddMilliseconds(System.Double) +M:System.DateTimeOffset.AddMinutes(System.Double) +M:System.DateTimeOffset.AddMonths(System.Int32) +M:System.DateTimeOffset.AddSeconds(System.Double) +M:System.DateTimeOffset.AddTicks(System.Int64) +M:System.DateTimeOffset.AddYears(System.Int32) +M:System.DateTimeOffset.Compare(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.CompareTo(System.DateTimeOffset) +M:System.DateTimeOffset.Deconstruct(System.DateOnly@,System.TimeOnly@,System.TimeSpan@) +M:System.DateTimeOffset.Equals(System.DateTimeOffset) +M:System.DateTimeOffset.Equals(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.Equals(System.Object) +M:System.DateTimeOffset.EqualsExact(System.DateTimeOffset) +M:System.DateTimeOffset.FromFileTime(System.Int64) +M:System.DateTimeOffset.FromUnixTimeMilliseconds(System.Int64) +M:System.DateTimeOffset.FromUnixTimeSeconds(System.Int64) +M:System.DateTimeOffset.get_Date +M:System.DateTimeOffset.get_DateTime +M:System.DateTimeOffset.get_Day +M:System.DateTimeOffset.get_DayOfWeek +M:System.DateTimeOffset.get_DayOfYear +M:System.DateTimeOffset.get_Hour +M:System.DateTimeOffset.get_LocalDateTime +M:System.DateTimeOffset.get_Microsecond +M:System.DateTimeOffset.get_Millisecond +M:System.DateTimeOffset.get_Minute +M:System.DateTimeOffset.get_Month +M:System.DateTimeOffset.get_Nanosecond +M:System.DateTimeOffset.get_Now +M:System.DateTimeOffset.get_Offset +M:System.DateTimeOffset.get_Second +M:System.DateTimeOffset.get_Ticks +M:System.DateTimeOffset.get_TimeOfDay +M:System.DateTimeOffset.get_TotalOffsetMinutes +M:System.DateTimeOffset.get_UtcDateTime +M:System.DateTimeOffset.get_UtcNow +M:System.DateTimeOffset.get_UtcTicks +M:System.DateTimeOffset.get_Year +M:System.DateTimeOffset.GetHashCode +M:System.DateTimeOffset.op_Addition(System.DateTimeOffset,System.TimeSpan) +M:System.DateTimeOffset.op_Equality(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_GreaterThan(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_GreaterThanOrEqual(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_Implicit(System.DateTime)~System.DateTimeOffset +M:System.DateTimeOffset.op_Inequality(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_LessThan(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_LessThanOrEqual(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_Subtraction(System.DateTimeOffset,System.DateTimeOffset) +M:System.DateTimeOffset.op_Subtraction(System.DateTimeOffset,System.TimeSpan) +M:System.DateTimeOffset.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTimeOffset.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.Parse(System.String) +M:System.DateTimeOffset.Parse(System.String,System.IFormatProvider) +M:System.DateTimeOffset.Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.ParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.ParseExact(System.String,System.String,System.IFormatProvider) +M:System.DateTimeOffset.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.DateTimeOffset.Subtract(System.DateTimeOffset) +M:System.DateTimeOffset.Subtract(System.TimeSpan) +M:System.DateTimeOffset.ToFileTime +M:System.DateTimeOffset.ToLocalTime +M:System.DateTimeOffset.ToOffset(System.TimeSpan) +M:System.DateTimeOffset.ToString +M:System.DateTimeOffset.ToString(System.IFormatProvider) +M:System.DateTimeOffset.ToString(System.String) +M:System.DateTimeOffset.ToString(System.String,System.IFormatProvider) +M:System.DateTimeOffset.ToUniversalTime +M:System.DateTimeOffset.ToUnixTimeMilliseconds +M:System.DateTimeOffset.ToUnixTimeSeconds +M:System.DateTimeOffset.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTimeOffset.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.DateTimeOffset.TryParse(System.ReadOnlySpan{System.Char},System.DateTimeOffset@) +M:System.DateTimeOffset.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParse(System.String,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParse(System.String,System.IFormatProvider,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DateTimeOffset.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset@) +M:System.DBNull.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.DBNull.GetTypeCode +M:System.DBNull.ToString +M:System.DBNull.ToString(System.IFormatProvider) +M:System.Decimal.#ctor(System.Double) +M:System.Decimal.#ctor(System.Int32) +M:System.Decimal.#ctor(System.Int32,System.Int32,System.Int32,System.Boolean,System.Byte) +M:System.Decimal.#ctor(System.Int32[]) +M:System.Decimal.#ctor(System.Int64) +M:System.Decimal.#ctor(System.ReadOnlySpan{System.Int32}) +M:System.Decimal.#ctor(System.Single) +M:System.Decimal.#ctor(System.UInt32) +M:System.Decimal.#ctor(System.UInt64) +M:System.Decimal.Abs(System.Decimal) +M:System.Decimal.Add(System.Decimal,System.Decimal) +M:System.Decimal.Ceiling(System.Decimal) +M:System.Decimal.Clamp(System.Decimal,System.Decimal,System.Decimal) +M:System.Decimal.Compare(System.Decimal,System.Decimal) +M:System.Decimal.CompareTo(System.Decimal) +M:System.Decimal.CompareTo(System.Object) +M:System.Decimal.CopySign(System.Decimal,System.Decimal) +M:System.Decimal.CreateChecked``1(``0) +M:System.Decimal.CreateSaturating``1(``0) +M:System.Decimal.CreateTruncating``1(``0) +M:System.Decimal.Divide(System.Decimal,System.Decimal) +M:System.Decimal.Equals(System.Decimal) +M:System.Decimal.Equals(System.Decimal,System.Decimal) +M:System.Decimal.Equals(System.Object) +M:System.Decimal.Floor(System.Decimal) +M:System.Decimal.FromOACurrency(System.Int64) +M:System.Decimal.get_Scale +M:System.Decimal.GetBits(System.Decimal) +M:System.Decimal.GetBits(System.Decimal,System.Span{System.Int32}) +M:System.Decimal.GetHashCode +M:System.Decimal.GetTypeCode +M:System.Decimal.IsCanonical(System.Decimal) +M:System.Decimal.IsEvenInteger(System.Decimal) +M:System.Decimal.IsInteger(System.Decimal) +M:System.Decimal.IsNegative(System.Decimal) +M:System.Decimal.IsOddInteger(System.Decimal) +M:System.Decimal.IsPositive(System.Decimal) +M:System.Decimal.Max(System.Decimal,System.Decimal) +M:System.Decimal.MaxMagnitude(System.Decimal,System.Decimal) +M:System.Decimal.Min(System.Decimal,System.Decimal) +M:System.Decimal.MinMagnitude(System.Decimal,System.Decimal) +M:System.Decimal.Multiply(System.Decimal,System.Decimal) +M:System.Decimal.Negate(System.Decimal) +M:System.Decimal.op_Addition(System.Decimal,System.Decimal) +M:System.Decimal.op_Decrement(System.Decimal) +M:System.Decimal.op_Division(System.Decimal,System.Decimal) +M:System.Decimal.op_Equality(System.Decimal,System.Decimal) +M:System.Decimal.op_Explicit(System.Decimal)~System.Byte +M:System.Decimal.op_Explicit(System.Decimal)~System.Char +M:System.Decimal.op_Explicit(System.Decimal)~System.Double +M:System.Decimal.op_Explicit(System.Decimal)~System.Int16 +M:System.Decimal.op_Explicit(System.Decimal)~System.Int32 +M:System.Decimal.op_Explicit(System.Decimal)~System.Int64 +M:System.Decimal.op_Explicit(System.Decimal)~System.SByte +M:System.Decimal.op_Explicit(System.Decimal)~System.Single +M:System.Decimal.op_Explicit(System.Decimal)~System.UInt16 +M:System.Decimal.op_Explicit(System.Decimal)~System.UInt32 +M:System.Decimal.op_Explicit(System.Decimal)~System.UInt64 +M:System.Decimal.op_Explicit(System.Double)~System.Decimal +M:System.Decimal.op_Explicit(System.Single)~System.Decimal +M:System.Decimal.op_GreaterThan(System.Decimal,System.Decimal) +M:System.Decimal.op_GreaterThanOrEqual(System.Decimal,System.Decimal) +M:System.Decimal.op_Implicit(System.Byte)~System.Decimal +M:System.Decimal.op_Implicit(System.Char)~System.Decimal +M:System.Decimal.op_Implicit(System.Int16)~System.Decimal +M:System.Decimal.op_Implicit(System.Int32)~System.Decimal +M:System.Decimal.op_Implicit(System.Int64)~System.Decimal +M:System.Decimal.op_Implicit(System.SByte)~System.Decimal +M:System.Decimal.op_Implicit(System.UInt16)~System.Decimal +M:System.Decimal.op_Implicit(System.UInt32)~System.Decimal +M:System.Decimal.op_Implicit(System.UInt64)~System.Decimal +M:System.Decimal.op_Increment(System.Decimal) +M:System.Decimal.op_Inequality(System.Decimal,System.Decimal) +M:System.Decimal.op_LessThan(System.Decimal,System.Decimal) +M:System.Decimal.op_LessThanOrEqual(System.Decimal,System.Decimal) +M:System.Decimal.op_Modulus(System.Decimal,System.Decimal) +M:System.Decimal.op_Multiply(System.Decimal,System.Decimal) +M:System.Decimal.op_Subtraction(System.Decimal,System.Decimal) +M:System.Decimal.op_UnaryNegation(System.Decimal) +M:System.Decimal.op_UnaryPlus(System.Decimal) +M:System.Decimal.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Decimal.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Decimal.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Decimal.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Decimal.Parse(System.String) +M:System.Decimal.Parse(System.String,System.Globalization.NumberStyles) +M:System.Decimal.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Decimal.Parse(System.String,System.IFormatProvider) +M:System.Decimal.Remainder(System.Decimal,System.Decimal) +M:System.Decimal.Round(System.Decimal) +M:System.Decimal.Round(System.Decimal,System.Int32) +M:System.Decimal.Round(System.Decimal,System.Int32,System.MidpointRounding) +M:System.Decimal.Round(System.Decimal,System.MidpointRounding) +M:System.Decimal.Sign(System.Decimal) +M:System.Decimal.Subtract(System.Decimal,System.Decimal) +M:System.Decimal.ToByte(System.Decimal) +M:System.Decimal.ToDouble(System.Decimal) +M:System.Decimal.ToInt16(System.Decimal) +M:System.Decimal.ToInt32(System.Decimal) +M:System.Decimal.ToInt64(System.Decimal) +M:System.Decimal.ToOACurrency(System.Decimal) +M:System.Decimal.ToSByte(System.Decimal) +M:System.Decimal.ToSingle(System.Decimal) +M:System.Decimal.ToString +M:System.Decimal.ToString(System.IFormatProvider) +M:System.Decimal.ToString(System.String) +M:System.Decimal.ToString(System.String,System.IFormatProvider) +M:System.Decimal.ToUInt16(System.Decimal) +M:System.Decimal.ToUInt32(System.Decimal) +M:System.Decimal.ToUInt64(System.Decimal) +M:System.Decimal.Truncate(System.Decimal) +M:System.Decimal.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Decimal.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Decimal.TryGetBits(System.Decimal,System.Span{System.Int32},System.Int32@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Byte},System.Decimal@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Decimal@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Decimal@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Char},System.Decimal@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Decimal@) +M:System.Decimal.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Decimal@) +M:System.Decimal.TryParse(System.String,System.Decimal@) +M:System.Decimal.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Decimal@) +M:System.Decimal.TryParse(System.String,System.IFormatProvider,System.Decimal@) +M:System.Delegate.#ctor(System.Object,System.String) +M:System.Delegate.#ctor(System.Type,System.String) +M:System.Delegate.Clone +M:System.Delegate.Combine(System.Delegate,System.Delegate) +M:System.Delegate.Combine(System.Delegate[]) +M:System.Delegate.CombineImpl(System.Delegate) +M:System.Delegate.CreateDelegate(System.Type,System.Object,System.Reflection.MethodInfo) +M:System.Delegate.CreateDelegate(System.Type,System.Object,System.Reflection.MethodInfo,System.Boolean) +M:System.Delegate.CreateDelegate(System.Type,System.Object,System.String) +M:System.Delegate.CreateDelegate(System.Type,System.Object,System.String,System.Boolean) +M:System.Delegate.CreateDelegate(System.Type,System.Object,System.String,System.Boolean,System.Boolean) +M:System.Delegate.CreateDelegate(System.Type,System.Reflection.MethodInfo) +M:System.Delegate.CreateDelegate(System.Type,System.Reflection.MethodInfo,System.Boolean) +M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String) +M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean) +M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean,System.Boolean) +M:System.Delegate.DynamicInvoke(System.Object[]) +M:System.Delegate.DynamicInvokeImpl(System.Object[]) +M:System.Delegate.Equals(System.Object) +M:System.Delegate.get_Method +M:System.Delegate.get_Target +M:System.Delegate.GetHashCode +M:System.Delegate.GetInvocationList +M:System.Delegate.GetMethodImpl +M:System.Delegate.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Delegate.op_Equality(System.Delegate,System.Delegate) +M:System.Delegate.op_Inequality(System.Delegate,System.Delegate) +M:System.Delegate.Remove(System.Delegate,System.Delegate) +M:System.Delegate.RemoveAll(System.Delegate,System.Delegate) +M:System.Delegate.RemoveImpl(System.Delegate) +M:System.Diagnostics.CodeAnalysis.AllowNullAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.get_Max +M:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.get_Min +M:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +M:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) +M:System.Diagnostics.CodeAnalysis.DisallowNullAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean) +M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.get_ParameterValue +M:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.#ctor(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes) +M:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.get_MemberTypes +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.#ctor(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes,System.String,System.String) +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.#ctor(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes,System.Type) +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.#ctor(System.String,System.String,System.String) +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.#ctor(System.String,System.Type) +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_AssemblyName +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_Condition +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_MemberSignature +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_MemberTypes +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_Type +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.get_TypeName +M:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.set_Condition(System.String) +M:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute.get_Justification +M:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute.set_Justification(System.String) +M:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.get_DiagnosticId +M:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.get_UrlFormat +M:System.Diagnostics.CodeAnalysis.ExperimentalAttribute.set_UrlFormat(System.String) +M:System.Diagnostics.CodeAnalysis.MaybeNullAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean) +M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.get_ReturnValue +M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[]) +M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.get_Members +M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String) +M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[]) +M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.get_Members +M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.get_ReturnValue +M:System.Diagnostics.CodeAnalysis.NotNullAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.get_ParameterName +M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean) +M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.get_ReturnValue +M:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.get_Message +M:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.get_Url +M:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.set_Url(System.String) +M:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.get_Message +M:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.get_Url +M:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.set_Url(System.String) +M:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.get_Message +M:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.get_Url +M:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.set_Url(System.String) +M:System.Diagnostics.CodeAnalysis.SetsRequiredMembersAttribute.#ctor +M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.#ctor(System.String) +M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.#ctor(System.String,System.Object[]) +M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.get_Arguments +M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.get_Syntax +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.#ctor(System.String,System.String) +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_Category +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_CheckId +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_Justification +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_MessageId +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_Scope +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.get_Target +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.set_Justification(System.String) +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.set_MessageId(System.String) +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.set_Scope(System.String) +M:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute.set_Target(System.String) +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.#ctor(System.String,System.String) +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_Category +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_CheckId +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_Justification +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_MessageId +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_Scope +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.get_Target +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.set_Justification(System.String) +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.set_MessageId(System.String) +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.set_Scope(System.String) +M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.set_Target(System.String) +M:System.Diagnostics.CodeAnalysis.UnscopedRefAttribute.#ctor +M:System.Diagnostics.ConditionalAttribute.#ctor(System.String) +M:System.Diagnostics.ConditionalAttribute.get_ConditionString +M:System.Diagnostics.Debug.Assert(System.Boolean) +M:System.Diagnostics.Debug.Assert(System.Boolean,System.Diagnostics.Debug.AssertInterpolatedStringHandler@) +M:System.Diagnostics.Debug.Assert(System.Boolean,System.Diagnostics.Debug.AssertInterpolatedStringHandler@,System.Diagnostics.Debug.AssertInterpolatedStringHandler@) +M:System.Diagnostics.Debug.Assert(System.Boolean,System.String) +M:System.Diagnostics.Debug.Assert(System.Boolean,System.String,System.String) +M:System.Diagnostics.Debug.Assert(System.Boolean,System.String,System.String,System.Object[]) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,System.Boolean@) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.AppendFormatted(System.Object,System.Int32,System.String) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char}) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char},System.Int32,System.String) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.AppendFormatted(System.String) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.AppendFormatted(System.String,System.Int32,System.String) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.AppendFormatted``1(``0) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32,System.String) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.AppendFormatted``1(``0,System.String) +M:System.Diagnostics.Debug.AssertInterpolatedStringHandler.AppendLiteral(System.String) +M:System.Diagnostics.Debug.Close +M:System.Diagnostics.Debug.Fail(System.String) +M:System.Diagnostics.Debug.Fail(System.String,System.String) +M:System.Diagnostics.Debug.Flush +M:System.Diagnostics.Debug.get_AutoFlush +M:System.Diagnostics.Debug.get_IndentLevel +M:System.Diagnostics.Debug.get_IndentSize +M:System.Diagnostics.Debug.Indent +M:System.Diagnostics.Debug.Print(System.String) +M:System.Diagnostics.Debug.Print(System.String,System.Object[]) +M:System.Diagnostics.Debug.set_AutoFlush(System.Boolean) +M:System.Diagnostics.Debug.set_IndentLevel(System.Int32) +M:System.Diagnostics.Debug.set_IndentSize(System.Int32) +M:System.Diagnostics.Debug.Unindent +M:System.Diagnostics.Debug.Write(System.Object) +M:System.Diagnostics.Debug.Write(System.Object,System.String) +M:System.Diagnostics.Debug.Write(System.String) +M:System.Diagnostics.Debug.Write(System.String,System.String) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Diagnostics.Debug.WriteIfInterpolatedStringHandler@) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Diagnostics.Debug.WriteIfInterpolatedStringHandler@,System.String) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Object) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Object,System.String) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.String) +M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.String,System.String) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,System.Boolean@) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.AppendFormatted(System.Object,System.Int32,System.String) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char}) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char},System.Int32,System.String) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.AppendFormatted(System.String) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.AppendFormatted(System.String,System.Int32,System.String) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.AppendFormatted``1(``0) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32,System.String) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.AppendFormatted``1(``0,System.String) +M:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler.AppendLiteral(System.String) +M:System.Diagnostics.Debug.WriteLine(System.Object) +M:System.Diagnostics.Debug.WriteLine(System.Object,System.String) +M:System.Diagnostics.Debug.WriteLine(System.String) +M:System.Diagnostics.Debug.WriteLine(System.String,System.Object[]) +M:System.Diagnostics.Debug.WriteLine(System.String,System.String) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Diagnostics.Debug.WriteIfInterpolatedStringHandler@) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Diagnostics.Debug.WriteIfInterpolatedStringHandler@,System.String) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Object) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Object,System.String) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.String) +M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.String,System.String) +M:System.Diagnostics.DebuggableAttribute.#ctor(System.Boolean,System.Boolean) +M:System.Diagnostics.DebuggableAttribute.#ctor(System.Diagnostics.DebuggableAttribute.DebuggingModes) +M:System.Diagnostics.DebuggableAttribute.get_DebuggingFlags +M:System.Diagnostics.DebuggableAttribute.get_IsJITOptimizerDisabled +M:System.Diagnostics.DebuggableAttribute.get_IsJITTrackingEnabled +M:System.Diagnostics.DebuggerBrowsableAttribute.#ctor(System.Diagnostics.DebuggerBrowsableState) +M:System.Diagnostics.DebuggerBrowsableAttribute.get_State +M:System.Diagnostics.DebuggerDisplayAttribute.#ctor(System.String) +M:System.Diagnostics.DebuggerDisplayAttribute.get_Name +M:System.Diagnostics.DebuggerDisplayAttribute.get_Target +M:System.Diagnostics.DebuggerDisplayAttribute.get_TargetTypeName +M:System.Diagnostics.DebuggerDisplayAttribute.get_Type +M:System.Diagnostics.DebuggerDisplayAttribute.get_Value +M:System.Diagnostics.DebuggerDisplayAttribute.set_Name(System.String) +M:System.Diagnostics.DebuggerDisplayAttribute.set_Target(System.Type) +M:System.Diagnostics.DebuggerDisplayAttribute.set_TargetTypeName(System.String) +M:System.Diagnostics.DebuggerDisplayAttribute.set_Type(System.String) +M:System.Diagnostics.DebuggerHiddenAttribute.#ctor +M:System.Diagnostics.DebuggerNonUserCodeAttribute.#ctor +M:System.Diagnostics.DebuggerStepperBoundaryAttribute.#ctor +M:System.Diagnostics.DebuggerStepThroughAttribute.#ctor +M:System.Diagnostics.DebuggerTypeProxyAttribute.#ctor(System.String) +M:System.Diagnostics.DebuggerTypeProxyAttribute.#ctor(System.Type) +M:System.Diagnostics.DebuggerTypeProxyAttribute.get_ProxyTypeName +M:System.Diagnostics.DebuggerTypeProxyAttribute.get_Target +M:System.Diagnostics.DebuggerTypeProxyAttribute.get_TargetTypeName +M:System.Diagnostics.DebuggerTypeProxyAttribute.set_Target(System.Type) +M:System.Diagnostics.DebuggerTypeProxyAttribute.set_TargetTypeName(System.String) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String,System.String) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String,System.Type) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type,System.String) +M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type,System.Type) +M:System.Diagnostics.DebuggerVisualizerAttribute.get_Description +M:System.Diagnostics.DebuggerVisualizerAttribute.get_Target +M:System.Diagnostics.DebuggerVisualizerAttribute.get_TargetTypeName +M:System.Diagnostics.DebuggerVisualizerAttribute.get_VisualizerObjectSourceTypeName +M:System.Diagnostics.DebuggerVisualizerAttribute.get_VisualizerTypeName +M:System.Diagnostics.DebuggerVisualizerAttribute.set_Description(System.String) +M:System.Diagnostics.DebuggerVisualizerAttribute.set_Target(System.Type) +M:System.Diagnostics.DebuggerVisualizerAttribute.set_TargetTypeName(System.String) +M:System.Diagnostics.StackTraceHiddenAttribute.#ctor +M:System.Diagnostics.Stopwatch.#ctor +M:System.Diagnostics.Stopwatch.get_Elapsed +M:System.Diagnostics.Stopwatch.get_ElapsedMilliseconds +M:System.Diagnostics.Stopwatch.get_ElapsedTicks +M:System.Diagnostics.Stopwatch.get_IsRunning +M:System.Diagnostics.Stopwatch.GetElapsedTime(System.Int64) +M:System.Diagnostics.Stopwatch.GetElapsedTime(System.Int64,System.Int64) +M:System.Diagnostics.Stopwatch.GetTimestamp +M:System.Diagnostics.Stopwatch.Reset +M:System.Diagnostics.Stopwatch.Restart +M:System.Diagnostics.Stopwatch.Start +M:System.Diagnostics.Stopwatch.StartNew +M:System.Diagnostics.Stopwatch.Stop +M:System.Diagnostics.Stopwatch.ToString +M:System.Diagnostics.UnreachableException.#ctor +M:System.Diagnostics.UnreachableException.#ctor(System.String) +M:System.Diagnostics.UnreachableException.#ctor(System.String,System.Exception) +M:System.DivideByZeroException.#ctor +M:System.DivideByZeroException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.DivideByZeroException.#ctor(System.String) +M:System.DivideByZeroException.#ctor(System.String,System.Exception) +M:System.Double.Abs(System.Double) +M:System.Double.Acos(System.Double) +M:System.Double.Acosh(System.Double) +M:System.Double.AcosPi(System.Double) +M:System.Double.Asin(System.Double) +M:System.Double.Asinh(System.Double) +M:System.Double.AsinPi(System.Double) +M:System.Double.Atan(System.Double) +M:System.Double.Atan2(System.Double,System.Double) +M:System.Double.Atan2Pi(System.Double,System.Double) +M:System.Double.Atanh(System.Double) +M:System.Double.AtanPi(System.Double) +M:System.Double.BitDecrement(System.Double) +M:System.Double.BitIncrement(System.Double) +M:System.Double.Cbrt(System.Double) +M:System.Double.Ceiling(System.Double) +M:System.Double.Clamp(System.Double,System.Double,System.Double) +M:System.Double.CompareTo(System.Double) +M:System.Double.CompareTo(System.Object) +M:System.Double.CopySign(System.Double,System.Double) +M:System.Double.Cos(System.Double) +M:System.Double.Cosh(System.Double) +M:System.Double.CosPi(System.Double) +M:System.Double.CreateChecked``1(``0) +M:System.Double.CreateSaturating``1(``0) +M:System.Double.CreateTruncating``1(``0) +M:System.Double.DegreesToRadians(System.Double) +M:System.Double.Equals(System.Double) +M:System.Double.Equals(System.Object) +M:System.Double.Exp(System.Double) +M:System.Double.Exp10(System.Double) +M:System.Double.Exp10M1(System.Double) +M:System.Double.Exp2(System.Double) +M:System.Double.Exp2M1(System.Double) +M:System.Double.ExpM1(System.Double) +M:System.Double.Floor(System.Double) +M:System.Double.FusedMultiplyAdd(System.Double,System.Double,System.Double) +M:System.Double.GetHashCode +M:System.Double.GetTypeCode +M:System.Double.Hypot(System.Double,System.Double) +M:System.Double.Ieee754Remainder(System.Double,System.Double) +M:System.Double.ILogB(System.Double) +M:System.Double.IsEvenInteger(System.Double) +M:System.Double.IsFinite(System.Double) +M:System.Double.IsInfinity(System.Double) +M:System.Double.IsInteger(System.Double) +M:System.Double.IsNaN(System.Double) +M:System.Double.IsNegative(System.Double) +M:System.Double.IsNegativeInfinity(System.Double) +M:System.Double.IsNormal(System.Double) +M:System.Double.IsOddInteger(System.Double) +M:System.Double.IsPositive(System.Double) +M:System.Double.IsPositiveInfinity(System.Double) +M:System.Double.IsPow2(System.Double) +M:System.Double.IsRealNumber(System.Double) +M:System.Double.IsSubnormal(System.Double) +M:System.Double.Lerp(System.Double,System.Double,System.Double) +M:System.Double.Log(System.Double) +M:System.Double.Log(System.Double,System.Double) +M:System.Double.Log10(System.Double) +M:System.Double.Log10P1(System.Double) +M:System.Double.Log2(System.Double) +M:System.Double.Log2P1(System.Double) +M:System.Double.LogP1(System.Double) +M:System.Double.Max(System.Double,System.Double) +M:System.Double.MaxMagnitude(System.Double,System.Double) +M:System.Double.MaxMagnitudeNumber(System.Double,System.Double) +M:System.Double.MaxNumber(System.Double,System.Double) +M:System.Double.Min(System.Double,System.Double) +M:System.Double.MinMagnitude(System.Double,System.Double) +M:System.Double.MinMagnitudeNumber(System.Double,System.Double) +M:System.Double.MinNumber(System.Double,System.Double) +M:System.Double.op_Equality(System.Double,System.Double) +M:System.Double.op_GreaterThan(System.Double,System.Double) +M:System.Double.op_GreaterThanOrEqual(System.Double,System.Double) +M:System.Double.op_Inequality(System.Double,System.Double) +M:System.Double.op_LessThan(System.Double,System.Double) +M:System.Double.op_LessThanOrEqual(System.Double,System.Double) +M:System.Double.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Double.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Double.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Double.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Double.Parse(System.String) +M:System.Double.Parse(System.String,System.Globalization.NumberStyles) +M:System.Double.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Double.Parse(System.String,System.IFormatProvider) +M:System.Double.Pow(System.Double,System.Double) +M:System.Double.RadiansToDegrees(System.Double) +M:System.Double.ReciprocalEstimate(System.Double) +M:System.Double.ReciprocalSqrtEstimate(System.Double) +M:System.Double.RootN(System.Double,System.Int32) +M:System.Double.Round(System.Double) +M:System.Double.Round(System.Double,System.Int32) +M:System.Double.Round(System.Double,System.Int32,System.MidpointRounding) +M:System.Double.Round(System.Double,System.MidpointRounding) +M:System.Double.ScaleB(System.Double,System.Int32) +M:System.Double.Sign(System.Double) +M:System.Double.Sin(System.Double) +M:System.Double.SinCos(System.Double) +M:System.Double.SinCosPi(System.Double) +M:System.Double.Sinh(System.Double) +M:System.Double.SinPi(System.Double) +M:System.Double.Sqrt(System.Double) +M:System.Double.Tan(System.Double) +M:System.Double.Tanh(System.Double) +M:System.Double.TanPi(System.Double) +M:System.Double.ToString +M:System.Double.ToString(System.IFormatProvider) +M:System.Double.ToString(System.String) +M:System.Double.ToString(System.String,System.IFormatProvider) +M:System.Double.Truncate(System.Double) +M:System.Double.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Double.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Double.TryParse(System.ReadOnlySpan{System.Byte},System.Double@) +M:System.Double.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Double@) +M:System.Double.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Double@) +M:System.Double.TryParse(System.ReadOnlySpan{System.Char},System.Double@) +M:System.Double.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Double@) +M:System.Double.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Double@) +M:System.Double.TryParse(System.String,System.Double@) +M:System.Double.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Double@) +M:System.Double.TryParse(System.String,System.IFormatProvider,System.Double@) +M:System.DuplicateWaitObjectException.#ctor +M:System.DuplicateWaitObjectException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.DuplicateWaitObjectException.#ctor(System.String) +M:System.DuplicateWaitObjectException.#ctor(System.String,System.Exception) +M:System.DuplicateWaitObjectException.#ctor(System.String,System.String) +M:System.EntryPointNotFoundException.#ctor +M:System.EntryPointNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.EntryPointNotFoundException.#ctor(System.String) +M:System.EntryPointNotFoundException.#ctor(System.String,System.Exception) +M:System.Enum.#ctor +M:System.Enum.CompareTo(System.Object) +M:System.Enum.Equals(System.Object) +M:System.Enum.Format(System.Type,System.Object,System.String) +M:System.Enum.GetHashCode +M:System.Enum.GetName(System.Type,System.Object) +M:System.Enum.GetName``1(``0) +M:System.Enum.GetNames(System.Type) +M:System.Enum.GetNames``1 +M:System.Enum.GetTypeCode +M:System.Enum.GetUnderlyingType(System.Type) +M:System.Enum.GetValues(System.Type) +M:System.Enum.GetValues``1 +M:System.Enum.GetValuesAsUnderlyingType(System.Type) +M:System.Enum.GetValuesAsUnderlyingType``1 +M:System.Enum.HasFlag(System.Enum) +M:System.Enum.IsDefined(System.Type,System.Object) +M:System.Enum.IsDefined``1(``0) +M:System.Enum.Parse(System.Type,System.ReadOnlySpan{System.Char}) +M:System.Enum.Parse(System.Type,System.ReadOnlySpan{System.Char},System.Boolean) +M:System.Enum.Parse(System.Type,System.String) +M:System.Enum.Parse(System.Type,System.String,System.Boolean) +M:System.Enum.Parse``1(System.ReadOnlySpan{System.Char}) +M:System.Enum.Parse``1(System.ReadOnlySpan{System.Char},System.Boolean) +M:System.Enum.Parse``1(System.String) +M:System.Enum.Parse``1(System.String,System.Boolean) +M:System.Enum.ToObject(System.Type,System.Byte) +M:System.Enum.ToObject(System.Type,System.Int16) +M:System.Enum.ToObject(System.Type,System.Int32) +M:System.Enum.ToObject(System.Type,System.Int64) +M:System.Enum.ToObject(System.Type,System.Object) +M:System.Enum.ToObject(System.Type,System.SByte) +M:System.Enum.ToObject(System.Type,System.UInt16) +M:System.Enum.ToObject(System.Type,System.UInt32) +M:System.Enum.ToObject(System.Type,System.UInt64) +M:System.Enum.ToString +M:System.Enum.ToString(System.IFormatProvider) +M:System.Enum.ToString(System.String) +M:System.Enum.ToString(System.String,System.IFormatProvider) +M:System.Enum.TryFormat``1(``0,System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char}) +M:System.Enum.TryParse(System.Type,System.ReadOnlySpan{System.Char},System.Boolean,System.Object@) +M:System.Enum.TryParse(System.Type,System.ReadOnlySpan{System.Char},System.Object@) +M:System.Enum.TryParse(System.Type,System.String,System.Boolean,System.Object@) +M:System.Enum.TryParse(System.Type,System.String,System.Object@) +M:System.Enum.TryParse``1(System.ReadOnlySpan{System.Char},``0@) +M:System.Enum.TryParse``1(System.ReadOnlySpan{System.Char},System.Boolean,``0@) +M:System.Enum.TryParse``1(System.String,``0@) +M:System.Enum.TryParse``1(System.String,System.Boolean,``0@) +M:System.Environment.get_CurrentManagedThreadId +M:System.Environment.get_NewLine +M:System.EventArgs.#ctor +M:System.EventHandler.#ctor(System.Object,System.IntPtr) +M:System.EventHandler.BeginInvoke(System.Object,System.EventArgs,System.AsyncCallback,System.Object) +M:System.EventHandler.EndInvoke(System.IAsyncResult) +M:System.EventHandler.Invoke(System.Object,System.EventArgs) +M:System.EventHandler`1.#ctor(System.Object,System.IntPtr) +M:System.EventHandler`1.BeginInvoke(System.Object,`0,System.AsyncCallback,System.Object) +M:System.EventHandler`1.EndInvoke(System.IAsyncResult) +M:System.EventHandler`1.Invoke(System.Object,`0) +M:System.Exception.#ctor +M:System.Exception.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Exception.#ctor(System.String) +M:System.Exception.#ctor(System.String,System.Exception) +M:System.Exception.add_SerializeObjectState(System.EventHandler{System.Runtime.Serialization.SafeSerializationEventArgs}) +M:System.Exception.get_Data +M:System.Exception.get_HelpLink +M:System.Exception.get_HResult +M:System.Exception.get_InnerException +M:System.Exception.get_Message +M:System.Exception.get_Source +M:System.Exception.get_StackTrace +M:System.Exception.get_TargetSite +M:System.Exception.GetBaseException +M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Exception.GetType +M:System.Exception.remove_SerializeObjectState(System.EventHandler{System.Runtime.Serialization.SafeSerializationEventArgs}) +M:System.Exception.set_HelpLink(System.String) +M:System.Exception.set_HResult(System.Int32) +M:System.Exception.set_Source(System.String) +M:System.Exception.ToString +M:System.ExecutionEngineException.#ctor +M:System.ExecutionEngineException.#ctor(System.String) +M:System.ExecutionEngineException.#ctor(System.String,System.Exception) +M:System.FieldAccessException.#ctor +M:System.FieldAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.FieldAccessException.#ctor(System.String) +M:System.FieldAccessException.#ctor(System.String,System.Exception) +M:System.FileStyleUriParser.#ctor +M:System.FlagsAttribute.#ctor +M:System.FormatException.#ctor +M:System.FormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.FormatException.#ctor(System.String) +M:System.FormatException.#ctor(System.String,System.Exception) +M:System.FormattableString.#ctor +M:System.FormattableString.CurrentCulture(System.FormattableString) +M:System.FormattableString.get_ArgumentCount +M:System.FormattableString.get_Format +M:System.FormattableString.GetArgument(System.Int32) +M:System.FormattableString.GetArguments +M:System.FormattableString.Invariant(System.FormattableString) +M:System.FormattableString.ToString +M:System.FormattableString.ToString(System.IFormatProvider) +M:System.FtpStyleUriParser.#ctor +M:System.Func`1.#ctor(System.Object,System.IntPtr) +M:System.Func`1.BeginInvoke(System.AsyncCallback,System.Object) +M:System.Func`1.EndInvoke(System.IAsyncResult) +M:System.Func`1.Invoke +M:System.Func`10.#ctor(System.Object,System.IntPtr) +M:System.Func`10.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,System.AsyncCallback,System.Object) +M:System.Func`10.EndInvoke(System.IAsyncResult) +M:System.Func`10.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8) +M:System.Func`11.#ctor(System.Object,System.IntPtr) +M:System.Func`11.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,System.AsyncCallback,System.Object) +M:System.Func`11.EndInvoke(System.IAsyncResult) +M:System.Func`11.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9) +M:System.Func`12.#ctor(System.Object,System.IntPtr) +M:System.Func`12.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,System.AsyncCallback,System.Object) +M:System.Func`12.EndInvoke(System.IAsyncResult) +M:System.Func`12.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10) +M:System.Func`13.#ctor(System.Object,System.IntPtr) +M:System.Func`13.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,System.AsyncCallback,System.Object) +M:System.Func`13.EndInvoke(System.IAsyncResult) +M:System.Func`13.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11) +M:System.Func`14.#ctor(System.Object,System.IntPtr) +M:System.Func`14.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,System.AsyncCallback,System.Object) +M:System.Func`14.EndInvoke(System.IAsyncResult) +M:System.Func`14.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12) +M:System.Func`15.#ctor(System.Object,System.IntPtr) +M:System.Func`15.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,System.AsyncCallback,System.Object) +M:System.Func`15.EndInvoke(System.IAsyncResult) +M:System.Func`15.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13) +M:System.Func`16.#ctor(System.Object,System.IntPtr) +M:System.Func`16.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,System.AsyncCallback,System.Object) +M:System.Func`16.EndInvoke(System.IAsyncResult) +M:System.Func`16.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14) +M:System.Func`17.#ctor(System.Object,System.IntPtr) +M:System.Func`17.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,`15,System.AsyncCallback,System.Object) +M:System.Func`17.EndInvoke(System.IAsyncResult) +M:System.Func`17.Invoke(`0,`1,`2,`3,`4,`5,`6,`7,`8,`9,`10,`11,`12,`13,`14,`15) +M:System.Func`2.#ctor(System.Object,System.IntPtr) +M:System.Func`2.BeginInvoke(`0,System.AsyncCallback,System.Object) +M:System.Func`2.EndInvoke(System.IAsyncResult) +M:System.Func`2.Invoke(`0) +M:System.Func`3.#ctor(System.Object,System.IntPtr) +M:System.Func`3.BeginInvoke(`0,`1,System.AsyncCallback,System.Object) +M:System.Func`3.EndInvoke(System.IAsyncResult) +M:System.Func`3.Invoke(`0,`1) +M:System.Func`4.#ctor(System.Object,System.IntPtr) +M:System.Func`4.BeginInvoke(`0,`1,`2,System.AsyncCallback,System.Object) +M:System.Func`4.EndInvoke(System.IAsyncResult) +M:System.Func`4.Invoke(`0,`1,`2) +M:System.Func`5.#ctor(System.Object,System.IntPtr) +M:System.Func`5.BeginInvoke(`0,`1,`2,`3,System.AsyncCallback,System.Object) +M:System.Func`5.EndInvoke(System.IAsyncResult) +M:System.Func`5.Invoke(`0,`1,`2,`3) +M:System.Func`6.#ctor(System.Object,System.IntPtr) +M:System.Func`6.BeginInvoke(`0,`1,`2,`3,`4,System.AsyncCallback,System.Object) +M:System.Func`6.EndInvoke(System.IAsyncResult) +M:System.Func`6.Invoke(`0,`1,`2,`3,`4) +M:System.Func`7.#ctor(System.Object,System.IntPtr) +M:System.Func`7.BeginInvoke(`0,`1,`2,`3,`4,`5,System.AsyncCallback,System.Object) +M:System.Func`7.EndInvoke(System.IAsyncResult) +M:System.Func`7.Invoke(`0,`1,`2,`3,`4,`5) +M:System.Func`8.#ctor(System.Object,System.IntPtr) +M:System.Func`8.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,System.AsyncCallback,System.Object) +M:System.Func`8.EndInvoke(System.IAsyncResult) +M:System.Func`8.Invoke(`0,`1,`2,`3,`4,`5,`6) +M:System.Func`9.#ctor(System.Object,System.IntPtr) +M:System.Func`9.BeginInvoke(`0,`1,`2,`3,`4,`5,`6,`7,System.AsyncCallback,System.Object) +M:System.Func`9.EndInvoke(System.IAsyncResult) +M:System.Func`9.Invoke(`0,`1,`2,`3,`4,`5,`6,`7) +M:System.GenericUriParser.#ctor(System.GenericUriParserOptions) +M:System.Globalization.Calendar.#ctor +M:System.Globalization.Calendar.AddDays(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddHours(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddMilliseconds(System.DateTime,System.Double) +M:System.Globalization.Calendar.AddMinutes(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddSeconds(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddWeeks(System.DateTime,System.Int32) +M:System.Globalization.Calendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.Calendar.Clone +M:System.Globalization.Calendar.get_AlgorithmType +M:System.Globalization.Calendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.Calendar.get_Eras +M:System.Globalization.Calendar.get_IsReadOnly +M:System.Globalization.Calendar.get_MaxSupportedDateTime +M:System.Globalization.Calendar.get_MinSupportedDateTime +M:System.Globalization.Calendar.get_TwoDigitYearMax +M:System.Globalization.Calendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.Calendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.Calendar.GetDayOfYear(System.DateTime) +M:System.Globalization.Calendar.GetDaysInMonth(System.Int32,System.Int32) +M:System.Globalization.Calendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.GetDaysInYear(System.Int32) +M:System.Globalization.Calendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.Calendar.GetEra(System.DateTime) +M:System.Globalization.Calendar.GetHour(System.DateTime) +M:System.Globalization.Calendar.GetLeapMonth(System.Int32) +M:System.Globalization.Calendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.Calendar.GetMilliseconds(System.DateTime) +M:System.Globalization.Calendar.GetMinute(System.DateTime) +M:System.Globalization.Calendar.GetMonth(System.DateTime) +M:System.Globalization.Calendar.GetMonthsInYear(System.Int32) +M:System.Globalization.Calendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.Calendar.GetSecond(System.DateTime) +M:System.Globalization.Calendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek) +M:System.Globalization.Calendar.GetYear(System.DateTime) +M:System.Globalization.Calendar.IsLeapDay(System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.IsLeapMonth(System.Int32,System.Int32) +M:System.Globalization.Calendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.IsLeapYear(System.Int32) +M:System.Globalization.Calendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.Calendar.ReadOnly(System.Globalization.Calendar) +M:System.Globalization.Calendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.Calendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.Calendar.ToFourDigitYear(System.Int32) +M:System.Globalization.CharUnicodeInfo.GetDecimalDigitValue(System.Char) +M:System.Globalization.CharUnicodeInfo.GetDecimalDigitValue(System.String,System.Int32) +M:System.Globalization.CharUnicodeInfo.GetDigitValue(System.Char) +M:System.Globalization.CharUnicodeInfo.GetDigitValue(System.String,System.Int32) +M:System.Globalization.CharUnicodeInfo.GetNumericValue(System.Char) +M:System.Globalization.CharUnicodeInfo.GetNumericValue(System.String,System.Int32) +M:System.Globalization.CharUnicodeInfo.GetUnicodeCategory(System.Char) +M:System.Globalization.CharUnicodeInfo.GetUnicodeCategory(System.Int32) +M:System.Globalization.CharUnicodeInfo.GetUnicodeCategory(System.String,System.Int32) +M:System.Globalization.ChineseLunisolarCalendar.#ctor +M:System.Globalization.ChineseLunisolarCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.ChineseLunisolarCalendar.get_Eras +M:System.Globalization.ChineseLunisolarCalendar.get_MaxSupportedDateTime +M:System.Globalization.ChineseLunisolarCalendar.get_MinSupportedDateTime +M:System.Globalization.ChineseLunisolarCalendar.GetEra(System.DateTime) +M:System.Globalization.CompareInfo.Compare(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32) +M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.String,System.Int32) +M:System.Globalization.CompareInfo.Compare(System.String,System.Int32,System.String,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.Compare(System.String,System.String) +M:System.Globalization.CompareInfo.Compare(System.String,System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.Equals(System.Object) +M:System.Globalization.CompareInfo.get_LCID +M:System.Globalization.CompareInfo.get_Name +M:System.Globalization.CompareInfo.get_Version +M:System.Globalization.CompareInfo.GetCompareInfo(System.Int32) +M:System.Globalization.CompareInfo.GetCompareInfo(System.Int32,System.Reflection.Assembly) +M:System.Globalization.CompareInfo.GetCompareInfo(System.String) +M:System.Globalization.CompareInfo.GetCompareInfo(System.String,System.Reflection.Assembly) +M:System.Globalization.CompareInfo.GetHashCode +M:System.Globalization.CompareInfo.GetHashCode(System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.GetHashCode(System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.GetSortKey(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.GetSortKey(System.String) +M:System.Globalization.CompareInfo.GetSortKey(System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.GetSortKeyLength(System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions,System.Int32@) +M:System.Globalization.CompareInfo.IndexOf(System.ReadOnlySpan{System.Char},System.Text.Rune,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32,System.Int32) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.Char,System.Int32,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32,System.Int32) +M:System.Globalization.CompareInfo.IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IsPrefix(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IsPrefix(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions,System.Int32@) +M:System.Globalization.CompareInfo.IsPrefix(System.String,System.String) +M:System.Globalization.CompareInfo.IsPrefix(System.String,System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IsSortable(System.Char) +M:System.Globalization.CompareInfo.IsSortable(System.ReadOnlySpan{System.Char}) +M:System.Globalization.CompareInfo.IsSortable(System.String) +M:System.Globalization.CompareInfo.IsSortable(System.Text.Rune) +M:System.Globalization.CompareInfo.IsSuffix(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.IsSuffix(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions,System.Int32@) +M:System.Globalization.CompareInfo.IsSuffix(System.String,System.String) +M:System.Globalization.CompareInfo.IsSuffix(System.String,System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Globalization.CompareOptions,System.Int32@) +M:System.Globalization.CompareInfo.LastIndexOf(System.ReadOnlySpan{System.Char},System.Text.Rune,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32,System.Int32) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.Char,System.Int32,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32,System.Int32) +M:System.Globalization.CompareInfo.LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) +M:System.Globalization.CompareInfo.ToString +M:System.Globalization.CultureInfo.#ctor(System.Int32) +M:System.Globalization.CultureInfo.#ctor(System.Int32,System.Boolean) +M:System.Globalization.CultureInfo.#ctor(System.String) +M:System.Globalization.CultureInfo.#ctor(System.String,System.Boolean) +M:System.Globalization.CultureInfo.ClearCachedData +M:System.Globalization.CultureInfo.Clone +M:System.Globalization.CultureInfo.CreateSpecificCulture(System.String) +M:System.Globalization.CultureInfo.Equals(System.Object) +M:System.Globalization.CultureInfo.get_Calendar +M:System.Globalization.CultureInfo.get_CompareInfo +M:System.Globalization.CultureInfo.get_CultureTypes +M:System.Globalization.CultureInfo.get_CurrentCulture +M:System.Globalization.CultureInfo.get_CurrentUICulture +M:System.Globalization.CultureInfo.get_DateTimeFormat +M:System.Globalization.CultureInfo.get_DefaultThreadCurrentCulture +M:System.Globalization.CultureInfo.get_DefaultThreadCurrentUICulture +M:System.Globalization.CultureInfo.get_DisplayName +M:System.Globalization.CultureInfo.get_EnglishName +M:System.Globalization.CultureInfo.get_IetfLanguageTag +M:System.Globalization.CultureInfo.get_InstalledUICulture +M:System.Globalization.CultureInfo.get_InvariantCulture +M:System.Globalization.CultureInfo.get_IsNeutralCulture +M:System.Globalization.CultureInfo.get_IsReadOnly +M:System.Globalization.CultureInfo.get_KeyboardLayoutId +M:System.Globalization.CultureInfo.get_LCID +M:System.Globalization.CultureInfo.get_Name +M:System.Globalization.CultureInfo.get_NativeName +M:System.Globalization.CultureInfo.get_NumberFormat +M:System.Globalization.CultureInfo.get_OptionalCalendars +M:System.Globalization.CultureInfo.get_Parent +M:System.Globalization.CultureInfo.get_TextInfo +M:System.Globalization.CultureInfo.get_ThreeLetterISOLanguageName +M:System.Globalization.CultureInfo.get_ThreeLetterWindowsLanguageName +M:System.Globalization.CultureInfo.get_TwoLetterISOLanguageName +M:System.Globalization.CultureInfo.get_UseUserOverride +M:System.Globalization.CultureInfo.GetConsoleFallbackUICulture +M:System.Globalization.CultureInfo.GetCultureInfo(System.Int32) +M:System.Globalization.CultureInfo.GetCultureInfo(System.String) +M:System.Globalization.CultureInfo.GetCultureInfo(System.String,System.Boolean) +M:System.Globalization.CultureInfo.GetCultureInfo(System.String,System.String) +M:System.Globalization.CultureInfo.GetCultureInfoByIetfLanguageTag(System.String) +M:System.Globalization.CultureInfo.GetCultures(System.Globalization.CultureTypes) +M:System.Globalization.CultureInfo.GetFormat(System.Type) +M:System.Globalization.CultureInfo.GetHashCode +M:System.Globalization.CultureInfo.ReadOnly(System.Globalization.CultureInfo) +M:System.Globalization.CultureInfo.ToString +M:System.Globalization.CultureNotFoundException.#ctor +M:System.Globalization.CultureNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Globalization.CultureNotFoundException.#ctor(System.String) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.Exception) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.Int32,System.Exception) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.Int32,System.String) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.String) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.String,System.Exception) +M:System.Globalization.CultureNotFoundException.#ctor(System.String,System.String,System.String) +M:System.Globalization.CultureNotFoundException.get_InvalidCultureId +M:System.Globalization.CultureNotFoundException.get_InvalidCultureName +M:System.Globalization.CultureNotFoundException.get_Message +M:System.Globalization.CultureNotFoundException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Globalization.DateTimeFormatInfo.#ctor +M:System.Globalization.DateTimeFormatInfo.Clone +M:System.Globalization.DateTimeFormatInfo.get_AbbreviatedDayNames +M:System.Globalization.DateTimeFormatInfo.get_AbbreviatedMonthGenitiveNames +M:System.Globalization.DateTimeFormatInfo.get_AbbreviatedMonthNames +M:System.Globalization.DateTimeFormatInfo.get_AMDesignator +M:System.Globalization.DateTimeFormatInfo.get_Calendar +M:System.Globalization.DateTimeFormatInfo.get_CalendarWeekRule +M:System.Globalization.DateTimeFormatInfo.get_CurrentInfo +M:System.Globalization.DateTimeFormatInfo.get_DateSeparator +M:System.Globalization.DateTimeFormatInfo.get_DayNames +M:System.Globalization.DateTimeFormatInfo.get_FirstDayOfWeek +M:System.Globalization.DateTimeFormatInfo.get_FullDateTimePattern +M:System.Globalization.DateTimeFormatInfo.get_InvariantInfo +M:System.Globalization.DateTimeFormatInfo.get_IsReadOnly +M:System.Globalization.DateTimeFormatInfo.get_LongDatePattern +M:System.Globalization.DateTimeFormatInfo.get_LongTimePattern +M:System.Globalization.DateTimeFormatInfo.get_MonthDayPattern +M:System.Globalization.DateTimeFormatInfo.get_MonthGenitiveNames +M:System.Globalization.DateTimeFormatInfo.get_MonthNames +M:System.Globalization.DateTimeFormatInfo.get_NativeCalendarName +M:System.Globalization.DateTimeFormatInfo.get_PMDesignator +M:System.Globalization.DateTimeFormatInfo.get_RFC1123Pattern +M:System.Globalization.DateTimeFormatInfo.get_ShortDatePattern +M:System.Globalization.DateTimeFormatInfo.get_ShortestDayNames +M:System.Globalization.DateTimeFormatInfo.get_ShortTimePattern +M:System.Globalization.DateTimeFormatInfo.get_SortableDateTimePattern +M:System.Globalization.DateTimeFormatInfo.get_TimeSeparator +M:System.Globalization.DateTimeFormatInfo.get_UniversalSortableDateTimePattern +M:System.Globalization.DateTimeFormatInfo.get_YearMonthPattern +M:System.Globalization.DateTimeFormatInfo.GetAbbreviatedDayName(System.DayOfWeek) +M:System.Globalization.DateTimeFormatInfo.GetAbbreviatedEraName(System.Int32) +M:System.Globalization.DateTimeFormatInfo.GetAbbreviatedMonthName(System.Int32) +M:System.Globalization.DateTimeFormatInfo.GetAllDateTimePatterns +M:System.Globalization.DateTimeFormatInfo.GetAllDateTimePatterns(System.Char) +M:System.Globalization.DateTimeFormatInfo.GetDayName(System.DayOfWeek) +M:System.Globalization.DateTimeFormatInfo.GetEra(System.String) +M:System.Globalization.DateTimeFormatInfo.GetEraName(System.Int32) +M:System.Globalization.DateTimeFormatInfo.GetFormat(System.Type) +M:System.Globalization.DateTimeFormatInfo.GetInstance(System.IFormatProvider) +M:System.Globalization.DateTimeFormatInfo.GetMonthName(System.Int32) +M:System.Globalization.DateTimeFormatInfo.GetShortestDayName(System.DayOfWeek) +M:System.Globalization.DateTimeFormatInfo.ReadOnly(System.Globalization.DateTimeFormatInfo) +M:System.Globalization.DateTimeFormatInfo.set_AbbreviatedDayNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_AbbreviatedMonthGenitiveNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_AbbreviatedMonthNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_AMDesignator(System.String) +M:System.Globalization.DateTimeFormatInfo.set_Calendar(System.Globalization.Calendar) +M:System.Globalization.DateTimeFormatInfo.set_CalendarWeekRule(System.Globalization.CalendarWeekRule) +M:System.Globalization.DateTimeFormatInfo.set_DateSeparator(System.String) +M:System.Globalization.DateTimeFormatInfo.set_DayNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_FirstDayOfWeek(System.DayOfWeek) +M:System.Globalization.DateTimeFormatInfo.set_FullDateTimePattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_LongDatePattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_LongTimePattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_MonthDayPattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_MonthGenitiveNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_MonthNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_PMDesignator(System.String) +M:System.Globalization.DateTimeFormatInfo.set_ShortDatePattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_ShortestDayNames(System.String[]) +M:System.Globalization.DateTimeFormatInfo.set_ShortTimePattern(System.String) +M:System.Globalization.DateTimeFormatInfo.set_TimeSeparator(System.String) +M:System.Globalization.DateTimeFormatInfo.set_YearMonthPattern(System.String) +M:System.Globalization.DateTimeFormatInfo.SetAllDateTimePatterns(System.String[],System.Char) +M:System.Globalization.DaylightTime.#ctor(System.DateTime,System.DateTime,System.TimeSpan) +M:System.Globalization.DaylightTime.get_Delta +M:System.Globalization.DaylightTime.get_End +M:System.Globalization.DaylightTime.get_Start +M:System.Globalization.EastAsianLunisolarCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.get_AlgorithmType +M:System.Globalization.EastAsianLunisolarCalendar.get_TwoDigitYearMax +M:System.Globalization.EastAsianLunisolarCalendar.GetCelestialStem(System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetMonth(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetSexagenaryYear(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.GetTerrestrialBranch(System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.GetYear(System.DateTime) +M:System.Globalization.EastAsianLunisolarCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.EastAsianLunisolarCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.GlobalizationExtensions.GetStringComparer(System.Globalization.CompareInfo,System.Globalization.CompareOptions) +M:System.Globalization.GregorianCalendar.#ctor +M:System.Globalization.GregorianCalendar.#ctor(System.Globalization.GregorianCalendarTypes) +M:System.Globalization.GregorianCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.GregorianCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.GregorianCalendar.get_AlgorithmType +M:System.Globalization.GregorianCalendar.get_CalendarType +M:System.Globalization.GregorianCalendar.get_Eras +M:System.Globalization.GregorianCalendar.get_MaxSupportedDateTime +M:System.Globalization.GregorianCalendar.get_MinSupportedDateTime +M:System.Globalization.GregorianCalendar.get_TwoDigitYearMax +M:System.Globalization.GregorianCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.GregorianCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.GregorianCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.GregorianCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.GetEra(System.DateTime) +M:System.Globalization.GregorianCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.GetMonth(System.DateTime) +M:System.Globalization.GregorianCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.GetYear(System.DateTime) +M:System.Globalization.GregorianCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.set_CalendarType(System.Globalization.GregorianCalendarTypes) +M:System.Globalization.GregorianCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.GregorianCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.GregorianCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.HebrewCalendar.#ctor +M:System.Globalization.HebrewCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.HebrewCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.HebrewCalendar.get_AlgorithmType +M:System.Globalization.HebrewCalendar.get_Eras +M:System.Globalization.HebrewCalendar.get_MaxSupportedDateTime +M:System.Globalization.HebrewCalendar.get_MinSupportedDateTime +M:System.Globalization.HebrewCalendar.get_TwoDigitYearMax +M:System.Globalization.HebrewCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.HebrewCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.HebrewCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.HebrewCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.GetEra(System.DateTime) +M:System.Globalization.HebrewCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.GetMonth(System.DateTime) +M:System.Globalization.HebrewCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.GetYear(System.DateTime) +M:System.Globalization.HebrewCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.HebrewCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.HebrewCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.HijriCalendar.#ctor +M:System.Globalization.HijriCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.HijriCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.HijriCalendar.get_AlgorithmType +M:System.Globalization.HijriCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.HijriCalendar.get_Eras +M:System.Globalization.HijriCalendar.get_HijriAdjustment +M:System.Globalization.HijriCalendar.get_MaxSupportedDateTime +M:System.Globalization.HijriCalendar.get_MinSupportedDateTime +M:System.Globalization.HijriCalendar.get_TwoDigitYearMax +M:System.Globalization.HijriCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.HijriCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.HijriCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.HijriCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.GetEra(System.DateTime) +M:System.Globalization.HijriCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.GetMonth(System.DateTime) +M:System.Globalization.HijriCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.GetYear(System.DateTime) +M:System.Globalization.HijriCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.set_HijriAdjustment(System.Int32) +M:System.Globalization.HijriCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.HijriCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.HijriCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.IdnMapping.#ctor +M:System.Globalization.IdnMapping.Equals(System.Object) +M:System.Globalization.IdnMapping.get_AllowUnassigned +M:System.Globalization.IdnMapping.get_UseStd3AsciiRules +M:System.Globalization.IdnMapping.GetAscii(System.String) +M:System.Globalization.IdnMapping.GetAscii(System.String,System.Int32) +M:System.Globalization.IdnMapping.GetAscii(System.String,System.Int32,System.Int32) +M:System.Globalization.IdnMapping.GetHashCode +M:System.Globalization.IdnMapping.GetUnicode(System.String) +M:System.Globalization.IdnMapping.GetUnicode(System.String,System.Int32) +M:System.Globalization.IdnMapping.GetUnicode(System.String,System.Int32,System.Int32) +M:System.Globalization.IdnMapping.set_AllowUnassigned(System.Boolean) +M:System.Globalization.IdnMapping.set_UseStd3AsciiRules(System.Boolean) +M:System.Globalization.ISOWeek.GetWeekOfYear(System.DateTime) +M:System.Globalization.ISOWeek.GetWeeksInYear(System.Int32) +M:System.Globalization.ISOWeek.GetYear(System.DateTime) +M:System.Globalization.ISOWeek.GetYearEnd(System.Int32) +M:System.Globalization.ISOWeek.GetYearStart(System.Int32) +M:System.Globalization.ISOWeek.ToDateTime(System.Int32,System.Int32,System.DayOfWeek) +M:System.Globalization.JapaneseCalendar.#ctor +M:System.Globalization.JapaneseCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.JapaneseCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.JapaneseCalendar.get_AlgorithmType +M:System.Globalization.JapaneseCalendar.get_Eras +M:System.Globalization.JapaneseCalendar.get_MaxSupportedDateTime +M:System.Globalization.JapaneseCalendar.get_MinSupportedDateTime +M:System.Globalization.JapaneseCalendar.get_TwoDigitYearMax +M:System.Globalization.JapaneseCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.JapaneseCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.JapaneseCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.JapaneseCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.GetEra(System.DateTime) +M:System.Globalization.JapaneseCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.GetMonth(System.DateTime) +M:System.Globalization.JapaneseCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek) +M:System.Globalization.JapaneseCalendar.GetYear(System.DateTime) +M:System.Globalization.JapaneseCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.JapaneseCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.JapaneseCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.JapaneseLunisolarCalendar.#ctor +M:System.Globalization.JapaneseLunisolarCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.JapaneseLunisolarCalendar.get_Eras +M:System.Globalization.JapaneseLunisolarCalendar.get_MaxSupportedDateTime +M:System.Globalization.JapaneseLunisolarCalendar.get_MinSupportedDateTime +M:System.Globalization.JapaneseLunisolarCalendar.GetEra(System.DateTime) +M:System.Globalization.JulianCalendar.#ctor +M:System.Globalization.JulianCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.JulianCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.JulianCalendar.get_AlgorithmType +M:System.Globalization.JulianCalendar.get_Eras +M:System.Globalization.JulianCalendar.get_MaxSupportedDateTime +M:System.Globalization.JulianCalendar.get_MinSupportedDateTime +M:System.Globalization.JulianCalendar.get_TwoDigitYearMax +M:System.Globalization.JulianCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.JulianCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.JulianCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.JulianCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.GetEra(System.DateTime) +M:System.Globalization.JulianCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.GetMonth(System.DateTime) +M:System.Globalization.JulianCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.GetYear(System.DateTime) +M:System.Globalization.JulianCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.JulianCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.JulianCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.KoreanCalendar.#ctor +M:System.Globalization.KoreanCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.KoreanCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.KoreanCalendar.get_AlgorithmType +M:System.Globalization.KoreanCalendar.get_Eras +M:System.Globalization.KoreanCalendar.get_MaxSupportedDateTime +M:System.Globalization.KoreanCalendar.get_MinSupportedDateTime +M:System.Globalization.KoreanCalendar.get_TwoDigitYearMax +M:System.Globalization.KoreanCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.KoreanCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.KoreanCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.KoreanCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.GetEra(System.DateTime) +M:System.Globalization.KoreanCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.GetMonth(System.DateTime) +M:System.Globalization.KoreanCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek) +M:System.Globalization.KoreanCalendar.GetYear(System.DateTime) +M:System.Globalization.KoreanCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.KoreanCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.KoreanCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.KoreanLunisolarCalendar.#ctor +M:System.Globalization.KoreanLunisolarCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.KoreanLunisolarCalendar.get_Eras +M:System.Globalization.KoreanLunisolarCalendar.get_MaxSupportedDateTime +M:System.Globalization.KoreanLunisolarCalendar.get_MinSupportedDateTime +M:System.Globalization.KoreanLunisolarCalendar.GetEra(System.DateTime) +M:System.Globalization.NumberFormatInfo.#ctor +M:System.Globalization.NumberFormatInfo.Clone +M:System.Globalization.NumberFormatInfo.get_CurrencyDecimalDigits +M:System.Globalization.NumberFormatInfo.get_CurrencyDecimalSeparator +M:System.Globalization.NumberFormatInfo.get_CurrencyGroupSeparator +M:System.Globalization.NumberFormatInfo.get_CurrencyGroupSizes +M:System.Globalization.NumberFormatInfo.get_CurrencyNegativePattern +M:System.Globalization.NumberFormatInfo.get_CurrencyPositivePattern +M:System.Globalization.NumberFormatInfo.get_CurrencySymbol +M:System.Globalization.NumberFormatInfo.get_CurrentInfo +M:System.Globalization.NumberFormatInfo.get_DigitSubstitution +M:System.Globalization.NumberFormatInfo.get_InvariantInfo +M:System.Globalization.NumberFormatInfo.get_IsReadOnly +M:System.Globalization.NumberFormatInfo.get_NaNSymbol +M:System.Globalization.NumberFormatInfo.get_NativeDigits +M:System.Globalization.NumberFormatInfo.get_NegativeInfinitySymbol +M:System.Globalization.NumberFormatInfo.get_NegativeSign +M:System.Globalization.NumberFormatInfo.get_NumberDecimalDigits +M:System.Globalization.NumberFormatInfo.get_NumberDecimalSeparator +M:System.Globalization.NumberFormatInfo.get_NumberGroupSeparator +M:System.Globalization.NumberFormatInfo.get_NumberGroupSizes +M:System.Globalization.NumberFormatInfo.get_NumberNegativePattern +M:System.Globalization.NumberFormatInfo.get_PercentDecimalDigits +M:System.Globalization.NumberFormatInfo.get_PercentDecimalSeparator +M:System.Globalization.NumberFormatInfo.get_PercentGroupSeparator +M:System.Globalization.NumberFormatInfo.get_PercentGroupSizes +M:System.Globalization.NumberFormatInfo.get_PercentNegativePattern +M:System.Globalization.NumberFormatInfo.get_PercentPositivePattern +M:System.Globalization.NumberFormatInfo.get_PercentSymbol +M:System.Globalization.NumberFormatInfo.get_PerMilleSymbol +M:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol +M:System.Globalization.NumberFormatInfo.get_PositiveSign +M:System.Globalization.NumberFormatInfo.GetFormat(System.Type) +M:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +M:System.Globalization.NumberFormatInfo.ReadOnly(System.Globalization.NumberFormatInfo) +M:System.Globalization.NumberFormatInfo.set_CurrencyDecimalDigits(System.Int32) +M:System.Globalization.NumberFormatInfo.set_CurrencyDecimalSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_CurrencyGroupSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_CurrencyGroupSizes(System.Int32[]) +M:System.Globalization.NumberFormatInfo.set_CurrencyNegativePattern(System.Int32) +M:System.Globalization.NumberFormatInfo.set_CurrencyPositivePattern(System.Int32) +M:System.Globalization.NumberFormatInfo.set_CurrencySymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_DigitSubstitution(System.Globalization.DigitShapes) +M:System.Globalization.NumberFormatInfo.set_NaNSymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_NativeDigits(System.String[]) +M:System.Globalization.NumberFormatInfo.set_NegativeInfinitySymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_NegativeSign(System.String) +M:System.Globalization.NumberFormatInfo.set_NumberDecimalDigits(System.Int32) +M:System.Globalization.NumberFormatInfo.set_NumberDecimalSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_NumberGroupSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_NumberGroupSizes(System.Int32[]) +M:System.Globalization.NumberFormatInfo.set_NumberNegativePattern(System.Int32) +M:System.Globalization.NumberFormatInfo.set_PercentDecimalDigits(System.Int32) +M:System.Globalization.NumberFormatInfo.set_PercentDecimalSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_PercentGroupSeparator(System.String) +M:System.Globalization.NumberFormatInfo.set_PercentGroupSizes(System.Int32[]) +M:System.Globalization.NumberFormatInfo.set_PercentNegativePattern(System.Int32) +M:System.Globalization.NumberFormatInfo.set_PercentPositivePattern(System.Int32) +M:System.Globalization.NumberFormatInfo.set_PercentSymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_PerMilleSymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_PositiveInfinitySymbol(System.String) +M:System.Globalization.NumberFormatInfo.set_PositiveSign(System.String) +M:System.Globalization.PersianCalendar.#ctor +M:System.Globalization.PersianCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.PersianCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.PersianCalendar.get_AlgorithmType +M:System.Globalization.PersianCalendar.get_Eras +M:System.Globalization.PersianCalendar.get_MaxSupportedDateTime +M:System.Globalization.PersianCalendar.get_MinSupportedDateTime +M:System.Globalization.PersianCalendar.get_TwoDigitYearMax +M:System.Globalization.PersianCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.PersianCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.PersianCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.PersianCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.GetEra(System.DateTime) +M:System.Globalization.PersianCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.GetMonth(System.DateTime) +M:System.Globalization.PersianCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.GetYear(System.DateTime) +M:System.Globalization.PersianCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.PersianCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.PersianCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.RegionInfo.#ctor(System.Int32) +M:System.Globalization.RegionInfo.#ctor(System.String) +M:System.Globalization.RegionInfo.Equals(System.Object) +M:System.Globalization.RegionInfo.get_CurrencyEnglishName +M:System.Globalization.RegionInfo.get_CurrencyNativeName +M:System.Globalization.RegionInfo.get_CurrencySymbol +M:System.Globalization.RegionInfo.get_CurrentRegion +M:System.Globalization.RegionInfo.get_DisplayName +M:System.Globalization.RegionInfo.get_EnglishName +M:System.Globalization.RegionInfo.get_GeoId +M:System.Globalization.RegionInfo.get_IsMetric +M:System.Globalization.RegionInfo.get_ISOCurrencySymbol +M:System.Globalization.RegionInfo.get_Name +M:System.Globalization.RegionInfo.get_NativeName +M:System.Globalization.RegionInfo.get_ThreeLetterISORegionName +M:System.Globalization.RegionInfo.get_ThreeLetterWindowsRegionName +M:System.Globalization.RegionInfo.get_TwoLetterISORegionName +M:System.Globalization.RegionInfo.GetHashCode +M:System.Globalization.RegionInfo.ToString +M:System.Globalization.SortKey.Compare(System.Globalization.SortKey,System.Globalization.SortKey) +M:System.Globalization.SortKey.Equals(System.Object) +M:System.Globalization.SortKey.get_KeyData +M:System.Globalization.SortKey.get_OriginalString +M:System.Globalization.SortKey.GetHashCode +M:System.Globalization.SortKey.ToString +M:System.Globalization.SortVersion.#ctor(System.Int32,System.Guid) +M:System.Globalization.SortVersion.Equals(System.Globalization.SortVersion) +M:System.Globalization.SortVersion.Equals(System.Object) +M:System.Globalization.SortVersion.get_FullVersion +M:System.Globalization.SortVersion.get_SortId +M:System.Globalization.SortVersion.GetHashCode +M:System.Globalization.SortVersion.op_Equality(System.Globalization.SortVersion,System.Globalization.SortVersion) +M:System.Globalization.SortVersion.op_Inequality(System.Globalization.SortVersion,System.Globalization.SortVersion) +M:System.Globalization.StringInfo.#ctor +M:System.Globalization.StringInfo.#ctor(System.String) +M:System.Globalization.StringInfo.Equals(System.Object) +M:System.Globalization.StringInfo.get_LengthInTextElements +M:System.Globalization.StringInfo.get_String +M:System.Globalization.StringInfo.GetHashCode +M:System.Globalization.StringInfo.GetNextTextElement(System.String) +M:System.Globalization.StringInfo.GetNextTextElement(System.String,System.Int32) +M:System.Globalization.StringInfo.GetNextTextElementLength(System.ReadOnlySpan{System.Char}) +M:System.Globalization.StringInfo.GetNextTextElementLength(System.String) +M:System.Globalization.StringInfo.GetNextTextElementLength(System.String,System.Int32) +M:System.Globalization.StringInfo.GetTextElementEnumerator(System.String) +M:System.Globalization.StringInfo.GetTextElementEnumerator(System.String,System.Int32) +M:System.Globalization.StringInfo.ParseCombiningCharacters(System.String) +M:System.Globalization.StringInfo.set_String(System.String) +M:System.Globalization.StringInfo.SubstringByTextElements(System.Int32) +M:System.Globalization.StringInfo.SubstringByTextElements(System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.#ctor +M:System.Globalization.TaiwanCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.TaiwanCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.TaiwanCalendar.get_AlgorithmType +M:System.Globalization.TaiwanCalendar.get_Eras +M:System.Globalization.TaiwanCalendar.get_MaxSupportedDateTime +M:System.Globalization.TaiwanCalendar.get_MinSupportedDateTime +M:System.Globalization.TaiwanCalendar.get_TwoDigitYearMax +M:System.Globalization.TaiwanCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.TaiwanCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.TaiwanCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.TaiwanCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.GetEra(System.DateTime) +M:System.Globalization.TaiwanCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.GetMonth(System.DateTime) +M:System.Globalization.TaiwanCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek) +M:System.Globalization.TaiwanCalendar.GetYear(System.DateTime) +M:System.Globalization.TaiwanCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.TaiwanCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.TaiwanCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.TaiwanLunisolarCalendar.#ctor +M:System.Globalization.TaiwanLunisolarCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.TaiwanLunisolarCalendar.get_Eras +M:System.Globalization.TaiwanLunisolarCalendar.get_MaxSupportedDateTime +M:System.Globalization.TaiwanLunisolarCalendar.get_MinSupportedDateTime +M:System.Globalization.TaiwanLunisolarCalendar.GetEra(System.DateTime) +M:System.Globalization.TextElementEnumerator.get_Current +M:System.Globalization.TextElementEnumerator.get_ElementIndex +M:System.Globalization.TextElementEnumerator.GetTextElement +M:System.Globalization.TextElementEnumerator.MoveNext +M:System.Globalization.TextElementEnumerator.Reset +M:System.Globalization.TextInfo.Clone +M:System.Globalization.TextInfo.Equals(System.Object) +M:System.Globalization.TextInfo.get_ANSICodePage +M:System.Globalization.TextInfo.get_CultureName +M:System.Globalization.TextInfo.get_EBCDICCodePage +M:System.Globalization.TextInfo.get_IsReadOnly +M:System.Globalization.TextInfo.get_IsRightToLeft +M:System.Globalization.TextInfo.get_LCID +M:System.Globalization.TextInfo.get_ListSeparator +M:System.Globalization.TextInfo.get_MacCodePage +M:System.Globalization.TextInfo.get_OEMCodePage +M:System.Globalization.TextInfo.GetHashCode +M:System.Globalization.TextInfo.ReadOnly(System.Globalization.TextInfo) +M:System.Globalization.TextInfo.set_ListSeparator(System.String) +M:System.Globalization.TextInfo.ToLower(System.Char) +M:System.Globalization.TextInfo.ToLower(System.String) +M:System.Globalization.TextInfo.ToString +M:System.Globalization.TextInfo.ToTitleCase(System.String) +M:System.Globalization.TextInfo.ToUpper(System.Char) +M:System.Globalization.TextInfo.ToUpper(System.String) +M:System.Globalization.ThaiBuddhistCalendar.#ctor +M:System.Globalization.ThaiBuddhistCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.get_AlgorithmType +M:System.Globalization.ThaiBuddhistCalendar.get_Eras +M:System.Globalization.ThaiBuddhistCalendar.get_MaxSupportedDateTime +M:System.Globalization.ThaiBuddhistCalendar.get_MinSupportedDateTime +M:System.Globalization.ThaiBuddhistCalendar.get_TwoDigitYearMax +M:System.Globalization.ThaiBuddhistCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.GetEra(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.GetMonth(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.GetWeekOfYear(System.DateTime,System.Globalization.CalendarWeekRule,System.DayOfWeek) +M:System.Globalization.ThaiBuddhistCalendar.GetYear(System.DateTime) +M:System.Globalization.ThaiBuddhistCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.ThaiBuddhistCalendar.ToFourDigitYear(System.Int32) +M:System.Globalization.UmAlQuraCalendar.#ctor +M:System.Globalization.UmAlQuraCalendar.AddMonths(System.DateTime,System.Int32) +M:System.Globalization.UmAlQuraCalendar.AddYears(System.DateTime,System.Int32) +M:System.Globalization.UmAlQuraCalendar.get_AlgorithmType +M:System.Globalization.UmAlQuraCalendar.get_DaysInYearBeforeMinSupportedYear +M:System.Globalization.UmAlQuraCalendar.get_Eras +M:System.Globalization.UmAlQuraCalendar.get_MaxSupportedDateTime +M:System.Globalization.UmAlQuraCalendar.get_MinSupportedDateTime +M:System.Globalization.UmAlQuraCalendar.get_TwoDigitYearMax +M:System.Globalization.UmAlQuraCalendar.GetDayOfMonth(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.GetDayOfWeek(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.GetDayOfYear(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.GetDaysInMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.GetDaysInYear(System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.GetEra(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.GetLeapMonth(System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.GetMonth(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.GetMonthsInYear(System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.GetYear(System.DateTime) +M:System.Globalization.UmAlQuraCalendar.IsLeapDay(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.IsLeapMonth(System.Int32,System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.IsLeapYear(System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.set_TwoDigitYearMax(System.Int32) +M:System.Globalization.UmAlQuraCalendar.ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Globalization.UmAlQuraCalendar.ToFourDigitYear(System.Int32) +M:System.GopherStyleUriParser.#ctor +M:System.Guid.#ctor(System.Byte[]) +M:System.Guid.#ctor(System.Int32,System.Int16,System.Int16,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte) +M:System.Guid.#ctor(System.Int32,System.Int16,System.Int16,System.Byte[]) +M:System.Guid.#ctor(System.ReadOnlySpan{System.Byte}) +M:System.Guid.#ctor(System.ReadOnlySpan{System.Byte},System.Boolean) +M:System.Guid.#ctor(System.String) +M:System.Guid.#ctor(System.UInt32,System.UInt16,System.UInt16,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte) +M:System.Guid.CompareTo(System.Guid) +M:System.Guid.CompareTo(System.Object) +M:System.Guid.Equals(System.Guid) +M:System.Guid.Equals(System.Object) +M:System.Guid.GetHashCode +M:System.Guid.NewGuid +M:System.Guid.op_Equality(System.Guid,System.Guid) +M:System.Guid.op_GreaterThan(System.Guid,System.Guid) +M:System.Guid.op_GreaterThanOrEqual(System.Guid,System.Guid) +M:System.Guid.op_Inequality(System.Guid,System.Guid) +M:System.Guid.op_LessThan(System.Guid,System.Guid) +M:System.Guid.op_LessThanOrEqual(System.Guid,System.Guid) +M:System.Guid.Parse(System.ReadOnlySpan{System.Char}) +M:System.Guid.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Guid.Parse(System.String) +M:System.Guid.Parse(System.String,System.IFormatProvider) +M:System.Guid.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.Guid.ParseExact(System.String,System.String) +M:System.Guid.ToByteArray +M:System.Guid.ToByteArray(System.Boolean) +M:System.Guid.ToString +M:System.Guid.ToString(System.String) +M:System.Guid.ToString(System.String,System.IFormatProvider) +M:System.Guid.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char}) +M:System.Guid.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char}) +M:System.Guid.TryParse(System.ReadOnlySpan{System.Char},System.Guid@) +M:System.Guid.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Guid@) +M:System.Guid.TryParse(System.String,System.Guid@) +M:System.Guid.TryParse(System.String,System.IFormatProvider,System.Guid@) +M:System.Guid.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Guid@) +M:System.Guid.TryParseExact(System.String,System.String,System.Guid@) +M:System.Guid.TryWriteBytes(System.Span{System.Byte}) +M:System.Guid.TryWriteBytes(System.Span{System.Byte},System.Boolean,System.Int32@) +M:System.Half.Abs(System.Half) +M:System.Half.Acos(System.Half) +M:System.Half.Acosh(System.Half) +M:System.Half.AcosPi(System.Half) +M:System.Half.Asin(System.Half) +M:System.Half.Asinh(System.Half) +M:System.Half.AsinPi(System.Half) +M:System.Half.Atan(System.Half) +M:System.Half.Atan2(System.Half,System.Half) +M:System.Half.Atan2Pi(System.Half,System.Half) +M:System.Half.Atanh(System.Half) +M:System.Half.AtanPi(System.Half) +M:System.Half.BitDecrement(System.Half) +M:System.Half.BitIncrement(System.Half) +M:System.Half.Cbrt(System.Half) +M:System.Half.Ceiling(System.Half) +M:System.Half.Clamp(System.Half,System.Half,System.Half) +M:System.Half.CompareTo(System.Half) +M:System.Half.CompareTo(System.Object) +M:System.Half.CopySign(System.Half,System.Half) +M:System.Half.Cos(System.Half) +M:System.Half.Cosh(System.Half) +M:System.Half.CosPi(System.Half) +M:System.Half.CreateChecked``1(``0) +M:System.Half.CreateSaturating``1(``0) +M:System.Half.CreateTruncating``1(``0) +M:System.Half.DegreesToRadians(System.Half) +M:System.Half.Equals(System.Half) +M:System.Half.Equals(System.Object) +M:System.Half.Exp(System.Half) +M:System.Half.Exp10(System.Half) +M:System.Half.Exp10M1(System.Half) +M:System.Half.Exp2(System.Half) +M:System.Half.Exp2M1(System.Half) +M:System.Half.ExpM1(System.Half) +M:System.Half.Floor(System.Half) +M:System.Half.FusedMultiplyAdd(System.Half,System.Half,System.Half) +M:System.Half.get_E +M:System.Half.get_Epsilon +M:System.Half.get_MaxValue +M:System.Half.get_MinValue +M:System.Half.get_MultiplicativeIdentity +M:System.Half.get_NaN +M:System.Half.get_NegativeInfinity +M:System.Half.get_NegativeOne +M:System.Half.get_NegativeZero +M:System.Half.get_One +M:System.Half.get_Pi +M:System.Half.get_PositiveInfinity +M:System.Half.get_Tau +M:System.Half.get_Zero +M:System.Half.GetHashCode +M:System.Half.Hypot(System.Half,System.Half) +M:System.Half.Ieee754Remainder(System.Half,System.Half) +M:System.Half.ILogB(System.Half) +M:System.Half.IsEvenInteger(System.Half) +M:System.Half.IsFinite(System.Half) +M:System.Half.IsInfinity(System.Half) +M:System.Half.IsInteger(System.Half) +M:System.Half.IsNaN(System.Half) +M:System.Half.IsNegative(System.Half) +M:System.Half.IsNegativeInfinity(System.Half) +M:System.Half.IsNormal(System.Half) +M:System.Half.IsOddInteger(System.Half) +M:System.Half.IsPositive(System.Half) +M:System.Half.IsPositiveInfinity(System.Half) +M:System.Half.IsPow2(System.Half) +M:System.Half.IsRealNumber(System.Half) +M:System.Half.IsSubnormal(System.Half) +M:System.Half.Lerp(System.Half,System.Half,System.Half) +M:System.Half.Log(System.Half) +M:System.Half.Log(System.Half,System.Half) +M:System.Half.Log10(System.Half) +M:System.Half.Log10P1(System.Half) +M:System.Half.Log2(System.Half) +M:System.Half.Log2P1(System.Half) +M:System.Half.LogP1(System.Half) +M:System.Half.Max(System.Half,System.Half) +M:System.Half.MaxMagnitude(System.Half,System.Half) +M:System.Half.MaxMagnitudeNumber(System.Half,System.Half) +M:System.Half.MaxNumber(System.Half,System.Half) +M:System.Half.Min(System.Half,System.Half) +M:System.Half.MinMagnitude(System.Half,System.Half) +M:System.Half.MinMagnitudeNumber(System.Half,System.Half) +M:System.Half.MinNumber(System.Half,System.Half) +M:System.Half.op_Addition(System.Half,System.Half) +M:System.Half.op_CheckedExplicit(System.Half)~System.Byte +M:System.Half.op_CheckedExplicit(System.Half)~System.Char +M:System.Half.op_CheckedExplicit(System.Half)~System.Int128 +M:System.Half.op_CheckedExplicit(System.Half)~System.Int16 +M:System.Half.op_CheckedExplicit(System.Half)~System.Int32 +M:System.Half.op_CheckedExplicit(System.Half)~System.Int64 +M:System.Half.op_CheckedExplicit(System.Half)~System.IntPtr +M:System.Half.op_CheckedExplicit(System.Half)~System.SByte +M:System.Half.op_CheckedExplicit(System.Half)~System.UInt128 +M:System.Half.op_CheckedExplicit(System.Half)~System.UInt16 +M:System.Half.op_CheckedExplicit(System.Half)~System.UInt32 +M:System.Half.op_CheckedExplicit(System.Half)~System.UInt64 +M:System.Half.op_CheckedExplicit(System.Half)~System.UIntPtr +M:System.Half.op_Decrement(System.Half) +M:System.Half.op_Division(System.Half,System.Half) +M:System.Half.op_Equality(System.Half,System.Half) +M:System.Half.op_Explicit(System.Char)~System.Half +M:System.Half.op_Explicit(System.Decimal)~System.Half +M:System.Half.op_Explicit(System.Double)~System.Half +M:System.Half.op_Explicit(System.Half)~System.Byte +M:System.Half.op_Explicit(System.Half)~System.Char +M:System.Half.op_Explicit(System.Half)~System.Decimal +M:System.Half.op_Explicit(System.Half)~System.Double +M:System.Half.op_Explicit(System.Half)~System.Int128 +M:System.Half.op_Explicit(System.Half)~System.Int16 +M:System.Half.op_Explicit(System.Half)~System.Int32 +M:System.Half.op_Explicit(System.Half)~System.Int64 +M:System.Half.op_Explicit(System.Half)~System.IntPtr +M:System.Half.op_Explicit(System.Half)~System.SByte +M:System.Half.op_Explicit(System.Half)~System.Single +M:System.Half.op_Explicit(System.Half)~System.UInt128 +M:System.Half.op_Explicit(System.Half)~System.UInt16 +M:System.Half.op_Explicit(System.Half)~System.UInt32 +M:System.Half.op_Explicit(System.Half)~System.UInt64 +M:System.Half.op_Explicit(System.Half)~System.UIntPtr +M:System.Half.op_Explicit(System.Int16)~System.Half +M:System.Half.op_Explicit(System.Int32)~System.Half +M:System.Half.op_Explicit(System.Int64)~System.Half +M:System.Half.op_Explicit(System.IntPtr)~System.Half +M:System.Half.op_Explicit(System.Single)~System.Half +M:System.Half.op_Explicit(System.UInt16)~System.Half +M:System.Half.op_Explicit(System.UInt32)~System.Half +M:System.Half.op_Explicit(System.UInt64)~System.Half +M:System.Half.op_Explicit(System.UIntPtr)~System.Half +M:System.Half.op_GreaterThan(System.Half,System.Half) +M:System.Half.op_GreaterThanOrEqual(System.Half,System.Half) +M:System.Half.op_Implicit(System.Byte)~System.Half +M:System.Half.op_Implicit(System.SByte)~System.Half +M:System.Half.op_Increment(System.Half) +M:System.Half.op_Inequality(System.Half,System.Half) +M:System.Half.op_LessThan(System.Half,System.Half) +M:System.Half.op_LessThanOrEqual(System.Half,System.Half) +M:System.Half.op_Modulus(System.Half,System.Half) +M:System.Half.op_Multiply(System.Half,System.Half) +M:System.Half.op_Subtraction(System.Half,System.Half) +M:System.Half.op_UnaryNegation(System.Half) +M:System.Half.op_UnaryPlus(System.Half) +M:System.Half.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Half.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Half.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Half.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Half.Parse(System.String) +M:System.Half.Parse(System.String,System.Globalization.NumberStyles) +M:System.Half.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Half.Parse(System.String,System.IFormatProvider) +M:System.Half.Pow(System.Half,System.Half) +M:System.Half.RadiansToDegrees(System.Half) +M:System.Half.ReciprocalEstimate(System.Half) +M:System.Half.ReciprocalSqrtEstimate(System.Half) +M:System.Half.RootN(System.Half,System.Int32) +M:System.Half.Round(System.Half) +M:System.Half.Round(System.Half,System.Int32) +M:System.Half.Round(System.Half,System.Int32,System.MidpointRounding) +M:System.Half.Round(System.Half,System.MidpointRounding) +M:System.Half.ScaleB(System.Half,System.Int32) +M:System.Half.Sign(System.Half) +M:System.Half.Sin(System.Half) +M:System.Half.SinCos(System.Half) +M:System.Half.SinCosPi(System.Half) +M:System.Half.Sinh(System.Half) +M:System.Half.SinPi(System.Half) +M:System.Half.Sqrt(System.Half) +M:System.Half.Tan(System.Half) +M:System.Half.Tanh(System.Half) +M:System.Half.TanPi(System.Half) +M:System.Half.ToString +M:System.Half.ToString(System.IFormatProvider) +M:System.Half.ToString(System.String) +M:System.Half.ToString(System.String,System.IFormatProvider) +M:System.Half.Truncate(System.Half) +M:System.Half.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Half.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Half.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Half@) +M:System.Half.TryParse(System.ReadOnlySpan{System.Byte},System.Half@) +M:System.Half.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Half@) +M:System.Half.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Half@) +M:System.Half.TryParse(System.ReadOnlySpan{System.Char},System.Half@) +M:System.Half.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Half@) +M:System.Half.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Half@) +M:System.Half.TryParse(System.String,System.Half@) +M:System.Half.TryParse(System.String,System.IFormatProvider,System.Half@) +M:System.HashCode.Add``1(``0) +M:System.HashCode.Add``1(``0,System.Collections.Generic.IEqualityComparer{``0}) +M:System.HashCode.AddBytes(System.ReadOnlySpan{System.Byte}) +M:System.HashCode.Combine``1(``0) +M:System.HashCode.Combine``2(``0,``1) +M:System.HashCode.Combine``3(``0,``1,``2) +M:System.HashCode.Combine``4(``0,``1,``2,``3) +M:System.HashCode.Combine``5(``0,``1,``2,``3,``4) +M:System.HashCode.Combine``6(``0,``1,``2,``3,``4,``5) +M:System.HashCode.Combine``7(``0,``1,``2,``3,``4,``5,``6) +M:System.HashCode.Combine``8(``0,``1,``2,``3,``4,``5,``6,``7) +M:System.HashCode.Equals(System.Object) +M:System.HashCode.GetHashCode +M:System.HashCode.ToHashCode +M:System.HttpStyleUriParser.#ctor +M:System.IAsyncDisposable.DisposeAsync +M:System.IAsyncResult.get_AsyncState +M:System.IAsyncResult.get_AsyncWaitHandle +M:System.IAsyncResult.get_CompletedSynchronously +M:System.IAsyncResult.get_IsCompleted +M:System.ICloneable.Clone +M:System.IComparable.CompareTo(System.Object) +M:System.IComparable`1.CompareTo(`0) +M:System.IConvertible.GetTypeCode +M:System.IConvertible.ToBoolean(System.IFormatProvider) +M:System.IConvertible.ToByte(System.IFormatProvider) +M:System.IConvertible.ToChar(System.IFormatProvider) +M:System.IConvertible.ToDateTime(System.IFormatProvider) +M:System.IConvertible.ToDecimal(System.IFormatProvider) +M:System.IConvertible.ToDouble(System.IFormatProvider) +M:System.IConvertible.ToInt16(System.IFormatProvider) +M:System.IConvertible.ToInt32(System.IFormatProvider) +M:System.IConvertible.ToInt64(System.IFormatProvider) +M:System.IConvertible.ToSByte(System.IFormatProvider) +M:System.IConvertible.ToSingle(System.IFormatProvider) +M:System.IConvertible.ToString(System.IFormatProvider) +M:System.IConvertible.ToType(System.Type,System.IFormatProvider) +M:System.IConvertible.ToUInt16(System.IFormatProvider) +M:System.IConvertible.ToUInt32(System.IFormatProvider) +M:System.IConvertible.ToUInt64(System.IFormatProvider) +M:System.ICustomFormatter.Format(System.String,System.Object,System.IFormatProvider) +M:System.IDisposable.Dispose +M:System.IEquatable`1.Equals(`0) +M:System.IFormatProvider.GetFormat(System.Type) +M:System.IFormattable.ToString(System.String,System.IFormatProvider) +M:System.Index.#ctor(System.Int32,System.Boolean) +M:System.Index.Equals(System.Index) +M:System.Index.Equals(System.Object) +M:System.Index.FromEnd(System.Int32) +M:System.Index.FromStart(System.Int32) +M:System.Index.get_End +M:System.Index.get_IsFromEnd +M:System.Index.get_Start +M:System.Index.get_Value +M:System.Index.GetHashCode +M:System.Index.GetOffset(System.Int32) +M:System.Index.op_Implicit(System.Int32)~System.Index +M:System.Index.ToString +M:System.IndexOutOfRangeException.#ctor +M:System.IndexOutOfRangeException.#ctor(System.String) +M:System.IndexOutOfRangeException.#ctor(System.String,System.Exception) +M:System.InsufficientExecutionStackException.#ctor +M:System.InsufficientExecutionStackException.#ctor(System.String) +M:System.InsufficientExecutionStackException.#ctor(System.String,System.Exception) +M:System.InsufficientMemoryException.#ctor +M:System.InsufficientMemoryException.#ctor(System.String) +M:System.InsufficientMemoryException.#ctor(System.String,System.Exception) +M:System.Int128.#ctor(System.UInt64,System.UInt64) +M:System.Int128.Abs(System.Int128) +M:System.Int128.Clamp(System.Int128,System.Int128,System.Int128) +M:System.Int128.CompareTo(System.Int128) +M:System.Int128.CompareTo(System.Object) +M:System.Int128.CopySign(System.Int128,System.Int128) +M:System.Int128.CreateChecked``1(``0) +M:System.Int128.CreateSaturating``1(``0) +M:System.Int128.CreateTruncating``1(``0) +M:System.Int128.DivRem(System.Int128,System.Int128) +M:System.Int128.Equals(System.Int128) +M:System.Int128.Equals(System.Object) +M:System.Int128.get_MaxValue +M:System.Int128.get_MinValue +M:System.Int128.get_NegativeOne +M:System.Int128.get_One +M:System.Int128.get_Zero +M:System.Int128.GetHashCode +M:System.Int128.IsEvenInteger(System.Int128) +M:System.Int128.IsNegative(System.Int128) +M:System.Int128.IsOddInteger(System.Int128) +M:System.Int128.IsPositive(System.Int128) +M:System.Int128.IsPow2(System.Int128) +M:System.Int128.LeadingZeroCount(System.Int128) +M:System.Int128.Log2(System.Int128) +M:System.Int128.Max(System.Int128,System.Int128) +M:System.Int128.MaxMagnitude(System.Int128,System.Int128) +M:System.Int128.Min(System.Int128,System.Int128) +M:System.Int128.MinMagnitude(System.Int128,System.Int128) +M:System.Int128.op_Addition(System.Int128,System.Int128) +M:System.Int128.op_BitwiseAnd(System.Int128,System.Int128) +M:System.Int128.op_BitwiseOr(System.Int128,System.Int128) +M:System.Int128.op_CheckedAddition(System.Int128,System.Int128) +M:System.Int128.op_CheckedDecrement(System.Int128) +M:System.Int128.op_CheckedDivision(System.Int128,System.Int128) +M:System.Int128.op_CheckedExplicit(System.Double)~System.Int128 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.Byte +M:System.Int128.op_CheckedExplicit(System.Int128)~System.Char +M:System.Int128.op_CheckedExplicit(System.Int128)~System.Int16 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.Int32 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.Int64 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.IntPtr +M:System.Int128.op_CheckedExplicit(System.Int128)~System.SByte +M:System.Int128.op_CheckedExplicit(System.Int128)~System.UInt128 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.UInt16 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.UInt32 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.UInt64 +M:System.Int128.op_CheckedExplicit(System.Int128)~System.UIntPtr +M:System.Int128.op_CheckedExplicit(System.Single)~System.Int128 +M:System.Int128.op_CheckedIncrement(System.Int128) +M:System.Int128.op_CheckedMultiply(System.Int128,System.Int128) +M:System.Int128.op_CheckedSubtraction(System.Int128,System.Int128) +M:System.Int128.op_CheckedUnaryNegation(System.Int128) +M:System.Int128.op_Decrement(System.Int128) +M:System.Int128.op_Division(System.Int128,System.Int128) +M:System.Int128.op_Equality(System.Int128,System.Int128) +M:System.Int128.op_ExclusiveOr(System.Int128,System.Int128) +M:System.Int128.op_Explicit(System.Decimal)~System.Int128 +M:System.Int128.op_Explicit(System.Double)~System.Int128 +M:System.Int128.op_Explicit(System.Int128)~System.Byte +M:System.Int128.op_Explicit(System.Int128)~System.Char +M:System.Int128.op_Explicit(System.Int128)~System.Decimal +M:System.Int128.op_Explicit(System.Int128)~System.Double +M:System.Int128.op_Explicit(System.Int128)~System.Half +M:System.Int128.op_Explicit(System.Int128)~System.Int16 +M:System.Int128.op_Explicit(System.Int128)~System.Int32 +M:System.Int128.op_Explicit(System.Int128)~System.Int64 +M:System.Int128.op_Explicit(System.Int128)~System.IntPtr +M:System.Int128.op_Explicit(System.Int128)~System.SByte +M:System.Int128.op_Explicit(System.Int128)~System.Single +M:System.Int128.op_Explicit(System.Int128)~System.UInt128 +M:System.Int128.op_Explicit(System.Int128)~System.UInt16 +M:System.Int128.op_Explicit(System.Int128)~System.UInt32 +M:System.Int128.op_Explicit(System.Int128)~System.UInt64 +M:System.Int128.op_Explicit(System.Int128)~System.UIntPtr +M:System.Int128.op_Explicit(System.Single)~System.Int128 +M:System.Int128.op_GreaterThan(System.Int128,System.Int128) +M:System.Int128.op_GreaterThanOrEqual(System.Int128,System.Int128) +M:System.Int128.op_Implicit(System.Byte)~System.Int128 +M:System.Int128.op_Implicit(System.Char)~System.Int128 +M:System.Int128.op_Implicit(System.Int16)~System.Int128 +M:System.Int128.op_Implicit(System.Int32)~System.Int128 +M:System.Int128.op_Implicit(System.Int64)~System.Int128 +M:System.Int128.op_Implicit(System.IntPtr)~System.Int128 +M:System.Int128.op_Implicit(System.SByte)~System.Int128 +M:System.Int128.op_Implicit(System.UInt16)~System.Int128 +M:System.Int128.op_Implicit(System.UInt32)~System.Int128 +M:System.Int128.op_Implicit(System.UInt64)~System.Int128 +M:System.Int128.op_Implicit(System.UIntPtr)~System.Int128 +M:System.Int128.op_Increment(System.Int128) +M:System.Int128.op_Inequality(System.Int128,System.Int128) +M:System.Int128.op_LeftShift(System.Int128,System.Int32) +M:System.Int128.op_LessThan(System.Int128,System.Int128) +M:System.Int128.op_LessThanOrEqual(System.Int128,System.Int128) +M:System.Int128.op_Modulus(System.Int128,System.Int128) +M:System.Int128.op_Multiply(System.Int128,System.Int128) +M:System.Int128.op_OnesComplement(System.Int128) +M:System.Int128.op_RightShift(System.Int128,System.Int32) +M:System.Int128.op_Subtraction(System.Int128,System.Int128) +M:System.Int128.op_UnaryNegation(System.Int128) +M:System.Int128.op_UnaryPlus(System.Int128) +M:System.Int128.op_UnsignedRightShift(System.Int128,System.Int32) +M:System.Int128.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int128.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Int128.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int128.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int128.Parse(System.String) +M:System.Int128.Parse(System.String,System.Globalization.NumberStyles) +M:System.Int128.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int128.Parse(System.String,System.IFormatProvider) +M:System.Int128.PopCount(System.Int128) +M:System.Int128.RotateLeft(System.Int128,System.Int32) +M:System.Int128.RotateRight(System.Int128,System.Int32) +M:System.Int128.Sign(System.Int128) +M:System.Int128.ToString +M:System.Int128.ToString(System.IFormatProvider) +M:System.Int128.ToString(System.String) +M:System.Int128.ToString(System.String,System.IFormatProvider) +M:System.Int128.TrailingZeroCount(System.Int128) +M:System.Int128.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int128.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Byte},System.Int128@) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.ReadOnlySpan{System.Char},System.Int128@) +M:System.Int128.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.String,System.IFormatProvider,System.Int128@) +M:System.Int128.TryParse(System.String,System.Int128@) +M:System.Int16.Abs(System.Int16) +M:System.Int16.Clamp(System.Int16,System.Int16,System.Int16) +M:System.Int16.CompareTo(System.Int16) +M:System.Int16.CompareTo(System.Object) +M:System.Int16.CopySign(System.Int16,System.Int16) +M:System.Int16.CreateChecked``1(``0) +M:System.Int16.CreateSaturating``1(``0) +M:System.Int16.CreateTruncating``1(``0) +M:System.Int16.DivRem(System.Int16,System.Int16) +M:System.Int16.Equals(System.Int16) +M:System.Int16.Equals(System.Object) +M:System.Int16.GetHashCode +M:System.Int16.GetTypeCode +M:System.Int16.IsEvenInteger(System.Int16) +M:System.Int16.IsNegative(System.Int16) +M:System.Int16.IsOddInteger(System.Int16) +M:System.Int16.IsPositive(System.Int16) +M:System.Int16.IsPow2(System.Int16) +M:System.Int16.LeadingZeroCount(System.Int16) +M:System.Int16.Log2(System.Int16) +M:System.Int16.Max(System.Int16,System.Int16) +M:System.Int16.MaxMagnitude(System.Int16,System.Int16) +M:System.Int16.Min(System.Int16,System.Int16) +M:System.Int16.MinMagnitude(System.Int16,System.Int16) +M:System.Int16.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int16.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Int16.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int16.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int16.Parse(System.String) +M:System.Int16.Parse(System.String,System.Globalization.NumberStyles) +M:System.Int16.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int16.Parse(System.String,System.IFormatProvider) +M:System.Int16.PopCount(System.Int16) +M:System.Int16.RotateLeft(System.Int16,System.Int32) +M:System.Int16.RotateRight(System.Int16,System.Int32) +M:System.Int16.Sign(System.Int16) +M:System.Int16.ToString +M:System.Int16.ToString(System.IFormatProvider) +M:System.Int16.ToString(System.String) +M:System.Int16.ToString(System.String,System.IFormatProvider) +M:System.Int16.TrailingZeroCount(System.Int16) +M:System.Int16.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int16.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Byte},System.Int16@) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.ReadOnlySpan{System.Char},System.Int16@) +M:System.Int16.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.String,System.IFormatProvider,System.Int16@) +M:System.Int16.TryParse(System.String,System.Int16@) +M:System.Int32.Abs(System.Int32) +M:System.Int32.Clamp(System.Int32,System.Int32,System.Int32) +M:System.Int32.CompareTo(System.Int32) +M:System.Int32.CompareTo(System.Object) +M:System.Int32.CopySign(System.Int32,System.Int32) +M:System.Int32.CreateChecked``1(``0) +M:System.Int32.CreateSaturating``1(``0) +M:System.Int32.CreateTruncating``1(``0) +M:System.Int32.DivRem(System.Int32,System.Int32) +M:System.Int32.Equals(System.Int32) +M:System.Int32.Equals(System.Object) +M:System.Int32.GetHashCode +M:System.Int32.GetTypeCode +M:System.Int32.IsEvenInteger(System.Int32) +M:System.Int32.IsNegative(System.Int32) +M:System.Int32.IsOddInteger(System.Int32) +M:System.Int32.IsPositive(System.Int32) +M:System.Int32.IsPow2(System.Int32) +M:System.Int32.LeadingZeroCount(System.Int32) +M:System.Int32.Log2(System.Int32) +M:System.Int32.Max(System.Int32,System.Int32) +M:System.Int32.MaxMagnitude(System.Int32,System.Int32) +M:System.Int32.Min(System.Int32,System.Int32) +M:System.Int32.MinMagnitude(System.Int32,System.Int32) +M:System.Int32.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int32.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Int32.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int32.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int32.Parse(System.String) +M:System.Int32.Parse(System.String,System.Globalization.NumberStyles) +M:System.Int32.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int32.Parse(System.String,System.IFormatProvider) +M:System.Int32.PopCount(System.Int32) +M:System.Int32.RotateLeft(System.Int32,System.Int32) +M:System.Int32.RotateRight(System.Int32,System.Int32) +M:System.Int32.Sign(System.Int32) +M:System.Int32.ToString +M:System.Int32.ToString(System.IFormatProvider) +M:System.Int32.ToString(System.String) +M:System.Int32.ToString(System.String,System.IFormatProvider) +M:System.Int32.TrailingZeroCount(System.Int32) +M:System.Int32.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int32.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Byte},System.Int32@) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.ReadOnlySpan{System.Char},System.Int32@) +M:System.Int32.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.String,System.IFormatProvider,System.Int32@) +M:System.Int32.TryParse(System.String,System.Int32@) +M:System.Int64.Abs(System.Int64) +M:System.Int64.Clamp(System.Int64,System.Int64,System.Int64) +M:System.Int64.CompareTo(System.Int64) +M:System.Int64.CompareTo(System.Object) +M:System.Int64.CopySign(System.Int64,System.Int64) +M:System.Int64.CreateChecked``1(``0) +M:System.Int64.CreateSaturating``1(``0) +M:System.Int64.CreateTruncating``1(``0) +M:System.Int64.DivRem(System.Int64,System.Int64) +M:System.Int64.Equals(System.Int64) +M:System.Int64.Equals(System.Object) +M:System.Int64.GetHashCode +M:System.Int64.GetTypeCode +M:System.Int64.IsEvenInteger(System.Int64) +M:System.Int64.IsNegative(System.Int64) +M:System.Int64.IsOddInteger(System.Int64) +M:System.Int64.IsPositive(System.Int64) +M:System.Int64.IsPow2(System.Int64) +M:System.Int64.LeadingZeroCount(System.Int64) +M:System.Int64.Log2(System.Int64) +M:System.Int64.Max(System.Int64,System.Int64) +M:System.Int64.MaxMagnitude(System.Int64,System.Int64) +M:System.Int64.Min(System.Int64,System.Int64) +M:System.Int64.MinMagnitude(System.Int64,System.Int64) +M:System.Int64.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int64.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Int64.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int64.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int64.Parse(System.String) +M:System.Int64.Parse(System.String,System.Globalization.NumberStyles) +M:System.Int64.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Int64.Parse(System.String,System.IFormatProvider) +M:System.Int64.PopCount(System.Int64) +M:System.Int64.RotateLeft(System.Int64,System.Int32) +M:System.Int64.RotateRight(System.Int64,System.Int32) +M:System.Int64.Sign(System.Int64) +M:System.Int64.ToString +M:System.Int64.ToString(System.IFormatProvider) +M:System.Int64.ToString(System.String) +M:System.Int64.ToString(System.String,System.IFormatProvider) +M:System.Int64.TrailingZeroCount(System.Int64) +M:System.Int64.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int64.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Byte},System.Int64@) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.ReadOnlySpan{System.Char},System.Int64@) +M:System.Int64.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.String,System.IFormatProvider,System.Int64@) +M:System.Int64.TryParse(System.String,System.Int64@) +M:System.IntPtr.#ctor(System.Int32) +M:System.IntPtr.#ctor(System.Int64) +M:System.IntPtr.#ctor(System.Void*) +M:System.IntPtr.Abs(System.IntPtr) +M:System.IntPtr.Add(System.IntPtr,System.Int32) +M:System.IntPtr.Clamp(System.IntPtr,System.IntPtr,System.IntPtr) +M:System.IntPtr.CompareTo(System.IntPtr) +M:System.IntPtr.CompareTo(System.Object) +M:System.IntPtr.CopySign(System.IntPtr,System.IntPtr) +M:System.IntPtr.CreateChecked``1(``0) +M:System.IntPtr.CreateSaturating``1(``0) +M:System.IntPtr.CreateTruncating``1(``0) +M:System.IntPtr.DivRem(System.IntPtr,System.IntPtr) +M:System.IntPtr.Equals(System.IntPtr) +M:System.IntPtr.Equals(System.Object) +M:System.IntPtr.get_MaxValue +M:System.IntPtr.get_MinValue +M:System.IntPtr.get_Size +M:System.IntPtr.GetHashCode +M:System.IntPtr.IsEvenInteger(System.IntPtr) +M:System.IntPtr.IsNegative(System.IntPtr) +M:System.IntPtr.IsOddInteger(System.IntPtr) +M:System.IntPtr.IsPositive(System.IntPtr) +M:System.IntPtr.IsPow2(System.IntPtr) +M:System.IntPtr.LeadingZeroCount(System.IntPtr) +M:System.IntPtr.Log2(System.IntPtr) +M:System.IntPtr.Max(System.IntPtr,System.IntPtr) +M:System.IntPtr.MaxMagnitude(System.IntPtr,System.IntPtr) +M:System.IntPtr.Min(System.IntPtr,System.IntPtr) +M:System.IntPtr.MinMagnitude(System.IntPtr,System.IntPtr) +M:System.IntPtr.op_Addition(System.IntPtr,System.Int32) +M:System.IntPtr.op_Equality(System.IntPtr,System.IntPtr) +M:System.IntPtr.op_Explicit(System.Int32)~System.IntPtr +M:System.IntPtr.op_Explicit(System.Int64)~System.IntPtr +M:System.IntPtr.op_Explicit(System.IntPtr)~System.Int32 +M:System.IntPtr.op_Explicit(System.IntPtr)~System.Int64 +M:System.IntPtr.op_Explicit(System.IntPtr)~System.Void* +M:System.IntPtr.op_Explicit(System.Void*)~System.IntPtr +M:System.IntPtr.op_Inequality(System.IntPtr,System.IntPtr) +M:System.IntPtr.op_Subtraction(System.IntPtr,System.Int32) +M:System.IntPtr.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.IntPtr.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.IntPtr.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.IntPtr.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.IntPtr.Parse(System.String) +M:System.IntPtr.Parse(System.String,System.Globalization.NumberStyles) +M:System.IntPtr.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.IntPtr.Parse(System.String,System.IFormatProvider) +M:System.IntPtr.PopCount(System.IntPtr) +M:System.IntPtr.RotateLeft(System.IntPtr,System.Int32) +M:System.IntPtr.RotateRight(System.IntPtr,System.Int32) +M:System.IntPtr.Sign(System.IntPtr) +M:System.IntPtr.Subtract(System.IntPtr,System.Int32) +M:System.IntPtr.ToInt32 +M:System.IntPtr.ToInt64 +M:System.IntPtr.ToPointer +M:System.IntPtr.ToString +M:System.IntPtr.ToString(System.IFormatProvider) +M:System.IntPtr.ToString(System.String) +M:System.IntPtr.ToString(System.String,System.IFormatProvider) +M:System.IntPtr.TrailingZeroCount(System.IntPtr) +M:System.IntPtr.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.IntPtr.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.IntPtr.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.IntPtr@) +M:System.IntPtr.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.IntPtr@) +M:System.IntPtr.TryParse(System.ReadOnlySpan{System.Byte},System.IntPtr@) +M:System.IntPtr.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.IntPtr@) +M:System.IntPtr.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.IntPtr@) +M:System.IntPtr.TryParse(System.ReadOnlySpan{System.Char},System.IntPtr@) +M:System.IntPtr.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.IntPtr@) +M:System.IntPtr.TryParse(System.String,System.IFormatProvider,System.IntPtr@) +M:System.IntPtr.TryParse(System.String,System.IntPtr@) +M:System.InvalidCastException.#ctor +M:System.InvalidCastException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.InvalidCastException.#ctor(System.String) +M:System.InvalidCastException.#ctor(System.String,System.Exception) +M:System.InvalidCastException.#ctor(System.String,System.Int32) +M:System.InvalidOperationException.#ctor +M:System.InvalidOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.InvalidOperationException.#ctor(System.String) +M:System.InvalidOperationException.#ctor(System.String,System.Exception) +M:System.InvalidProgramException.#ctor +M:System.InvalidProgramException.#ctor(System.String) +M:System.InvalidProgramException.#ctor(System.String,System.Exception) +M:System.InvalidTimeZoneException.#ctor +M:System.InvalidTimeZoneException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.InvalidTimeZoneException.#ctor(System.String) +M:System.InvalidTimeZoneException.#ctor(System.String,System.Exception) +M:System.IObservable`1.Subscribe(System.IObserver{`0}) +M:System.IObserver`1.OnCompleted +M:System.IObserver`1.OnError(System.Exception) +M:System.IObserver`1.OnNext(`0) +M:System.IParsable`1.Parse(System.String,System.IFormatProvider) +M:System.IParsable`1.TryParse(System.String,System.IFormatProvider,`0@) +M:System.IProgress`1.Report(`0) +M:System.ISpanFormattable.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.ISpanParsable`1.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.ISpanParsable`1.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,`0@) +M:System.IUtf8SpanFormattable.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.IUtf8SpanParsable`1.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.IUtf8SpanParsable`1.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,`0@) +M:System.Lazy`1.#ctor +M:System.Lazy`1.#ctor(`0) +M:System.Lazy`1.#ctor(System.Boolean) +M:System.Lazy`1.#ctor(System.Func{`0}) +M:System.Lazy`1.#ctor(System.Func{`0},System.Boolean) +M:System.Lazy`1.#ctor(System.Func{`0},System.Threading.LazyThreadSafetyMode) +M:System.Lazy`1.#ctor(System.Threading.LazyThreadSafetyMode) +M:System.Lazy`1.get_IsValueCreated +M:System.Lazy`1.get_Value +M:System.Lazy`1.ToString +M:System.Lazy`2.#ctor(`1) +M:System.Lazy`2.#ctor(`1,System.Boolean) +M:System.Lazy`2.#ctor(`1,System.Threading.LazyThreadSafetyMode) +M:System.Lazy`2.#ctor(System.Func{`0},`1) +M:System.Lazy`2.#ctor(System.Func{`0},`1,System.Boolean) +M:System.Lazy`2.#ctor(System.Func{`0},`1,System.Threading.LazyThreadSafetyMode) +M:System.Lazy`2.get_Metadata +M:System.LdapStyleUriParser.#ctor +M:System.Math.Abs(System.Decimal) +M:System.Math.Abs(System.Double) +M:System.Math.Abs(System.Int16) +M:System.Math.Abs(System.Int32) +M:System.Math.Abs(System.Int64) +M:System.Math.Abs(System.IntPtr) +M:System.Math.Abs(System.SByte) +M:System.Math.Abs(System.Single) +M:System.Math.Acos(System.Double) +M:System.Math.Acosh(System.Double) +M:System.Math.Asin(System.Double) +M:System.Math.Asinh(System.Double) +M:System.Math.Atan(System.Double) +M:System.Math.Atan2(System.Double,System.Double) +M:System.Math.Atanh(System.Double) +M:System.Math.BigMul(System.Int32,System.Int32) +M:System.Math.BigMul(System.Int64,System.Int64,System.Int64@) +M:System.Math.BigMul(System.UInt64,System.UInt64,System.UInt64@) +M:System.Math.BitDecrement(System.Double) +M:System.Math.BitIncrement(System.Double) +M:System.Math.Cbrt(System.Double) +M:System.Math.Ceiling(System.Decimal) +M:System.Math.Ceiling(System.Double) +M:System.Math.Clamp(System.Byte,System.Byte,System.Byte) +M:System.Math.Clamp(System.Decimal,System.Decimal,System.Decimal) +M:System.Math.Clamp(System.Double,System.Double,System.Double) +M:System.Math.Clamp(System.Int16,System.Int16,System.Int16) +M:System.Math.Clamp(System.Int32,System.Int32,System.Int32) +M:System.Math.Clamp(System.Int64,System.Int64,System.Int64) +M:System.Math.Clamp(System.IntPtr,System.IntPtr,System.IntPtr) +M:System.Math.Clamp(System.SByte,System.SByte,System.SByte) +M:System.Math.Clamp(System.Single,System.Single,System.Single) +M:System.Math.Clamp(System.UInt16,System.UInt16,System.UInt16) +M:System.Math.Clamp(System.UInt32,System.UInt32,System.UInt32) +M:System.Math.Clamp(System.UInt64,System.UInt64,System.UInt64) +M:System.Math.Clamp(System.UIntPtr,System.UIntPtr,System.UIntPtr) +M:System.Math.CopySign(System.Double,System.Double) +M:System.Math.Cos(System.Double) +M:System.Math.Cosh(System.Double) +M:System.Math.DivRem(System.Byte,System.Byte) +M:System.Math.DivRem(System.Int16,System.Int16) +M:System.Math.DivRem(System.Int32,System.Int32) +M:System.Math.DivRem(System.Int32,System.Int32,System.Int32@) +M:System.Math.DivRem(System.Int64,System.Int64) +M:System.Math.DivRem(System.Int64,System.Int64,System.Int64@) +M:System.Math.DivRem(System.IntPtr,System.IntPtr) +M:System.Math.DivRem(System.SByte,System.SByte) +M:System.Math.DivRem(System.UInt16,System.UInt16) +M:System.Math.DivRem(System.UInt32,System.UInt32) +M:System.Math.DivRem(System.UInt64,System.UInt64) +M:System.Math.DivRem(System.UIntPtr,System.UIntPtr) +M:System.Math.Exp(System.Double) +M:System.Math.Floor(System.Decimal) +M:System.Math.Floor(System.Double) +M:System.Math.FusedMultiplyAdd(System.Double,System.Double,System.Double) +M:System.Math.IEEERemainder(System.Double,System.Double) +M:System.Math.ILogB(System.Double) +M:System.Math.Log(System.Double) +M:System.Math.Log(System.Double,System.Double) +M:System.Math.Log10(System.Double) +M:System.Math.Log2(System.Double) +M:System.Math.Max(System.Byte,System.Byte) +M:System.Math.Max(System.Decimal,System.Decimal) +M:System.Math.Max(System.Double,System.Double) +M:System.Math.Max(System.Int16,System.Int16) +M:System.Math.Max(System.Int32,System.Int32) +M:System.Math.Max(System.Int64,System.Int64) +M:System.Math.Max(System.IntPtr,System.IntPtr) +M:System.Math.Max(System.SByte,System.SByte) +M:System.Math.Max(System.Single,System.Single) +M:System.Math.Max(System.UInt16,System.UInt16) +M:System.Math.Max(System.UInt32,System.UInt32) +M:System.Math.Max(System.UInt64,System.UInt64) +M:System.Math.Max(System.UIntPtr,System.UIntPtr) +M:System.Math.MaxMagnitude(System.Double,System.Double) +M:System.Math.Min(System.Byte,System.Byte) +M:System.Math.Min(System.Decimal,System.Decimal) +M:System.Math.Min(System.Double,System.Double) +M:System.Math.Min(System.Int16,System.Int16) +M:System.Math.Min(System.Int32,System.Int32) +M:System.Math.Min(System.Int64,System.Int64) +M:System.Math.Min(System.IntPtr,System.IntPtr) +M:System.Math.Min(System.SByte,System.SByte) +M:System.Math.Min(System.Single,System.Single) +M:System.Math.Min(System.UInt16,System.UInt16) +M:System.Math.Min(System.UInt32,System.UInt32) +M:System.Math.Min(System.UInt64,System.UInt64) +M:System.Math.Min(System.UIntPtr,System.UIntPtr) +M:System.Math.MinMagnitude(System.Double,System.Double) +M:System.Math.Pow(System.Double,System.Double) +M:System.Math.ReciprocalEstimate(System.Double) +M:System.Math.ReciprocalSqrtEstimate(System.Double) +M:System.Math.Round(System.Decimal) +M:System.Math.Round(System.Decimal,System.Int32) +M:System.Math.Round(System.Decimal,System.Int32,System.MidpointRounding) +M:System.Math.Round(System.Decimal,System.MidpointRounding) +M:System.Math.Round(System.Double) +M:System.Math.Round(System.Double,System.Int32) +M:System.Math.Round(System.Double,System.Int32,System.MidpointRounding) +M:System.Math.Round(System.Double,System.MidpointRounding) +M:System.Math.ScaleB(System.Double,System.Int32) +M:System.Math.Sign(System.Decimal) +M:System.Math.Sign(System.Double) +M:System.Math.Sign(System.Int16) +M:System.Math.Sign(System.Int32) +M:System.Math.Sign(System.Int64) +M:System.Math.Sign(System.IntPtr) +M:System.Math.Sign(System.SByte) +M:System.Math.Sign(System.Single) +M:System.Math.Sin(System.Double) +M:System.Math.SinCos(System.Double) +M:System.Math.Sinh(System.Double) +M:System.Math.Sqrt(System.Double) +M:System.Math.Tan(System.Double) +M:System.Math.Tanh(System.Double) +M:System.Math.Truncate(System.Decimal) +M:System.Math.Truncate(System.Double) +M:System.MathF.Abs(System.Single) +M:System.MathF.Acos(System.Single) +M:System.MathF.Acosh(System.Single) +M:System.MathF.Asin(System.Single) +M:System.MathF.Asinh(System.Single) +M:System.MathF.Atan(System.Single) +M:System.MathF.Atan2(System.Single,System.Single) +M:System.MathF.Atanh(System.Single) +M:System.MathF.BitDecrement(System.Single) +M:System.MathF.BitIncrement(System.Single) +M:System.MathF.Cbrt(System.Single) +M:System.MathF.Ceiling(System.Single) +M:System.MathF.CopySign(System.Single,System.Single) +M:System.MathF.Cos(System.Single) +M:System.MathF.Cosh(System.Single) +M:System.MathF.Exp(System.Single) +M:System.MathF.Floor(System.Single) +M:System.MathF.FusedMultiplyAdd(System.Single,System.Single,System.Single) +M:System.MathF.IEEERemainder(System.Single,System.Single) +M:System.MathF.ILogB(System.Single) +M:System.MathF.Log(System.Single) +M:System.MathF.Log(System.Single,System.Single) +M:System.MathF.Log10(System.Single) +M:System.MathF.Log2(System.Single) +M:System.MathF.Max(System.Single,System.Single) +M:System.MathF.MaxMagnitude(System.Single,System.Single) +M:System.MathF.Min(System.Single,System.Single) +M:System.MathF.MinMagnitude(System.Single,System.Single) +M:System.MathF.Pow(System.Single,System.Single) +M:System.MathF.ReciprocalEstimate(System.Single) +M:System.MathF.ReciprocalSqrtEstimate(System.Single) +M:System.MathF.Round(System.Single) +M:System.MathF.Round(System.Single,System.Int32) +M:System.MathF.Round(System.Single,System.Int32,System.MidpointRounding) +M:System.MathF.Round(System.Single,System.MidpointRounding) +M:System.MathF.ScaleB(System.Single,System.Int32) +M:System.MathF.Sign(System.Single) +M:System.MathF.Sin(System.Single) +M:System.MathF.SinCos(System.Single) +M:System.MathF.Sinh(System.Single) +M:System.MathF.Sqrt(System.Single) +M:System.MathF.Tan(System.Single) +M:System.MathF.Tanh(System.Single) +M:System.MathF.Truncate(System.Single) +M:System.MemberAccessException.#ctor +M:System.MemberAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MemberAccessException.#ctor(System.String) +M:System.MemberAccessException.#ctor(System.String,System.Exception) +M:System.Memory`1.#ctor(`0[]) +M:System.Memory`1.#ctor(`0[],System.Int32,System.Int32) +M:System.Memory`1.CopyTo(System.Memory{`0}) +M:System.Memory`1.Equals(System.Memory{`0}) +M:System.Memory`1.Equals(System.Object) +M:System.Memory`1.get_Empty +M:System.Memory`1.get_IsEmpty +M:System.Memory`1.get_Length +M:System.Memory`1.get_Span +M:System.Memory`1.GetHashCode +M:System.Memory`1.op_Implicit(`0[])~System.Memory{`0} +M:System.Memory`1.op_Implicit(System.ArraySegment{`0})~System.Memory{`0} +M:System.Memory`1.op_Implicit(System.Memory{`0})~System.ReadOnlyMemory{`0} +M:System.Memory`1.Pin +M:System.Memory`1.Slice(System.Int32) +M:System.Memory`1.Slice(System.Int32,System.Int32) +M:System.Memory`1.ToArray +M:System.Memory`1.ToString +M:System.Memory`1.TryCopyTo(System.Memory{`0}) +M:System.MethodAccessException.#ctor +M:System.MethodAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MethodAccessException.#ctor(System.String) +M:System.MethodAccessException.#ctor(System.String,System.Exception) +M:System.MissingFieldException.#ctor +M:System.MissingFieldException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MissingFieldException.#ctor(System.String) +M:System.MissingFieldException.#ctor(System.String,System.Exception) +M:System.MissingFieldException.#ctor(System.String,System.String) +M:System.MissingFieldException.get_Message +M:System.MissingMemberException.#ctor +M:System.MissingMemberException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MissingMemberException.#ctor(System.String) +M:System.MissingMemberException.#ctor(System.String,System.Exception) +M:System.MissingMemberException.#ctor(System.String,System.String) +M:System.MissingMemberException.get_Message +M:System.MissingMemberException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MissingMethodException.#ctor +M:System.MissingMethodException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MissingMethodException.#ctor(System.String) +M:System.MissingMethodException.#ctor(System.String,System.Exception) +M:System.MissingMethodException.#ctor(System.String,System.String) +M:System.MissingMethodException.get_Message +M:System.ModuleHandle.Equals(System.ModuleHandle) +M:System.ModuleHandle.Equals(System.Object) +M:System.ModuleHandle.get_MDStreamVersion +M:System.ModuleHandle.GetHashCode +M:System.ModuleHandle.GetRuntimeFieldHandleFromMetadataToken(System.Int32) +M:System.ModuleHandle.GetRuntimeMethodHandleFromMetadataToken(System.Int32) +M:System.ModuleHandle.GetRuntimeTypeHandleFromMetadataToken(System.Int32) +M:System.ModuleHandle.op_Equality(System.ModuleHandle,System.ModuleHandle) +M:System.ModuleHandle.op_Inequality(System.ModuleHandle,System.ModuleHandle) +M:System.ModuleHandle.ResolveFieldHandle(System.Int32) +M:System.ModuleHandle.ResolveFieldHandle(System.Int32,System.RuntimeTypeHandle[],System.RuntimeTypeHandle[]) +M:System.ModuleHandle.ResolveMethodHandle(System.Int32) +M:System.ModuleHandle.ResolveMethodHandle(System.Int32,System.RuntimeTypeHandle[],System.RuntimeTypeHandle[]) +M:System.ModuleHandle.ResolveTypeHandle(System.Int32) +M:System.ModuleHandle.ResolveTypeHandle(System.Int32,System.RuntimeTypeHandle[],System.RuntimeTypeHandle[]) +M:System.MulticastDelegate.#ctor(System.Object,System.String) +M:System.MulticastDelegate.#ctor(System.Type,System.String) +M:System.MulticastDelegate.CombineImpl(System.Delegate) +M:System.MulticastDelegate.Equals(System.Object) +M:System.MulticastDelegate.GetHashCode +M:System.MulticastDelegate.GetInvocationList +M:System.MulticastDelegate.GetMethodImpl +M:System.MulticastDelegate.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.MulticastDelegate.op_Equality(System.MulticastDelegate,System.MulticastDelegate) +M:System.MulticastDelegate.op_Inequality(System.MulticastDelegate,System.MulticastDelegate) +M:System.MulticastDelegate.RemoveImpl(System.Delegate) +M:System.MulticastNotSupportedException.#ctor +M:System.MulticastNotSupportedException.#ctor(System.String) +M:System.MulticastNotSupportedException.#ctor(System.String,System.Exception) +M:System.NetPipeStyleUriParser.#ctor +M:System.NetTcpStyleUriParser.#ctor +M:System.NewsStyleUriParser.#ctor +M:System.NonSerializedAttribute.#ctor +M:System.NotFiniteNumberException.#ctor +M:System.NotFiniteNumberException.#ctor(System.Double) +M:System.NotFiniteNumberException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.NotFiniteNumberException.#ctor(System.String) +M:System.NotFiniteNumberException.#ctor(System.String,System.Double) +M:System.NotFiniteNumberException.#ctor(System.String,System.Double,System.Exception) +M:System.NotFiniteNumberException.#ctor(System.String,System.Exception) +M:System.NotFiniteNumberException.get_OffendingNumber +M:System.NotFiniteNumberException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.NotImplementedException.#ctor +M:System.NotImplementedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.NotImplementedException.#ctor(System.String) +M:System.NotImplementedException.#ctor(System.String,System.Exception) +M:System.NotSupportedException.#ctor +M:System.NotSupportedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.NotSupportedException.#ctor(System.String) +M:System.NotSupportedException.#ctor(System.String,System.Exception) +M:System.Nullable.Compare``1(System.Nullable{``0},System.Nullable{``0}) +M:System.Nullable.Equals``1(System.Nullable{``0},System.Nullable{``0}) +M:System.Nullable.GetUnderlyingType(System.Type) +M:System.Nullable.GetValueRefOrDefaultRef``1(System.Nullable{``0}@) +M:System.Nullable`1.#ctor(`0) +M:System.Nullable`1.Equals(System.Object) +M:System.Nullable`1.get_HasValue +M:System.Nullable`1.get_Value +M:System.Nullable`1.GetHashCode +M:System.Nullable`1.GetValueOrDefault +M:System.Nullable`1.GetValueOrDefault(`0) +M:System.Nullable`1.op_Explicit(System.Nullable{`0})~`0 +M:System.Nullable`1.op_Implicit(`0)~System.Nullable{`0} +M:System.Nullable`1.ToString +M:System.NullReferenceException.#ctor +M:System.NullReferenceException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.NullReferenceException.#ctor(System.String) +M:System.NullReferenceException.#ctor(System.String,System.Exception) +M:System.Numerics.BitOperations.Crc32C(System.UInt32,System.Byte) +M:System.Numerics.BitOperations.Crc32C(System.UInt32,System.UInt16) +M:System.Numerics.BitOperations.Crc32C(System.UInt32,System.UInt32) +M:System.Numerics.BitOperations.Crc32C(System.UInt32,System.UInt64) +M:System.Numerics.BitOperations.IsPow2(System.Int32) +M:System.Numerics.BitOperations.IsPow2(System.Int64) +M:System.Numerics.BitOperations.IsPow2(System.IntPtr) +M:System.Numerics.BitOperations.IsPow2(System.UInt32) +M:System.Numerics.BitOperations.IsPow2(System.UInt64) +M:System.Numerics.BitOperations.IsPow2(System.UIntPtr) +M:System.Numerics.BitOperations.LeadingZeroCount(System.UInt32) +M:System.Numerics.BitOperations.LeadingZeroCount(System.UInt64) +M:System.Numerics.BitOperations.LeadingZeroCount(System.UIntPtr) +M:System.Numerics.BitOperations.Log2(System.UInt32) +M:System.Numerics.BitOperations.Log2(System.UInt64) +M:System.Numerics.BitOperations.Log2(System.UIntPtr) +M:System.Numerics.BitOperations.PopCount(System.UInt32) +M:System.Numerics.BitOperations.PopCount(System.UInt64) +M:System.Numerics.BitOperations.PopCount(System.UIntPtr) +M:System.Numerics.BitOperations.RotateLeft(System.UInt32,System.Int32) +M:System.Numerics.BitOperations.RotateLeft(System.UInt64,System.Int32) +M:System.Numerics.BitOperations.RotateLeft(System.UIntPtr,System.Int32) +M:System.Numerics.BitOperations.RotateRight(System.UInt32,System.Int32) +M:System.Numerics.BitOperations.RotateRight(System.UInt64,System.Int32) +M:System.Numerics.BitOperations.RotateRight(System.UIntPtr,System.Int32) +M:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UInt32) +M:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UInt64) +M:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UIntPtr) +M:System.Numerics.BitOperations.TrailingZeroCount(System.Int32) +M:System.Numerics.BitOperations.TrailingZeroCount(System.Int64) +M:System.Numerics.BitOperations.TrailingZeroCount(System.IntPtr) +M:System.Numerics.BitOperations.TrailingZeroCount(System.UInt32) +M:System.Numerics.BitOperations.TrailingZeroCount(System.UInt64) +M:System.Numerics.BitOperations.TrailingZeroCount(System.UIntPtr) +M:System.Numerics.IAdditionOperators`3.op_Addition(`0,`1) +M:System.Numerics.IAdditionOperators`3.op_CheckedAddition(`0,`1) +M:System.Numerics.IAdditiveIdentity`2.get_AdditiveIdentity +M:System.Numerics.IBinaryInteger`1.DivRem(`0,`0) +M:System.Numerics.IBinaryInteger`1.GetByteCount +M:System.Numerics.IBinaryInteger`1.GetShortestBitLength +M:System.Numerics.IBinaryInteger`1.LeadingZeroCount(`0) +M:System.Numerics.IBinaryInteger`1.PopCount(`0) +M:System.Numerics.IBinaryInteger`1.ReadBigEndian(System.Byte[],System.Boolean) +M:System.Numerics.IBinaryInteger`1.ReadBigEndian(System.Byte[],System.Int32,System.Boolean) +M:System.Numerics.IBinaryInteger`1.ReadBigEndian(System.ReadOnlySpan{System.Byte},System.Boolean) +M:System.Numerics.IBinaryInteger`1.ReadLittleEndian(System.Byte[],System.Boolean) +M:System.Numerics.IBinaryInteger`1.ReadLittleEndian(System.Byte[],System.Int32,System.Boolean) +M:System.Numerics.IBinaryInteger`1.ReadLittleEndian(System.ReadOnlySpan{System.Byte},System.Boolean) +M:System.Numerics.IBinaryInteger`1.RotateLeft(`0,System.Int32) +M:System.Numerics.IBinaryInteger`1.RotateRight(`0,System.Int32) +M:System.Numerics.IBinaryInteger`1.TrailingZeroCount(`0) +M:System.Numerics.IBinaryInteger`1.TryReadBigEndian(System.ReadOnlySpan{System.Byte},System.Boolean,`0@) +M:System.Numerics.IBinaryInteger`1.TryReadLittleEndian(System.ReadOnlySpan{System.Byte},System.Boolean,`0@) +M:System.Numerics.IBinaryInteger`1.TryWriteBigEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IBinaryInteger`1.TryWriteLittleEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IBinaryInteger`1.WriteBigEndian(System.Byte[]) +M:System.Numerics.IBinaryInteger`1.WriteBigEndian(System.Byte[],System.Int32) +M:System.Numerics.IBinaryInteger`1.WriteBigEndian(System.Span{System.Byte}) +M:System.Numerics.IBinaryInteger`1.WriteLittleEndian(System.Byte[]) +M:System.Numerics.IBinaryInteger`1.WriteLittleEndian(System.Byte[],System.Int32) +M:System.Numerics.IBinaryInteger`1.WriteLittleEndian(System.Span{System.Byte}) +M:System.Numerics.IBinaryNumber`1.get_AllBitsSet +M:System.Numerics.IBinaryNumber`1.IsPow2(`0) +M:System.Numerics.IBinaryNumber`1.Log2(`0) +M:System.Numerics.IBitwiseOperators`3.op_BitwiseAnd(`0,`1) +M:System.Numerics.IBitwiseOperators`3.op_BitwiseOr(`0,`1) +M:System.Numerics.IBitwiseOperators`3.op_ExclusiveOr(`0,`1) +M:System.Numerics.IBitwiseOperators`3.op_OnesComplement(`0) +M:System.Numerics.IComparisonOperators`3.op_GreaterThan(`0,`1) +M:System.Numerics.IComparisonOperators`3.op_GreaterThanOrEqual(`0,`1) +M:System.Numerics.IComparisonOperators`3.op_LessThan(`0,`1) +M:System.Numerics.IComparisonOperators`3.op_LessThanOrEqual(`0,`1) +M:System.Numerics.IDecrementOperators`1.op_CheckedDecrement(`0) +M:System.Numerics.IDecrementOperators`1.op_Decrement(`0) +M:System.Numerics.IDivisionOperators`3.op_CheckedDivision(`0,`1) +M:System.Numerics.IDivisionOperators`3.op_Division(`0,`1) +M:System.Numerics.IEqualityOperators`3.op_Equality(`0,`1) +M:System.Numerics.IEqualityOperators`3.op_Inequality(`0,`1) +M:System.Numerics.IExponentialFunctions`1.Exp(`0) +M:System.Numerics.IExponentialFunctions`1.Exp10(`0) +M:System.Numerics.IExponentialFunctions`1.Exp10M1(`0) +M:System.Numerics.IExponentialFunctions`1.Exp2(`0) +M:System.Numerics.IExponentialFunctions`1.Exp2M1(`0) +M:System.Numerics.IExponentialFunctions`1.ExpM1(`0) +M:System.Numerics.IFloatingPoint`1.Ceiling(`0) +M:System.Numerics.IFloatingPoint`1.Floor(`0) +M:System.Numerics.IFloatingPoint`1.GetExponentByteCount +M:System.Numerics.IFloatingPoint`1.GetExponentShortestBitLength +M:System.Numerics.IFloatingPoint`1.GetSignificandBitLength +M:System.Numerics.IFloatingPoint`1.GetSignificandByteCount +M:System.Numerics.IFloatingPoint`1.Round(`0) +M:System.Numerics.IFloatingPoint`1.Round(`0,System.Int32) +M:System.Numerics.IFloatingPoint`1.Round(`0,System.Int32,System.MidpointRounding) +M:System.Numerics.IFloatingPoint`1.Round(`0,System.MidpointRounding) +M:System.Numerics.IFloatingPoint`1.Truncate(`0) +M:System.Numerics.IFloatingPoint`1.TryWriteExponentBigEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IFloatingPoint`1.TryWriteExponentLittleEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IFloatingPoint`1.TryWriteSignificandBigEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IFloatingPoint`1.TryWriteSignificandLittleEndian(System.Span{System.Byte},System.Int32@) +M:System.Numerics.IFloatingPoint`1.WriteExponentBigEndian(System.Byte[]) +M:System.Numerics.IFloatingPoint`1.WriteExponentBigEndian(System.Byte[],System.Int32) +M:System.Numerics.IFloatingPoint`1.WriteExponentBigEndian(System.Span{System.Byte}) +M:System.Numerics.IFloatingPoint`1.WriteExponentLittleEndian(System.Byte[]) +M:System.Numerics.IFloatingPoint`1.WriteExponentLittleEndian(System.Byte[],System.Int32) +M:System.Numerics.IFloatingPoint`1.WriteExponentLittleEndian(System.Span{System.Byte}) +M:System.Numerics.IFloatingPoint`1.WriteSignificandBigEndian(System.Byte[]) +M:System.Numerics.IFloatingPoint`1.WriteSignificandBigEndian(System.Byte[],System.Int32) +M:System.Numerics.IFloatingPoint`1.WriteSignificandBigEndian(System.Span{System.Byte}) +M:System.Numerics.IFloatingPoint`1.WriteSignificandLittleEndian(System.Byte[]) +M:System.Numerics.IFloatingPoint`1.WriteSignificandLittleEndian(System.Byte[],System.Int32) +M:System.Numerics.IFloatingPoint`1.WriteSignificandLittleEndian(System.Span{System.Byte}) +M:System.Numerics.IFloatingPointConstants`1.get_E +M:System.Numerics.IFloatingPointConstants`1.get_Pi +M:System.Numerics.IFloatingPointConstants`1.get_Tau +M:System.Numerics.IFloatingPointIeee754`1.Atan2(`0,`0) +M:System.Numerics.IFloatingPointIeee754`1.Atan2Pi(`0,`0) +M:System.Numerics.IFloatingPointIeee754`1.BitDecrement(`0) +M:System.Numerics.IFloatingPointIeee754`1.BitIncrement(`0) +M:System.Numerics.IFloatingPointIeee754`1.FusedMultiplyAdd(`0,`0,`0) +M:System.Numerics.IFloatingPointIeee754`1.get_Epsilon +M:System.Numerics.IFloatingPointIeee754`1.get_NaN +M:System.Numerics.IFloatingPointIeee754`1.get_NegativeInfinity +M:System.Numerics.IFloatingPointIeee754`1.get_NegativeZero +M:System.Numerics.IFloatingPointIeee754`1.get_PositiveInfinity +M:System.Numerics.IFloatingPointIeee754`1.Ieee754Remainder(`0,`0) +M:System.Numerics.IFloatingPointIeee754`1.ILogB(`0) +M:System.Numerics.IFloatingPointIeee754`1.Lerp(`0,`0,`0) +M:System.Numerics.IFloatingPointIeee754`1.ReciprocalEstimate(`0) +M:System.Numerics.IFloatingPointIeee754`1.ReciprocalSqrtEstimate(`0) +M:System.Numerics.IFloatingPointIeee754`1.ScaleB(`0,System.Int32) +M:System.Numerics.IHyperbolicFunctions`1.Acosh(`0) +M:System.Numerics.IHyperbolicFunctions`1.Asinh(`0) +M:System.Numerics.IHyperbolicFunctions`1.Atanh(`0) +M:System.Numerics.IHyperbolicFunctions`1.Cosh(`0) +M:System.Numerics.IHyperbolicFunctions`1.Sinh(`0) +M:System.Numerics.IHyperbolicFunctions`1.Tanh(`0) +M:System.Numerics.IIncrementOperators`1.op_CheckedIncrement(`0) +M:System.Numerics.IIncrementOperators`1.op_Increment(`0) +M:System.Numerics.ILogarithmicFunctions`1.Log(`0) +M:System.Numerics.ILogarithmicFunctions`1.Log(`0,`0) +M:System.Numerics.ILogarithmicFunctions`1.Log10(`0) +M:System.Numerics.ILogarithmicFunctions`1.Log10P1(`0) +M:System.Numerics.ILogarithmicFunctions`1.Log2(`0) +M:System.Numerics.ILogarithmicFunctions`1.Log2P1(`0) +M:System.Numerics.ILogarithmicFunctions`1.LogP1(`0) +M:System.Numerics.IMinMaxValue`1.get_MaxValue +M:System.Numerics.IMinMaxValue`1.get_MinValue +M:System.Numerics.IModulusOperators`3.op_Modulus(`0,`1) +M:System.Numerics.IMultiplicativeIdentity`2.get_MultiplicativeIdentity +M:System.Numerics.IMultiplyOperators`3.op_CheckedMultiply(`0,`1) +M:System.Numerics.IMultiplyOperators`3.op_Multiply(`0,`1) +M:System.Numerics.INumber`1.Clamp(`0,`0,`0) +M:System.Numerics.INumber`1.CopySign(`0,`0) +M:System.Numerics.INumber`1.Max(`0,`0) +M:System.Numerics.INumber`1.MaxNumber(`0,`0) +M:System.Numerics.INumber`1.Min(`0,`0) +M:System.Numerics.INumber`1.MinNumber(`0,`0) +M:System.Numerics.INumber`1.Sign(`0) +M:System.Numerics.INumberBase`1.Abs(`0) +M:System.Numerics.INumberBase`1.CreateChecked``1(``0) +M:System.Numerics.INumberBase`1.CreateSaturating``1(``0) +M:System.Numerics.INumberBase`1.CreateTruncating``1(``0) +M:System.Numerics.INumberBase`1.get_One +M:System.Numerics.INumberBase`1.get_Radix +M:System.Numerics.INumberBase`1.get_Zero +M:System.Numerics.INumberBase`1.IsCanonical(`0) +M:System.Numerics.INumberBase`1.IsComplexNumber(`0) +M:System.Numerics.INumberBase`1.IsEvenInteger(`0) +M:System.Numerics.INumberBase`1.IsFinite(`0) +M:System.Numerics.INumberBase`1.IsImaginaryNumber(`0) +M:System.Numerics.INumberBase`1.IsInfinity(`0) +M:System.Numerics.INumberBase`1.IsInteger(`0) +M:System.Numerics.INumberBase`1.IsNaN(`0) +M:System.Numerics.INumberBase`1.IsNegative(`0) +M:System.Numerics.INumberBase`1.IsNegativeInfinity(`0) +M:System.Numerics.INumberBase`1.IsNormal(`0) +M:System.Numerics.INumberBase`1.IsOddInteger(`0) +M:System.Numerics.INumberBase`1.IsPositive(`0) +M:System.Numerics.INumberBase`1.IsPositiveInfinity(`0) +M:System.Numerics.INumberBase`1.IsRealNumber(`0) +M:System.Numerics.INumberBase`1.IsSubnormal(`0) +M:System.Numerics.INumberBase`1.IsZero(`0) +M:System.Numerics.INumberBase`1.MaxMagnitude(`0,`0) +M:System.Numerics.INumberBase`1.MaxMagnitudeNumber(`0,`0) +M:System.Numerics.INumberBase`1.MinMagnitude(`0,`0) +M:System.Numerics.INumberBase`1.MinMagnitudeNumber(`0,`0) +M:System.Numerics.INumberBase`1.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Numerics.INumberBase`1.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Numerics.INumberBase`1.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Numerics.INumberBase`1.TryConvertFromChecked``1(``0,`0@) +M:System.Numerics.INumberBase`1.TryConvertFromSaturating``1(``0,`0@) +M:System.Numerics.INumberBase`1.TryConvertFromTruncating``1(``0,`0@) +M:System.Numerics.INumberBase`1.TryConvertToChecked``1(`0,``0@) +M:System.Numerics.INumberBase`1.TryConvertToSaturating``1(`0,``0@) +M:System.Numerics.INumberBase`1.TryConvertToTruncating``1(`0,``0@) +M:System.Numerics.INumberBase`1.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,`0@) +M:System.Numerics.INumberBase`1.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,`0@) +M:System.Numerics.INumberBase`1.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,`0@) +M:System.Numerics.IPowerFunctions`1.Pow(`0,`0) +M:System.Numerics.IRootFunctions`1.Cbrt(`0) +M:System.Numerics.IRootFunctions`1.Hypot(`0,`0) +M:System.Numerics.IRootFunctions`1.RootN(`0,System.Int32) +M:System.Numerics.IRootFunctions`1.Sqrt(`0) +M:System.Numerics.IShiftOperators`3.op_LeftShift(`0,`1) +M:System.Numerics.IShiftOperators`3.op_RightShift(`0,`1) +M:System.Numerics.IShiftOperators`3.op_UnsignedRightShift(`0,`1) +M:System.Numerics.ISignedNumber`1.get_NegativeOne +M:System.Numerics.ISubtractionOperators`3.op_CheckedSubtraction(`0,`1) +M:System.Numerics.ISubtractionOperators`3.op_Subtraction(`0,`1) +M:System.Numerics.ITrigonometricFunctions`1.Acos(`0) +M:System.Numerics.ITrigonometricFunctions`1.AcosPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.Asin(`0) +M:System.Numerics.ITrigonometricFunctions`1.AsinPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.Atan(`0) +M:System.Numerics.ITrigonometricFunctions`1.AtanPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.Cos(`0) +M:System.Numerics.ITrigonometricFunctions`1.CosPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.DegreesToRadians(`0) +M:System.Numerics.ITrigonometricFunctions`1.RadiansToDegrees(`0) +M:System.Numerics.ITrigonometricFunctions`1.Sin(`0) +M:System.Numerics.ITrigonometricFunctions`1.SinCos(`0) +M:System.Numerics.ITrigonometricFunctions`1.SinCosPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.SinPi(`0) +M:System.Numerics.ITrigonometricFunctions`1.Tan(`0) +M:System.Numerics.ITrigonometricFunctions`1.TanPi(`0) +M:System.Numerics.IUnaryNegationOperators`2.op_CheckedUnaryNegation(`0) +M:System.Numerics.IUnaryNegationOperators`2.op_UnaryNegation(`0) +M:System.Numerics.IUnaryPlusOperators`2.op_UnaryPlus(`0) +M:System.Numerics.TotalOrderIeee754Comparer`1.Compare(`0,`0) +M:System.Numerics.TotalOrderIeee754Comparer`1.Equals(`0,`0) +M:System.Numerics.TotalOrderIeee754Comparer`1.Equals(System.Numerics.TotalOrderIeee754Comparer{`0}) +M:System.Numerics.TotalOrderIeee754Comparer`1.Equals(System.Object) +M:System.Numerics.TotalOrderIeee754Comparer`1.GetHashCode +M:System.Numerics.TotalOrderIeee754Comparer`1.GetHashCode(`0) +M:System.Object.#ctor +M:System.Object.Equals(System.Object) +M:System.Object.Equals(System.Object,System.Object) +M:System.Object.Finalize +M:System.Object.GetHashCode +M:System.Object.GetType +M:System.Object.MemberwiseClone +M:System.Object.ReferenceEquals(System.Object,System.Object) +M:System.Object.ToString +M:System.ObjectDisposedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ObjectDisposedException.#ctor(System.String) +M:System.ObjectDisposedException.#ctor(System.String,System.Exception) +M:System.ObjectDisposedException.#ctor(System.String,System.String) +M:System.ObjectDisposedException.get_Message +M:System.ObjectDisposedException.get_ObjectName +M:System.ObjectDisposedException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.ObjectDisposedException.ThrowIf(System.Boolean,System.Object) +M:System.ObjectDisposedException.ThrowIf(System.Boolean,System.Type) +M:System.ObsoleteAttribute.#ctor +M:System.ObsoleteAttribute.#ctor(System.String) +M:System.ObsoleteAttribute.#ctor(System.String,System.Boolean) +M:System.ObsoleteAttribute.get_DiagnosticId +M:System.ObsoleteAttribute.get_IsError +M:System.ObsoleteAttribute.get_Message +M:System.ObsoleteAttribute.get_UrlFormat +M:System.ObsoleteAttribute.set_DiagnosticId(System.String) +M:System.ObsoleteAttribute.set_UrlFormat(System.String) +M:System.OperatingSystem.#ctor(System.PlatformID,System.Version) +M:System.OperatingSystem.Clone +M:System.OperatingSystem.get_Platform +M:System.OperatingSystem.get_ServicePack +M:System.OperatingSystem.get_Version +M:System.OperatingSystem.get_VersionString +M:System.OperatingSystem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.OperatingSystem.IsAndroid +M:System.OperatingSystem.IsAndroidVersionAtLeast(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsBrowser +M:System.OperatingSystem.IsFreeBSD +M:System.OperatingSystem.IsFreeBSDVersionAtLeast(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsIOS +M:System.OperatingSystem.IsIOSVersionAtLeast(System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsLinux +M:System.OperatingSystem.IsMacCatalyst +M:System.OperatingSystem.IsMacCatalystVersionAtLeast(System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsMacOS +M:System.OperatingSystem.IsMacOSVersionAtLeast(System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsOSPlatform(System.String) +M:System.OperatingSystem.IsOSPlatformVersionAtLeast(System.String,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsTvOS +M:System.OperatingSystem.IsTvOSVersionAtLeast(System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsWasi +M:System.OperatingSystem.IsWatchOS +M:System.OperatingSystem.IsWatchOSVersionAtLeast(System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.IsWindows +M:System.OperatingSystem.IsWindowsVersionAtLeast(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.OperatingSystem.ToString +M:System.OperationCanceledException.#ctor +M:System.OperationCanceledException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.OperationCanceledException.#ctor(System.String) +M:System.OperationCanceledException.#ctor(System.String,System.Exception) +M:System.OperationCanceledException.#ctor(System.String,System.Exception,System.Threading.CancellationToken) +M:System.OperationCanceledException.#ctor(System.String,System.Threading.CancellationToken) +M:System.OperationCanceledException.#ctor(System.Threading.CancellationToken) +M:System.OperationCanceledException.get_CancellationToken +M:System.OutOfMemoryException.#ctor +M:System.OutOfMemoryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.OutOfMemoryException.#ctor(System.String) +M:System.OutOfMemoryException.#ctor(System.String,System.Exception) +M:System.OverflowException.#ctor +M:System.OverflowException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.OverflowException.#ctor(System.String) +M:System.OverflowException.#ctor(System.String,System.Exception) +M:System.ParamArrayAttribute.#ctor +M:System.PlatformNotSupportedException.#ctor +M:System.PlatformNotSupportedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.PlatformNotSupportedException.#ctor(System.String) +M:System.PlatformNotSupportedException.#ctor(System.String,System.Exception) +M:System.Predicate`1.#ctor(System.Object,System.IntPtr) +M:System.Predicate`1.BeginInvoke(`0,System.AsyncCallback,System.Object) +M:System.Predicate`1.EndInvoke(System.IAsyncResult) +M:System.Predicate`1.Invoke(`0) +M:System.Progress`1.#ctor +M:System.Progress`1.#ctor(System.Action{`0}) +M:System.Progress`1.add_ProgressChanged(System.EventHandler{`0}) +M:System.Progress`1.OnReport(`0) +M:System.Progress`1.remove_ProgressChanged(System.EventHandler{`0}) +M:System.Random.#ctor +M:System.Random.#ctor(System.Int32) +M:System.Random.get_Shared +M:System.Random.GetItems``1(``0[],System.Int32) +M:System.Random.GetItems``1(System.ReadOnlySpan{``0},System.Int32) +M:System.Random.GetItems``1(System.ReadOnlySpan{``0},System.Span{``0}) +M:System.Random.Next +M:System.Random.Next(System.Int32) +M:System.Random.Next(System.Int32,System.Int32) +M:System.Random.NextBytes(System.Byte[]) +M:System.Random.NextBytes(System.Span{System.Byte}) +M:System.Random.NextDouble +M:System.Random.NextInt64 +M:System.Random.NextInt64(System.Int64) +M:System.Random.NextInt64(System.Int64,System.Int64) +M:System.Random.NextSingle +M:System.Random.Sample +M:System.Random.Shuffle``1(``0[]) +M:System.Random.Shuffle``1(System.Span{``0}) +M:System.Range.#ctor(System.Index,System.Index) +M:System.Range.EndAt(System.Index) +M:System.Range.Equals(System.Object) +M:System.Range.Equals(System.Range) +M:System.Range.get_All +M:System.Range.get_End +M:System.Range.get_Start +M:System.Range.GetHashCode +M:System.Range.GetOffsetAndLength(System.Int32) +M:System.Range.StartAt(System.Index) +M:System.Range.ToString +M:System.RankException.#ctor +M:System.RankException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.RankException.#ctor(System.String) +M:System.RankException.#ctor(System.String,System.Exception) +M:System.ReadOnlyMemory`1.#ctor(`0[]) +M:System.ReadOnlyMemory`1.#ctor(`0[],System.Int32,System.Int32) +M:System.ReadOnlyMemory`1.CopyTo(System.Memory{`0}) +M:System.ReadOnlyMemory`1.Equals(System.Object) +M:System.ReadOnlyMemory`1.Equals(System.ReadOnlyMemory{`0}) +M:System.ReadOnlyMemory`1.get_Empty +M:System.ReadOnlyMemory`1.get_IsEmpty +M:System.ReadOnlyMemory`1.get_Length +M:System.ReadOnlyMemory`1.get_Span +M:System.ReadOnlyMemory`1.GetHashCode +M:System.ReadOnlyMemory`1.op_Implicit(`0[])~System.ReadOnlyMemory{`0} +M:System.ReadOnlyMemory`1.op_Implicit(System.ArraySegment{`0})~System.ReadOnlyMemory{`0} +M:System.ReadOnlyMemory`1.Pin +M:System.ReadOnlyMemory`1.Slice(System.Int32) +M:System.ReadOnlyMemory`1.Slice(System.Int32,System.Int32) +M:System.ReadOnlyMemory`1.ToArray +M:System.ReadOnlyMemory`1.ToString +M:System.ReadOnlyMemory`1.TryCopyTo(System.Memory{`0}) +M:System.ReadOnlySpan`1.#ctor(`0@) +M:System.ReadOnlySpan`1.#ctor(`0[]) +M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32) +M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32) +M:System.ReadOnlySpan`1.CopyTo(System.Span{`0}) +M:System.ReadOnlySpan`1.Enumerator.get_Current +M:System.ReadOnlySpan`1.Enumerator.MoveNext +M:System.ReadOnlySpan`1.Equals(System.Object) +M:System.ReadOnlySpan`1.get_Empty +M:System.ReadOnlySpan`1.get_IsEmpty +M:System.ReadOnlySpan`1.get_Item(System.Int32) +M:System.ReadOnlySpan`1.get_Length +M:System.ReadOnlySpan`1.GetEnumerator +M:System.ReadOnlySpan`1.GetHashCode +M:System.ReadOnlySpan`1.GetPinnableReference +M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0}) +M:System.ReadOnlySpan`1.op_Implicit(`0[])~System.ReadOnlySpan{`0} +M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{`0})~System.ReadOnlySpan{`0} +M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0}) +M:System.ReadOnlySpan`1.Slice(System.Int32) +M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32) +M:System.ReadOnlySpan`1.ToArray +M:System.ReadOnlySpan`1.ToString +M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0}) +M:System.ResolveEventArgs.#ctor(System.String) +M:System.ResolveEventArgs.#ctor(System.String,System.Reflection.Assembly) +M:System.ResolveEventArgs.get_Name +M:System.ResolveEventArgs.get_RequestingAssembly +M:System.ResolveEventHandler.#ctor(System.Object,System.IntPtr) +M:System.ResolveEventHandler.BeginInvoke(System.Object,System.ResolveEventArgs,System.AsyncCallback,System.Object) +M:System.ResolveEventHandler.EndInvoke(System.IAsyncResult) +M:System.ResolveEventHandler.Invoke(System.Object,System.ResolveEventArgs) +M:System.Runtime.CompilerServices.AccessedThroughPropertyAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.AccessedThroughPropertyAttribute.get_PropertyName +M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Complete +M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create +M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.MoveNext``1(``0@) +M:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute.#ctor(System.Type) +M:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.#ctor(System.Type) +M:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.get_BuilderType +M:System.Runtime.CompilerServices.AsyncStateMachineAttribute.#ctor(System.Type) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Create +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.get_Task +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.SetException(System.Exception) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.SetResult +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start``1(``0@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.Create +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.get_Task +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetException(System.Exception) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetResult(`0) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.Start``1(``0@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.Create +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.get_Task +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.SetException(System.Exception) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.SetResult +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder.Start``1(``0@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Create +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.get_Task +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetException(System.Exception) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetResult(`0) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Start``1(``0@) +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Create +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.SetException(System.Exception) +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.SetResult +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start``1(``0@) +M:System.Runtime.CompilerServices.CallConvCdecl.#ctor +M:System.Runtime.CompilerServices.CallConvFastcall.#ctor +M:System.Runtime.CompilerServices.CallConvMemberFunction.#ctor +M:System.Runtime.CompilerServices.CallConvStdcall.#ctor +M:System.Runtime.CompilerServices.CallConvSuppressGCTransition.#ctor +M:System.Runtime.CompilerServices.CallConvThiscall.#ctor +M:System.Runtime.CompilerServices.CallerArgumentExpressionAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.CallerArgumentExpressionAttribute.get_ParameterName +M:System.Runtime.CompilerServices.CallerFilePathAttribute.#ctor +M:System.Runtime.CompilerServices.CallerLineNumberAttribute.#ctor +M:System.Runtime.CompilerServices.CallerMemberNameAttribute.#ctor +M:System.Runtime.CompilerServices.CollectionBuilderAttribute.#ctor(System.Type,System.String) +M:System.Runtime.CompilerServices.CollectionBuilderAttribute.get_BuilderType +M:System.Runtime.CompilerServices.CollectionBuilderAttribute.get_MethodName +M:System.Runtime.CompilerServices.CompilationRelaxationsAttribute.#ctor(System.Int32) +M:System.Runtime.CompilerServices.CompilationRelaxationsAttribute.#ctor(System.Runtime.CompilerServices.CompilationRelaxations) +M:System.Runtime.CompilerServices.CompilationRelaxationsAttribute.get_CompilationRelaxations +M:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.get_FeatureName +M:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.get_IsOptional +M:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.set_IsOptional(System.Boolean) +M:System.Runtime.CompilerServices.CompilerGeneratedAttribute.#ctor +M:System.Runtime.CompilerServices.CompilerGlobalScopeAttribute.#ctor +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.#ctor +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.Add(`0,`1) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.AddOrUpdate(`0,`1) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.Clear +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.CreateValueCallback.#ctor(System.Object,System.IntPtr) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.CreateValueCallback.BeginInvoke(`0,System.AsyncCallback,System.Object) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.CreateValueCallback.EndInvoke(System.IAsyncResult) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.CreateValueCallback.Invoke(`0) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.GetOrCreateValue(`0) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.GetValue(`0,System.Runtime.CompilerServices.ConditionalWeakTable{`0,`1}.CreateValueCallback) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.Remove(`0) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.TryAdd(`0,`1) +M:System.Runtime.CompilerServices.ConditionalWeakTable`2.TryGetValue(`0,`1@) +M:System.Runtime.CompilerServices.ConfiguredAsyncDisposable.DisposeAsync +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.ConfigureAwait(System.Boolean) +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.DisposeAsync +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.get_Current +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.MoveNextAsync +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.GetAsyncEnumerator +M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.WithCancellation(System.Threading.CancellationToken) +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter.GetResult +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.GetAwaiter +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.GetAwaiter +M:System.Runtime.CompilerServices.CustomConstantAttribute.#ctor +M:System.Runtime.CompilerServices.CustomConstantAttribute.get_Value +M:System.Runtime.CompilerServices.DateTimeConstantAttribute.#ctor(System.Int64) +M:System.Runtime.CompilerServices.DateTimeConstantAttribute.get_Value +M:System.Runtime.CompilerServices.DecimalConstantAttribute.#ctor(System.Byte,System.Byte,System.Int32,System.Int32,System.Int32) +M:System.Runtime.CompilerServices.DecimalConstantAttribute.#ctor(System.Byte,System.Byte,System.UInt32,System.UInt32,System.UInt32) +M:System.Runtime.CompilerServices.DecimalConstantAttribute.get_Value +M:System.Runtime.CompilerServices.DefaultDependencyAttribute.#ctor(System.Runtime.CompilerServices.LoadHint) +M:System.Runtime.CompilerServices.DefaultDependencyAttribute.get_LoadHint +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.#ctor(System.Int32,System.Int32) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.IFormatProvider) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.IFormatProvider,System.Span{System.Char}) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.Object,System.Int32,System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char}) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char},System.Int32,System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.String,System.Int32,System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted``1(``0) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32,System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted``1(``0,System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendLiteral(System.String) +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.ToString +M:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.ToStringAndClear +M:System.Runtime.CompilerServices.DependencyAttribute.#ctor(System.String,System.Runtime.CompilerServices.LoadHint) +M:System.Runtime.CompilerServices.DependencyAttribute.get_DependentAssembly +M:System.Runtime.CompilerServices.DependencyAttribute.get_LoadHint +M:System.Runtime.CompilerServices.DisablePrivateReflectionAttribute.#ctor +M:System.Runtime.CompilerServices.DisableRuntimeMarshallingAttribute.#ctor +M:System.Runtime.CompilerServices.DiscardableAttribute.#ctor +M:System.Runtime.CompilerServices.EnumeratorCancellationAttribute.#ctor +M:System.Runtime.CompilerServices.ExtensionAttribute.#ctor +M:System.Runtime.CompilerServices.FixedAddressValueTypeAttribute.#ctor +M:System.Runtime.CompilerServices.FixedBufferAttribute.#ctor(System.Type,System.Int32) +M:System.Runtime.CompilerServices.FixedBufferAttribute.get_ElementType +M:System.Runtime.CompilerServices.FixedBufferAttribute.get_Length +M:System.Runtime.CompilerServices.FormattableStringFactory.Create(System.String,System.Object[]) +M:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext +M:System.Runtime.CompilerServices.IAsyncStateMachine.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.ICriticalNotifyCompletion.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.IndexerNameAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.InlineArrayAttribute.#ctor(System.Int32) +M:System.Runtime.CompilerServices.InlineArrayAttribute.get_Length +M:System.Runtime.CompilerServices.INotifyCompletion.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.InternalsVisibleToAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.InternalsVisibleToAttribute.get_AllInternalsVisible +M:System.Runtime.CompilerServices.InternalsVisibleToAttribute.get_AssemblyName +M:System.Runtime.CompilerServices.InternalsVisibleToAttribute.set_AllInternalsVisible(System.Boolean) +M:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.#ctor(System.String[]) +M:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.get_Arguments +M:System.Runtime.CompilerServices.InterpolatedStringHandlerAttribute.#ctor +M:System.Runtime.CompilerServices.IsByRefLikeAttribute.#ctor +M:System.Runtime.CompilerServices.IsReadOnlyAttribute.#ctor +M:System.Runtime.CompilerServices.IStrongBox.get_Value +M:System.Runtime.CompilerServices.IStrongBox.set_Value(System.Object) +M:System.Runtime.CompilerServices.IsUnmanagedAttribute.#ctor +M:System.Runtime.CompilerServices.IteratorStateMachineAttribute.#ctor(System.Type) +M:System.Runtime.CompilerServices.ITuple.get_Item(System.Int32) +M:System.Runtime.CompilerServices.ITuple.get_Length +M:System.Runtime.CompilerServices.MethodImplAttribute.#ctor +M:System.Runtime.CompilerServices.MethodImplAttribute.#ctor(System.Int16) +M:System.Runtime.CompilerServices.MethodImplAttribute.#ctor(System.Runtime.CompilerServices.MethodImplOptions) +M:System.Runtime.CompilerServices.MethodImplAttribute.get_Value +M:System.Runtime.CompilerServices.ModuleInitializerAttribute.#ctor +M:System.Runtime.CompilerServices.NullableAttribute.#ctor(System.Byte) +M:System.Runtime.CompilerServices.NullableAttribute.#ctor(System.Byte[]) +M:System.Runtime.CompilerServices.NullableContextAttribute.#ctor(System.Byte) +M:System.Runtime.CompilerServices.NullablePublicOnlyAttribute.#ctor(System.Boolean) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.Create +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.get_Task +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.SetException(System.Exception) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.SetResult +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder.Start``1(``0@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.Create +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.get_Task +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.SetException(System.Exception) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.SetResult(`0) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) +M:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.Start``1(``0@) +M:System.Runtime.CompilerServices.PreserveBaseOverridesAttribute.#ctor +M:System.Runtime.CompilerServices.ReferenceAssemblyAttribute.#ctor +M:System.Runtime.CompilerServices.ReferenceAssemblyAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.ReferenceAssemblyAttribute.get_Description +M:System.Runtime.CompilerServices.RefSafetyRulesAttribute.#ctor(System.Int32) +M:System.Runtime.CompilerServices.RefSafetyRulesAttribute.get_Version +M:System.Runtime.CompilerServices.RequiredMemberAttribute.#ctor +M:System.Runtime.CompilerServices.RequiresLocationAttribute.#ctor +M:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.#ctor +M:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.get_WrapNonExceptionThrows +M:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +M:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeCompiled +M:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported +M:System.Runtime.CompilerServices.RuntimeFeature.IsSupported(System.String) +M:System.Runtime.CompilerServices.RuntimeHelpers.AllocateTypeAssociatedMemory(System.Type,System.Int32) +M:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode.#ctor(System.Object,System.IntPtr) +M:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode.BeginInvoke(System.Object,System.Boolean,System.AsyncCallback,System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode.EndInvoke(System.IAsyncResult) +M:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode.Invoke(System.Object,System.Boolean) +M:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan``1(System.RuntimeFieldHandle) +M:System.Runtime.CompilerServices.RuntimeHelpers.EnsureSufficientExecutionStack +M:System.Runtime.CompilerServices.RuntimeHelpers.Equals(System.Object,System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(System.Runtime.CompilerServices.RuntimeHelpers.TryCode,System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode,System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.get_OffsetToStringData +M:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.GetObjectValue(System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.GetSubArray``1(``0[],System.Range) +M:System.Runtime.CompilerServices.RuntimeHelpers.GetUninitializedObject(System.Type) +M:System.Runtime.CompilerServices.RuntimeHelpers.InitializeArray(System.Array,System.RuntimeFieldHandle) +M:System.Runtime.CompilerServices.RuntimeHelpers.IsReferenceOrContainsReferences``1 +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareConstrainedRegions +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareConstrainedRegionsNoOP +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareContractedDelegate(System.Delegate) +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareDelegate(System.Delegate) +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareMethod(System.RuntimeMethodHandle) +M:System.Runtime.CompilerServices.RuntimeHelpers.PrepareMethod(System.RuntimeMethodHandle,System.RuntimeTypeHandle[]) +M:System.Runtime.CompilerServices.RuntimeHelpers.ProbeForSufficientStack +M:System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(System.RuntimeTypeHandle) +M:System.Runtime.CompilerServices.RuntimeHelpers.RunModuleConstructor(System.ModuleHandle) +M:System.Runtime.CompilerServices.RuntimeHelpers.TryCode.#ctor(System.Object,System.IntPtr) +M:System.Runtime.CompilerServices.RuntimeHelpers.TryCode.BeginInvoke(System.Object,System.AsyncCallback,System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.TryCode.EndInvoke(System.IAsyncResult) +M:System.Runtime.CompilerServices.RuntimeHelpers.TryCode.Invoke(System.Object) +M:System.Runtime.CompilerServices.RuntimeHelpers.TryEnsureSufficientExecutionStack +M:System.Runtime.CompilerServices.RuntimeWrappedException.#ctor(System.Object) +M:System.Runtime.CompilerServices.RuntimeWrappedException.get_WrappedException +M:System.Runtime.CompilerServices.RuntimeWrappedException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Runtime.CompilerServices.ScopedRefAttribute.#ctor +M:System.Runtime.CompilerServices.SkipLocalsInitAttribute.#ctor +M:System.Runtime.CompilerServices.SpecialNameAttribute.#ctor +M:System.Runtime.CompilerServices.StateMachineAttribute.#ctor(System.Type) +M:System.Runtime.CompilerServices.StateMachineAttribute.get_StateMachineType +M:System.Runtime.CompilerServices.StringFreezingAttribute.#ctor +M:System.Runtime.CompilerServices.StrongBox`1.#ctor +M:System.Runtime.CompilerServices.StrongBox`1.#ctor(`0) +M:System.Runtime.CompilerServices.SuppressIldasmAttribute.#ctor +M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor +M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.Exception) +M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.Object) +M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.String) +M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.String,System.Exception) +M:System.Runtime.CompilerServices.SwitchExpressionException.get_Message +M:System.Runtime.CompilerServices.SwitchExpressionException.get_UnmatchedValue +M:System.Runtime.CompilerServices.SwitchExpressionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Runtime.CompilerServices.TaskAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.TaskAwaiter.GetResult +M:System.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.TaskAwaiter`1.get_IsCompleted +M:System.Runtime.CompilerServices.TaskAwaiter`1.GetResult +M:System.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.TupleElementNamesAttribute.#ctor(System.String[]) +M:System.Runtime.CompilerServices.TupleElementNamesAttribute.get_TransformNames +M:System.Runtime.CompilerServices.TypeForwardedFromAttribute.#ctor(System.String) +M:System.Runtime.CompilerServices.TypeForwardedFromAttribute.get_AssemblyFullName +M:System.Runtime.CompilerServices.TypeForwardedToAttribute.#ctor(System.Type) +M:System.Runtime.CompilerServices.TypeForwardedToAttribute.get_Destination +M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32) +M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr) +M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.UIntPtr) +M:System.Runtime.CompilerServices.Unsafe.Add``1(System.Void*,System.Int32) +M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr) +M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.UIntPtr) +M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@) +M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object) +M:System.Runtime.CompilerServices.Unsafe.As``2(``0@) +M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@) +M:System.Runtime.CompilerServices.Unsafe.AsRef``1(``0@) +M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*) +M:System.Runtime.CompilerServices.Unsafe.BitCast``2(``0) +M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@) +M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*) +M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@) +M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32) +M:System.Runtime.CompilerServices.Unsafe.IsAddressGreaterThan``1(``0@,``0@) +M:System.Runtime.CompilerServices.Unsafe.IsAddressLessThan``1(``0@,``0@) +M:System.Runtime.CompilerServices.Unsafe.IsNullRef``1(``0@) +M:System.Runtime.CompilerServices.Unsafe.NullRef``1 +M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*) +M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@) +M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*) +M:System.Runtime.CompilerServices.Unsafe.SizeOf``1 +M:System.Runtime.CompilerServices.Unsafe.SkipInit``1(``0@) +M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32) +M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr) +M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.UIntPtr) +M:System.Runtime.CompilerServices.Unsafe.Subtract``1(System.Void*,System.Int32) +M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr) +M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.UIntPtr) +M:System.Runtime.CompilerServices.Unsafe.Unbox``1(System.Object) +M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0) +M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0) +M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0) +M:System.Runtime.CompilerServices.UnsafeAccessorAttribute.#ctor(System.Runtime.CompilerServices.UnsafeAccessorKind) +M:System.Runtime.CompilerServices.UnsafeAccessorAttribute.get_Kind +M:System.Runtime.CompilerServices.UnsafeAccessorAttribute.get_Name +M:System.Runtime.CompilerServices.UnsafeAccessorAttribute.set_Name(System.String) +M:System.Runtime.CompilerServices.UnsafeValueTypeAttribute.#ctor +M:System.Runtime.CompilerServices.ValueTaskAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.ValueTaskAwaiter.GetResult +M:System.Runtime.CompilerServices.ValueTaskAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ValueTaskAwaiter.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.get_IsCompleted +M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.GetResult +M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.UnsafeOnCompleted(System.Action) +M:System.Runtime.CompilerServices.YieldAwaitable.GetAwaiter +M:System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.get_IsCompleted +M:System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult +M:System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action) +M:System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action) +M:System.RuntimeFieldHandle.Equals(System.Object) +M:System.RuntimeFieldHandle.Equals(System.RuntimeFieldHandle) +M:System.RuntimeFieldHandle.FromIntPtr(System.IntPtr) +M:System.RuntimeFieldHandle.get_Value +M:System.RuntimeFieldHandle.GetHashCode +M:System.RuntimeFieldHandle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.RuntimeFieldHandle.op_Equality(System.RuntimeFieldHandle,System.RuntimeFieldHandle) +M:System.RuntimeFieldHandle.op_Inequality(System.RuntimeFieldHandle,System.RuntimeFieldHandle) +M:System.RuntimeFieldHandle.ToIntPtr(System.RuntimeFieldHandle) +M:System.RuntimeMethodHandle.Equals(System.Object) +M:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) +M:System.RuntimeMethodHandle.FromIntPtr(System.IntPtr) +M:System.RuntimeMethodHandle.get_Value +M:System.RuntimeMethodHandle.GetFunctionPointer +M:System.RuntimeMethodHandle.GetHashCode +M:System.RuntimeMethodHandle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.RuntimeMethodHandle.op_Equality(System.RuntimeMethodHandle,System.RuntimeMethodHandle) +M:System.RuntimeMethodHandle.op_Inequality(System.RuntimeMethodHandle,System.RuntimeMethodHandle) +M:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) +M:System.RuntimeTypeHandle.Equals(System.Object) +M:System.RuntimeTypeHandle.Equals(System.RuntimeTypeHandle) +M:System.RuntimeTypeHandle.FromIntPtr(System.IntPtr) +M:System.RuntimeTypeHandle.get_Value +M:System.RuntimeTypeHandle.GetHashCode +M:System.RuntimeTypeHandle.GetModuleHandle +M:System.RuntimeTypeHandle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.RuntimeTypeHandle.op_Equality(System.Object,System.RuntimeTypeHandle) +M:System.RuntimeTypeHandle.op_Equality(System.RuntimeTypeHandle,System.Object) +M:System.RuntimeTypeHandle.op_Inequality(System.Object,System.RuntimeTypeHandle) +M:System.RuntimeTypeHandle.op_Inequality(System.RuntimeTypeHandle,System.Object) +M:System.RuntimeTypeHandle.ToIntPtr(System.RuntimeTypeHandle) +M:System.SByte.Abs(System.SByte) +M:System.SByte.Clamp(System.SByte,System.SByte,System.SByte) +M:System.SByte.CompareTo(System.Object) +M:System.SByte.CompareTo(System.SByte) +M:System.SByte.CopySign(System.SByte,System.SByte) +M:System.SByte.CreateChecked``1(``0) +M:System.SByte.CreateSaturating``1(``0) +M:System.SByte.CreateTruncating``1(``0) +M:System.SByte.DivRem(System.SByte,System.SByte) +M:System.SByte.Equals(System.Object) +M:System.SByte.Equals(System.SByte) +M:System.SByte.GetHashCode +M:System.SByte.GetTypeCode +M:System.SByte.IsEvenInteger(System.SByte) +M:System.SByte.IsNegative(System.SByte) +M:System.SByte.IsOddInteger(System.SByte) +M:System.SByte.IsPositive(System.SByte) +M:System.SByte.IsPow2(System.SByte) +M:System.SByte.LeadingZeroCount(System.SByte) +M:System.SByte.Log2(System.SByte) +M:System.SByte.Max(System.SByte,System.SByte) +M:System.SByte.MaxMagnitude(System.SByte,System.SByte) +M:System.SByte.Min(System.SByte,System.SByte) +M:System.SByte.MinMagnitude(System.SByte,System.SByte) +M:System.SByte.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.SByte.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.SByte.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.SByte.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.SByte.Parse(System.String) +M:System.SByte.Parse(System.String,System.Globalization.NumberStyles) +M:System.SByte.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.SByte.Parse(System.String,System.IFormatProvider) +M:System.SByte.PopCount(System.SByte) +M:System.SByte.RotateLeft(System.SByte,System.Int32) +M:System.SByte.RotateRight(System.SByte,System.Int32) +M:System.SByte.Sign(System.SByte) +M:System.SByte.ToString +M:System.SByte.ToString(System.IFormatProvider) +M:System.SByte.ToString(System.String) +M:System.SByte.ToString(System.String,System.IFormatProvider) +M:System.SByte.TrailingZeroCount(System.SByte) +M:System.SByte.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.SByte.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Byte},System.SByte@) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.ReadOnlySpan{System.Char},System.SByte@) +M:System.SByte.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.String,System.IFormatProvider,System.SByte@) +M:System.SByte.TryParse(System.String,System.SByte@) +M:System.SerializableAttribute.#ctor +M:System.Single.Abs(System.Single) +M:System.Single.Acos(System.Single) +M:System.Single.Acosh(System.Single) +M:System.Single.AcosPi(System.Single) +M:System.Single.Asin(System.Single) +M:System.Single.Asinh(System.Single) +M:System.Single.AsinPi(System.Single) +M:System.Single.Atan(System.Single) +M:System.Single.Atan2(System.Single,System.Single) +M:System.Single.Atan2Pi(System.Single,System.Single) +M:System.Single.Atanh(System.Single) +M:System.Single.AtanPi(System.Single) +M:System.Single.BitDecrement(System.Single) +M:System.Single.BitIncrement(System.Single) +M:System.Single.Cbrt(System.Single) +M:System.Single.Ceiling(System.Single) +M:System.Single.Clamp(System.Single,System.Single,System.Single) +M:System.Single.CompareTo(System.Object) +M:System.Single.CompareTo(System.Single) +M:System.Single.CopySign(System.Single,System.Single) +M:System.Single.Cos(System.Single) +M:System.Single.Cosh(System.Single) +M:System.Single.CosPi(System.Single) +M:System.Single.CreateChecked``1(``0) +M:System.Single.CreateSaturating``1(``0) +M:System.Single.CreateTruncating``1(``0) +M:System.Single.DegreesToRadians(System.Single) +M:System.Single.Equals(System.Object) +M:System.Single.Equals(System.Single) +M:System.Single.Exp(System.Single) +M:System.Single.Exp10(System.Single) +M:System.Single.Exp10M1(System.Single) +M:System.Single.Exp2(System.Single) +M:System.Single.Exp2M1(System.Single) +M:System.Single.ExpM1(System.Single) +M:System.Single.Floor(System.Single) +M:System.Single.FusedMultiplyAdd(System.Single,System.Single,System.Single) +M:System.Single.GetHashCode +M:System.Single.GetTypeCode +M:System.Single.Hypot(System.Single,System.Single) +M:System.Single.Ieee754Remainder(System.Single,System.Single) +M:System.Single.ILogB(System.Single) +M:System.Single.IsEvenInteger(System.Single) +M:System.Single.IsFinite(System.Single) +M:System.Single.IsInfinity(System.Single) +M:System.Single.IsInteger(System.Single) +M:System.Single.IsNaN(System.Single) +M:System.Single.IsNegative(System.Single) +M:System.Single.IsNegativeInfinity(System.Single) +M:System.Single.IsNormal(System.Single) +M:System.Single.IsOddInteger(System.Single) +M:System.Single.IsPositive(System.Single) +M:System.Single.IsPositiveInfinity(System.Single) +M:System.Single.IsPow2(System.Single) +M:System.Single.IsRealNumber(System.Single) +M:System.Single.IsSubnormal(System.Single) +M:System.Single.Lerp(System.Single,System.Single,System.Single) +M:System.Single.Log(System.Single) +M:System.Single.Log(System.Single,System.Single) +M:System.Single.Log10(System.Single) +M:System.Single.Log10P1(System.Single) +M:System.Single.Log2(System.Single) +M:System.Single.Log2P1(System.Single) +M:System.Single.LogP1(System.Single) +M:System.Single.Max(System.Single,System.Single) +M:System.Single.MaxMagnitude(System.Single,System.Single) +M:System.Single.MaxMagnitudeNumber(System.Single,System.Single) +M:System.Single.MaxNumber(System.Single,System.Single) +M:System.Single.Min(System.Single,System.Single) +M:System.Single.MinMagnitude(System.Single,System.Single) +M:System.Single.MinMagnitudeNumber(System.Single,System.Single) +M:System.Single.MinNumber(System.Single,System.Single) +M:System.Single.op_Equality(System.Single,System.Single) +M:System.Single.op_GreaterThan(System.Single,System.Single) +M:System.Single.op_GreaterThanOrEqual(System.Single,System.Single) +M:System.Single.op_Inequality(System.Single,System.Single) +M:System.Single.op_LessThan(System.Single,System.Single) +M:System.Single.op_LessThanOrEqual(System.Single,System.Single) +M:System.Single.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Single.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.Single.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Single.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Single.Parse(System.String) +M:System.Single.Parse(System.String,System.Globalization.NumberStyles) +M:System.Single.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.Single.Parse(System.String,System.IFormatProvider) +M:System.Single.Pow(System.Single,System.Single) +M:System.Single.RadiansToDegrees(System.Single) +M:System.Single.ReciprocalEstimate(System.Single) +M:System.Single.ReciprocalSqrtEstimate(System.Single) +M:System.Single.RootN(System.Single,System.Int32) +M:System.Single.Round(System.Single) +M:System.Single.Round(System.Single,System.Int32) +M:System.Single.Round(System.Single,System.Int32,System.MidpointRounding) +M:System.Single.Round(System.Single,System.MidpointRounding) +M:System.Single.ScaleB(System.Single,System.Int32) +M:System.Single.Sign(System.Single) +M:System.Single.Sin(System.Single) +M:System.Single.SinCos(System.Single) +M:System.Single.SinCosPi(System.Single) +M:System.Single.Sinh(System.Single) +M:System.Single.SinPi(System.Single) +M:System.Single.Sqrt(System.Single) +M:System.Single.Tan(System.Single) +M:System.Single.Tanh(System.Single) +M:System.Single.TanPi(System.Single) +M:System.Single.ToString +M:System.Single.ToString(System.IFormatProvider) +M:System.Single.ToString(System.String) +M:System.Single.ToString(System.String,System.IFormatProvider) +M:System.Single.Truncate(System.Single) +M:System.Single.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Single.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.Single.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.ReadOnlySpan{System.Byte},System.Single@) +M:System.Single.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.ReadOnlySpan{System.Char},System.Single@) +M:System.Single.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.String,System.IFormatProvider,System.Single@) +M:System.Single.TryParse(System.String,System.Single@) +M:System.Span`1.#ctor(`0@) +M:System.Span`1.#ctor(`0[]) +M:System.Span`1.#ctor(`0[],System.Int32,System.Int32) +M:System.Span`1.#ctor(System.Void*,System.Int32) +M:System.Span`1.Clear +M:System.Span`1.CopyTo(System.Span{`0}) +M:System.Span`1.Enumerator.get_Current +M:System.Span`1.Enumerator.MoveNext +M:System.Span`1.Equals(System.Object) +M:System.Span`1.Fill(`0) +M:System.Span`1.get_Empty +M:System.Span`1.get_IsEmpty +M:System.Span`1.get_Item(System.Int32) +M:System.Span`1.get_Length +M:System.Span`1.GetEnumerator +M:System.Span`1.GetHashCode +M:System.Span`1.GetPinnableReference +M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0}) +M:System.Span`1.op_Implicit(`0[])~System.Span{`0} +M:System.Span`1.op_Implicit(System.ArraySegment{`0})~System.Span{`0} +M:System.Span`1.op_Implicit(System.Span{`0})~System.ReadOnlySpan{`0} +M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0}) +M:System.Span`1.Slice(System.Int32) +M:System.Span`1.Slice(System.Int32,System.Int32) +M:System.Span`1.ToArray +M:System.Span`1.ToString +M:System.Span`1.TryCopyTo(System.Span{`0}) +M:System.StackOverflowException.#ctor +M:System.StackOverflowException.#ctor(System.String) +M:System.StackOverflowException.#ctor(System.String,System.Exception) +M:System.String.#ctor(System.Char*) +M:System.String.#ctor(System.Char*,System.Int32,System.Int32) +M:System.String.#ctor(System.Char,System.Int32) +M:System.String.#ctor(System.Char[]) +M:System.String.#ctor(System.Char[],System.Int32,System.Int32) +M:System.String.#ctor(System.ReadOnlySpan{System.Char}) +M:System.String.#ctor(System.SByte*) +M:System.String.#ctor(System.SByte*,System.Int32,System.Int32) +M:System.String.#ctor(System.SByte*,System.Int32,System.Int32,System.Text.Encoding) +M:System.String.Clone +M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32) +M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.Boolean) +M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.Boolean,System.Globalization.CultureInfo) +M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CultureInfo,System.Globalization.CompareOptions) +M:System.String.Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.StringComparison) +M:System.String.Compare(System.String,System.String) +M:System.String.Compare(System.String,System.String,System.Boolean) +M:System.String.Compare(System.String,System.String,System.Boolean,System.Globalization.CultureInfo) +M:System.String.Compare(System.String,System.String,System.Globalization.CultureInfo,System.Globalization.CompareOptions) +M:System.String.Compare(System.String,System.String,System.StringComparison) +M:System.String.CompareOrdinal(System.String,System.Int32,System.String,System.Int32,System.Int32) +M:System.String.CompareOrdinal(System.String,System.String) +M:System.String.CompareTo(System.Object) +M:System.String.CompareTo(System.String) +M:System.String.Concat(System.Collections.Generic.IEnumerable{System.String}) +M:System.String.Concat(System.Object) +M:System.String.Concat(System.Object,System.Object) +M:System.String.Concat(System.Object,System.Object,System.Object) +M:System.String.Concat(System.Object[]) +M:System.String.Concat(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.String.Concat(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.String.Concat(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.String.Concat(System.String,System.String) +M:System.String.Concat(System.String,System.String,System.String) +M:System.String.Concat(System.String,System.String,System.String,System.String) +M:System.String.Concat(System.String[]) +M:System.String.Concat``1(System.Collections.Generic.IEnumerable{``0}) +M:System.String.Contains(System.Char) +M:System.String.Contains(System.Char,System.StringComparison) +M:System.String.Contains(System.String) +M:System.String.Contains(System.String,System.StringComparison) +M:System.String.Copy(System.String) +M:System.String.CopyTo(System.Int32,System.Char[],System.Int32,System.Int32) +M:System.String.CopyTo(System.Span{System.Char}) +M:System.String.Create(System.IFormatProvider,System.Runtime.CompilerServices.DefaultInterpolatedStringHandler@) +M:System.String.Create(System.IFormatProvider,System.Span{System.Char},System.Runtime.CompilerServices.DefaultInterpolatedStringHandler@) +M:System.String.Create``1(System.Int32,``0,System.Buffers.SpanAction{System.Char,``0}) +M:System.String.EndsWith(System.Char) +M:System.String.EndsWith(System.String) +M:System.String.EndsWith(System.String,System.Boolean,System.Globalization.CultureInfo) +M:System.String.EndsWith(System.String,System.StringComparison) +M:System.String.EnumerateRunes +M:System.String.Equals(System.Object) +M:System.String.Equals(System.String) +M:System.String.Equals(System.String,System.String) +M:System.String.Equals(System.String,System.String,System.StringComparison) +M:System.String.Equals(System.String,System.StringComparison) +M:System.String.Format(System.IFormatProvider,System.String,System.Object) +M:System.String.Format(System.IFormatProvider,System.String,System.Object,System.Object) +M:System.String.Format(System.IFormatProvider,System.String,System.Object,System.Object,System.Object) +M:System.String.Format(System.IFormatProvider,System.String,System.Object[]) +M:System.String.Format(System.IFormatProvider,System.Text.CompositeFormat,System.Object[]) +M:System.String.Format(System.IFormatProvider,System.Text.CompositeFormat,System.ReadOnlySpan{System.Object}) +M:System.String.Format(System.String,System.Object) +M:System.String.Format(System.String,System.Object,System.Object) +M:System.String.Format(System.String,System.Object,System.Object,System.Object) +M:System.String.Format(System.String,System.Object[]) +M:System.String.Format``1(System.IFormatProvider,System.Text.CompositeFormat,``0) +M:System.String.Format``2(System.IFormatProvider,System.Text.CompositeFormat,``0,``1) +M:System.String.Format``3(System.IFormatProvider,System.Text.CompositeFormat,``0,``1,``2) +M:System.String.get_Chars(System.Int32) +M:System.String.get_Length +M:System.String.GetEnumerator +M:System.String.GetHashCode +M:System.String.GetHashCode(System.ReadOnlySpan{System.Char}) +M:System.String.GetHashCode(System.ReadOnlySpan{System.Char},System.StringComparison) +M:System.String.GetHashCode(System.StringComparison) +M:System.String.GetPinnableReference +M:System.String.GetTypeCode +M:System.String.IndexOf(System.Char) +M:System.String.IndexOf(System.Char,System.Int32) +M:System.String.IndexOf(System.Char,System.Int32,System.Int32) +M:System.String.IndexOf(System.Char,System.StringComparison) +M:System.String.IndexOf(System.String) +M:System.String.IndexOf(System.String,System.Int32) +M:System.String.IndexOf(System.String,System.Int32,System.Int32) +M:System.String.IndexOf(System.String,System.Int32,System.Int32,System.StringComparison) +M:System.String.IndexOf(System.String,System.Int32,System.StringComparison) +M:System.String.IndexOf(System.String,System.StringComparison) +M:System.String.IndexOfAny(System.Char[]) +M:System.String.IndexOfAny(System.Char[],System.Int32) +M:System.String.IndexOfAny(System.Char[],System.Int32,System.Int32) +M:System.String.Insert(System.Int32,System.String) +M:System.String.Intern(System.String) +M:System.String.IsInterned(System.String) +M:System.String.IsNormalized +M:System.String.IsNormalized(System.Text.NormalizationForm) +M:System.String.IsNullOrEmpty(System.String) +M:System.String.IsNullOrWhiteSpace(System.String) +M:System.String.Join(System.Char,System.Object[]) +M:System.String.Join(System.Char,System.String[]) +M:System.String.Join(System.Char,System.String[],System.Int32,System.Int32) +M:System.String.Join(System.String,System.Collections.Generic.IEnumerable{System.String}) +M:System.String.Join(System.String,System.Object[]) +M:System.String.Join(System.String,System.String[]) +M:System.String.Join(System.String,System.String[],System.Int32,System.Int32) +M:System.String.Join``1(System.Char,System.Collections.Generic.IEnumerable{``0}) +M:System.String.Join``1(System.String,System.Collections.Generic.IEnumerable{``0}) +M:System.String.LastIndexOf(System.Char) +M:System.String.LastIndexOf(System.Char,System.Int32) +M:System.String.LastIndexOf(System.Char,System.Int32,System.Int32) +M:System.String.LastIndexOf(System.String) +M:System.String.LastIndexOf(System.String,System.Int32) +M:System.String.LastIndexOf(System.String,System.Int32,System.Int32) +M:System.String.LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison) +M:System.String.LastIndexOf(System.String,System.Int32,System.StringComparison) +M:System.String.LastIndexOf(System.String,System.StringComparison) +M:System.String.LastIndexOfAny(System.Char[]) +M:System.String.LastIndexOfAny(System.Char[],System.Int32) +M:System.String.LastIndexOfAny(System.Char[],System.Int32,System.Int32) +M:System.String.Normalize +M:System.String.Normalize(System.Text.NormalizationForm) +M:System.String.op_Equality(System.String,System.String) +M:System.String.op_Implicit(System.String)~System.ReadOnlySpan{System.Char} +M:System.String.op_Inequality(System.String,System.String) +M:System.String.PadLeft(System.Int32) +M:System.String.PadLeft(System.Int32,System.Char) +M:System.String.PadRight(System.Int32) +M:System.String.PadRight(System.Int32,System.Char) +M:System.String.Remove(System.Int32) +M:System.String.Remove(System.Int32,System.Int32) +M:System.String.Replace(System.Char,System.Char) +M:System.String.Replace(System.String,System.String) +M:System.String.Replace(System.String,System.String,System.Boolean,System.Globalization.CultureInfo) +M:System.String.Replace(System.String,System.String,System.StringComparison) +M:System.String.ReplaceLineEndings +M:System.String.ReplaceLineEndings(System.String) +M:System.String.Split(System.Char,System.Int32,System.StringSplitOptions) +M:System.String.Split(System.Char,System.StringSplitOptions) +M:System.String.Split(System.Char[]) +M:System.String.Split(System.Char[],System.Int32) +M:System.String.Split(System.Char[],System.Int32,System.StringSplitOptions) +M:System.String.Split(System.Char[],System.StringSplitOptions) +M:System.String.Split(System.String,System.Int32,System.StringSplitOptions) +M:System.String.Split(System.String,System.StringSplitOptions) +M:System.String.Split(System.String[],System.Int32,System.StringSplitOptions) +M:System.String.Split(System.String[],System.StringSplitOptions) +M:System.String.StartsWith(System.Char) +M:System.String.StartsWith(System.String) +M:System.String.StartsWith(System.String,System.Boolean,System.Globalization.CultureInfo) +M:System.String.StartsWith(System.String,System.StringComparison) +M:System.String.Substring(System.Int32) +M:System.String.Substring(System.Int32,System.Int32) +M:System.String.ToCharArray +M:System.String.ToCharArray(System.Int32,System.Int32) +M:System.String.ToLower +M:System.String.ToLower(System.Globalization.CultureInfo) +M:System.String.ToLowerInvariant +M:System.String.ToString +M:System.String.ToString(System.IFormatProvider) +M:System.String.ToUpper +M:System.String.ToUpper(System.Globalization.CultureInfo) +M:System.String.ToUpperInvariant +M:System.String.Trim +M:System.String.Trim(System.Char) +M:System.String.Trim(System.Char[]) +M:System.String.TrimEnd +M:System.String.TrimEnd(System.Char) +M:System.String.TrimEnd(System.Char[]) +M:System.String.TrimStart +M:System.String.TrimStart(System.Char) +M:System.String.TrimStart(System.Char[]) +M:System.String.TryCopyTo(System.Span{System.Char}) +M:System.StringComparer.#ctor +M:System.StringComparer.Compare(System.Object,System.Object) +M:System.StringComparer.Compare(System.String,System.String) +M:System.StringComparer.Create(System.Globalization.CultureInfo,System.Boolean) +M:System.StringComparer.Create(System.Globalization.CultureInfo,System.Globalization.CompareOptions) +M:System.StringComparer.Equals(System.Object,System.Object) +M:System.StringComparer.Equals(System.String,System.String) +M:System.StringComparer.FromComparison(System.StringComparison) +M:System.StringComparer.get_CurrentCulture +M:System.StringComparer.get_CurrentCultureIgnoreCase +M:System.StringComparer.get_InvariantCulture +M:System.StringComparer.get_InvariantCultureIgnoreCase +M:System.StringComparer.get_Ordinal +M:System.StringComparer.get_OrdinalIgnoreCase +M:System.StringComparer.GetHashCode(System.Object) +M:System.StringComparer.GetHashCode(System.String) +M:System.StringComparer.IsWellKnownCultureAwareComparer(System.Collections.Generic.IEqualityComparer{System.String},System.Globalization.CompareInfo@,System.Globalization.CompareOptions@) +M:System.StringComparer.IsWellKnownOrdinalComparer(System.Collections.Generic.IEqualityComparer{System.String},System.Boolean@) +M:System.StringNormalizationExtensions.IsNormalized(System.String) +M:System.StringNormalizationExtensions.IsNormalized(System.String,System.Text.NormalizationForm) +M:System.StringNormalizationExtensions.Normalize(System.String) +M:System.StringNormalizationExtensions.Normalize(System.String,System.Text.NormalizationForm) +M:System.SystemException.#ctor +M:System.SystemException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.SystemException.#ctor(System.String) +M:System.SystemException.#ctor(System.String,System.Exception) +M:System.Text.Ascii.Equals(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.Equals(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.Equals(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.Equals(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.EqualsIgnoreCase(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.EqualsIgnoreCase(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.EqualsIgnoreCase(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.EqualsIgnoreCase(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.FromUtf16(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.IsValid(System.Byte) +M:System.Text.Ascii.IsValid(System.Char) +M:System.Text.Ascii.IsValid(System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.IsValid(System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.ToLower(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToLower(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToLower(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToLower(System.ReadOnlySpan{System.Char},System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToLowerInPlace(System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToLowerInPlace(System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToUpper(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToUpper(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToUpper(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToUpper(System.ReadOnlySpan{System.Char},System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToUpperInPlace(System.Span{System.Byte},System.Int32@) +M:System.Text.Ascii.ToUpperInPlace(System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.ToUtf16(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@) +M:System.Text.Ascii.Trim(System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.Trim(System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.TrimEnd(System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.TrimEnd(System.ReadOnlySpan{System.Char}) +M:System.Text.Ascii.TrimStart(System.ReadOnlySpan{System.Byte}) +M:System.Text.Ascii.TrimStart(System.ReadOnlySpan{System.Char}) +M:System.Text.CompositeFormat.get_Format +M:System.Text.CompositeFormat.get_MinimumArgumentCount +M:System.Text.CompositeFormat.Parse(System.String) +M:System.Text.Decoder.#ctor +M:System.Text.Decoder.Convert(System.Byte*,System.Int32,System.Char*,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Decoder.Convert(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Decoder.Convert(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Decoder.get_Fallback +M:System.Text.Decoder.get_FallbackBuffer +M:System.Text.Decoder.GetCharCount(System.Byte*,System.Int32,System.Boolean) +M:System.Text.Decoder.GetCharCount(System.Byte[],System.Int32,System.Int32) +M:System.Text.Decoder.GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean) +M:System.Text.Decoder.GetCharCount(System.ReadOnlySpan{System.Byte},System.Boolean) +M:System.Text.Decoder.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Boolean) +M:System.Text.Decoder.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) +M:System.Text.Decoder.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean) +M:System.Text.Decoder.GetChars(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Boolean) +M:System.Text.Decoder.Reset +M:System.Text.Decoder.set_Fallback(System.Text.DecoderFallback) +M:System.Text.DecoderExceptionFallback.#ctor +M:System.Text.DecoderExceptionFallback.CreateFallbackBuffer +M:System.Text.DecoderExceptionFallback.Equals(System.Object) +M:System.Text.DecoderExceptionFallback.get_MaxCharCount +M:System.Text.DecoderExceptionFallback.GetHashCode +M:System.Text.DecoderExceptionFallbackBuffer.#ctor +M:System.Text.DecoderExceptionFallbackBuffer.Fallback(System.Byte[],System.Int32) +M:System.Text.DecoderExceptionFallbackBuffer.get_Remaining +M:System.Text.DecoderExceptionFallbackBuffer.GetNextChar +M:System.Text.DecoderExceptionFallbackBuffer.MovePrevious +M:System.Text.DecoderFallback.#ctor +M:System.Text.DecoderFallback.CreateFallbackBuffer +M:System.Text.DecoderFallback.get_ExceptionFallback +M:System.Text.DecoderFallback.get_MaxCharCount +M:System.Text.DecoderFallback.get_ReplacementFallback +M:System.Text.DecoderFallbackBuffer.#ctor +M:System.Text.DecoderFallbackBuffer.Fallback(System.Byte[],System.Int32) +M:System.Text.DecoderFallbackBuffer.get_Remaining +M:System.Text.DecoderFallbackBuffer.GetNextChar +M:System.Text.DecoderFallbackBuffer.MovePrevious +M:System.Text.DecoderFallbackBuffer.Reset +M:System.Text.DecoderFallbackException.#ctor +M:System.Text.DecoderFallbackException.#ctor(System.String) +M:System.Text.DecoderFallbackException.#ctor(System.String,System.Byte[],System.Int32) +M:System.Text.DecoderFallbackException.#ctor(System.String,System.Exception) +M:System.Text.DecoderFallbackException.get_BytesUnknown +M:System.Text.DecoderFallbackException.get_Index +M:System.Text.DecoderReplacementFallback.#ctor +M:System.Text.DecoderReplacementFallback.#ctor(System.String) +M:System.Text.DecoderReplacementFallback.CreateFallbackBuffer +M:System.Text.DecoderReplacementFallback.Equals(System.Object) +M:System.Text.DecoderReplacementFallback.get_DefaultString +M:System.Text.DecoderReplacementFallback.get_MaxCharCount +M:System.Text.DecoderReplacementFallback.GetHashCode +M:System.Text.DecoderReplacementFallbackBuffer.#ctor(System.Text.DecoderReplacementFallback) +M:System.Text.DecoderReplacementFallbackBuffer.Fallback(System.Byte[],System.Int32) +M:System.Text.DecoderReplacementFallbackBuffer.get_Remaining +M:System.Text.DecoderReplacementFallbackBuffer.GetNextChar +M:System.Text.DecoderReplacementFallbackBuffer.MovePrevious +M:System.Text.DecoderReplacementFallbackBuffer.Reset +M:System.Text.Encoder.#ctor +M:System.Text.Encoder.Convert(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Encoder.Convert(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Encoder.Convert(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Boolean,System.Int32@,System.Int32@,System.Boolean@) +M:System.Text.Encoder.get_Fallback +M:System.Text.Encoder.get_FallbackBuffer +M:System.Text.Encoder.GetByteCount(System.Char*,System.Int32,System.Boolean) +M:System.Text.Encoder.GetByteCount(System.Char[],System.Int32,System.Int32,System.Boolean) +M:System.Text.Encoder.GetByteCount(System.ReadOnlySpan{System.Char},System.Boolean) +M:System.Text.Encoder.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean) +M:System.Text.Encoder.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Boolean) +M:System.Text.Encoder.GetBytes(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Boolean) +M:System.Text.Encoder.Reset +M:System.Text.Encoder.set_Fallback(System.Text.EncoderFallback) +M:System.Text.EncoderExceptionFallback.#ctor +M:System.Text.EncoderExceptionFallback.CreateFallbackBuffer +M:System.Text.EncoderExceptionFallback.Equals(System.Object) +M:System.Text.EncoderExceptionFallback.get_MaxCharCount +M:System.Text.EncoderExceptionFallback.GetHashCode +M:System.Text.EncoderExceptionFallbackBuffer.#ctor +M:System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char,System.Char,System.Int32) +M:System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char,System.Int32) +M:System.Text.EncoderExceptionFallbackBuffer.get_Remaining +M:System.Text.EncoderExceptionFallbackBuffer.GetNextChar +M:System.Text.EncoderExceptionFallbackBuffer.MovePrevious +M:System.Text.EncoderFallback.#ctor +M:System.Text.EncoderFallback.CreateFallbackBuffer +M:System.Text.EncoderFallback.get_ExceptionFallback +M:System.Text.EncoderFallback.get_MaxCharCount +M:System.Text.EncoderFallback.get_ReplacementFallback +M:System.Text.EncoderFallbackBuffer.#ctor +M:System.Text.EncoderFallbackBuffer.Fallback(System.Char,System.Char,System.Int32) +M:System.Text.EncoderFallbackBuffer.Fallback(System.Char,System.Int32) +M:System.Text.EncoderFallbackBuffer.get_Remaining +M:System.Text.EncoderFallbackBuffer.GetNextChar +M:System.Text.EncoderFallbackBuffer.MovePrevious +M:System.Text.EncoderFallbackBuffer.Reset +M:System.Text.EncoderFallbackException.#ctor +M:System.Text.EncoderFallbackException.#ctor(System.String) +M:System.Text.EncoderFallbackException.#ctor(System.String,System.Exception) +M:System.Text.EncoderFallbackException.get_CharUnknown +M:System.Text.EncoderFallbackException.get_CharUnknownHigh +M:System.Text.EncoderFallbackException.get_CharUnknownLow +M:System.Text.EncoderFallbackException.get_Index +M:System.Text.EncoderFallbackException.IsUnknownSurrogate +M:System.Text.EncoderReplacementFallback.#ctor +M:System.Text.EncoderReplacementFallback.#ctor(System.String) +M:System.Text.EncoderReplacementFallback.CreateFallbackBuffer +M:System.Text.EncoderReplacementFallback.Equals(System.Object) +M:System.Text.EncoderReplacementFallback.get_DefaultString +M:System.Text.EncoderReplacementFallback.get_MaxCharCount +M:System.Text.EncoderReplacementFallback.GetHashCode +M:System.Text.EncoderReplacementFallbackBuffer.#ctor(System.Text.EncoderReplacementFallback) +M:System.Text.EncoderReplacementFallbackBuffer.Fallback(System.Char,System.Char,System.Int32) +M:System.Text.EncoderReplacementFallbackBuffer.Fallback(System.Char,System.Int32) +M:System.Text.EncoderReplacementFallbackBuffer.get_Remaining +M:System.Text.EncoderReplacementFallbackBuffer.GetNextChar +M:System.Text.EncoderReplacementFallbackBuffer.MovePrevious +M:System.Text.EncoderReplacementFallbackBuffer.Reset +M:System.Text.Encoding.#ctor +M:System.Text.Encoding.#ctor(System.Int32) +M:System.Text.Encoding.#ctor(System.Int32,System.Text.EncoderFallback,System.Text.DecoderFallback) +M:System.Text.Encoding.Clone +M:System.Text.Encoding.Convert(System.Text.Encoding,System.Text.Encoding,System.Byte[]) +M:System.Text.Encoding.Convert(System.Text.Encoding,System.Text.Encoding,System.Byte[],System.Int32,System.Int32) +M:System.Text.Encoding.CreateTranscodingStream(System.IO.Stream,System.Text.Encoding,System.Text.Encoding,System.Boolean) +M:System.Text.Encoding.Equals(System.Object) +M:System.Text.Encoding.get_ASCII +M:System.Text.Encoding.get_BigEndianUnicode +M:System.Text.Encoding.get_BodyName +M:System.Text.Encoding.get_CodePage +M:System.Text.Encoding.get_DecoderFallback +M:System.Text.Encoding.get_Default +M:System.Text.Encoding.get_EncoderFallback +M:System.Text.Encoding.get_EncodingName +M:System.Text.Encoding.get_HeaderName +M:System.Text.Encoding.get_IsBrowserDisplay +M:System.Text.Encoding.get_IsBrowserSave +M:System.Text.Encoding.get_IsMailNewsDisplay +M:System.Text.Encoding.get_IsMailNewsSave +M:System.Text.Encoding.get_IsReadOnly +M:System.Text.Encoding.get_IsSingleByte +M:System.Text.Encoding.get_Latin1 +M:System.Text.Encoding.get_Preamble +M:System.Text.Encoding.get_Unicode +M:System.Text.Encoding.get_UTF32 +M:System.Text.Encoding.get_UTF7 +M:System.Text.Encoding.get_UTF8 +M:System.Text.Encoding.get_WebName +M:System.Text.Encoding.get_WindowsCodePage +M:System.Text.Encoding.GetByteCount(System.Char*,System.Int32) +M:System.Text.Encoding.GetByteCount(System.Char[]) +M:System.Text.Encoding.GetByteCount(System.Char[],System.Int32,System.Int32) +M:System.Text.Encoding.GetByteCount(System.ReadOnlySpan{System.Char}) +M:System.Text.Encoding.GetByteCount(System.String) +M:System.Text.Encoding.GetByteCount(System.String,System.Int32,System.Int32) +M:System.Text.Encoding.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32) +M:System.Text.Encoding.GetBytes(System.Char[]) +M:System.Text.Encoding.GetBytes(System.Char[],System.Int32,System.Int32) +M:System.Text.Encoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32) +M:System.Text.Encoding.GetBytes(System.ReadOnlySpan{System.Char},System.Span{System.Byte}) +M:System.Text.Encoding.GetBytes(System.String) +M:System.Text.Encoding.GetBytes(System.String,System.Int32,System.Int32) +M:System.Text.Encoding.GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) +M:System.Text.Encoding.GetCharCount(System.Byte*,System.Int32) +M:System.Text.Encoding.GetCharCount(System.Byte[]) +M:System.Text.Encoding.GetCharCount(System.Byte[],System.Int32,System.Int32) +M:System.Text.Encoding.GetCharCount(System.ReadOnlySpan{System.Byte}) +M:System.Text.Encoding.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32) +M:System.Text.Encoding.GetChars(System.Byte[]) +M:System.Text.Encoding.GetChars(System.Byte[],System.Int32,System.Int32) +M:System.Text.Encoding.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) +M:System.Text.Encoding.GetChars(System.ReadOnlySpan{System.Byte},System.Span{System.Char}) +M:System.Text.Encoding.GetDecoder +M:System.Text.Encoding.GetEncoder +M:System.Text.Encoding.GetEncoding(System.Int32) +M:System.Text.Encoding.GetEncoding(System.Int32,System.Text.EncoderFallback,System.Text.DecoderFallback) +M:System.Text.Encoding.GetEncoding(System.String) +M:System.Text.Encoding.GetEncoding(System.String,System.Text.EncoderFallback,System.Text.DecoderFallback) +M:System.Text.Encoding.GetEncodings +M:System.Text.Encoding.GetHashCode +M:System.Text.Encoding.GetMaxByteCount(System.Int32) +M:System.Text.Encoding.GetMaxCharCount(System.Int32) +M:System.Text.Encoding.GetPreamble +M:System.Text.Encoding.GetString(System.Byte*,System.Int32) +M:System.Text.Encoding.GetString(System.Byte[]) +M:System.Text.Encoding.GetString(System.Byte[],System.Int32,System.Int32) +M:System.Text.Encoding.GetString(System.ReadOnlySpan{System.Byte}) +M:System.Text.Encoding.IsAlwaysNormalized +M:System.Text.Encoding.IsAlwaysNormalized(System.Text.NormalizationForm) +M:System.Text.Encoding.RegisterProvider(System.Text.EncodingProvider) +M:System.Text.Encoding.set_DecoderFallback(System.Text.DecoderFallback) +M:System.Text.Encoding.set_EncoderFallback(System.Text.EncoderFallback) +M:System.Text.Encoding.TryGetBytes(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@) +M:System.Text.Encoding.TryGetChars(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@) +M:System.Text.EncodingInfo.#ctor(System.Text.EncodingProvider,System.Int32,System.String,System.String) +M:System.Text.EncodingInfo.Equals(System.Object) +M:System.Text.EncodingInfo.get_CodePage +M:System.Text.EncodingInfo.get_DisplayName +M:System.Text.EncodingInfo.get_Name +M:System.Text.EncodingInfo.GetEncoding +M:System.Text.EncodingInfo.GetHashCode +M:System.Text.EncodingProvider.#ctor +M:System.Text.EncodingProvider.GetEncoding(System.Int32) +M:System.Text.EncodingProvider.GetEncoding(System.Int32,System.Text.EncoderFallback,System.Text.DecoderFallback) +M:System.Text.EncodingProvider.GetEncoding(System.String) +M:System.Text.EncodingProvider.GetEncoding(System.String,System.Text.EncoderFallback,System.Text.DecoderFallback) +M:System.Text.EncodingProvider.GetEncodings +M:System.Text.Rune.#ctor(System.Char) +M:System.Text.Rune.#ctor(System.Char,System.Char) +M:System.Text.Rune.#ctor(System.Int32) +M:System.Text.Rune.#ctor(System.UInt32) +M:System.Text.Rune.CompareTo(System.Text.Rune) +M:System.Text.Rune.DecodeFromUtf16(System.ReadOnlySpan{System.Char},System.Text.Rune@,System.Int32@) +M:System.Text.Rune.DecodeFromUtf8(System.ReadOnlySpan{System.Byte},System.Text.Rune@,System.Int32@) +M:System.Text.Rune.DecodeLastFromUtf16(System.ReadOnlySpan{System.Char},System.Text.Rune@,System.Int32@) +M:System.Text.Rune.DecodeLastFromUtf8(System.ReadOnlySpan{System.Byte},System.Text.Rune@,System.Int32@) +M:System.Text.Rune.EncodeToUtf16(System.Span{System.Char}) +M:System.Text.Rune.EncodeToUtf8(System.Span{System.Byte}) +M:System.Text.Rune.Equals(System.Object) +M:System.Text.Rune.Equals(System.Text.Rune) +M:System.Text.Rune.get_IsAscii +M:System.Text.Rune.get_IsBmp +M:System.Text.Rune.get_Plane +M:System.Text.Rune.get_ReplacementChar +M:System.Text.Rune.get_Utf16SequenceLength +M:System.Text.Rune.get_Utf8SequenceLength +M:System.Text.Rune.get_Value +M:System.Text.Rune.GetHashCode +M:System.Text.Rune.GetNumericValue(System.Text.Rune) +M:System.Text.Rune.GetRuneAt(System.String,System.Int32) +M:System.Text.Rune.GetUnicodeCategory(System.Text.Rune) +M:System.Text.Rune.IsControl(System.Text.Rune) +M:System.Text.Rune.IsDigit(System.Text.Rune) +M:System.Text.Rune.IsLetter(System.Text.Rune) +M:System.Text.Rune.IsLetterOrDigit(System.Text.Rune) +M:System.Text.Rune.IsLower(System.Text.Rune) +M:System.Text.Rune.IsNumber(System.Text.Rune) +M:System.Text.Rune.IsPunctuation(System.Text.Rune) +M:System.Text.Rune.IsSeparator(System.Text.Rune) +M:System.Text.Rune.IsSymbol(System.Text.Rune) +M:System.Text.Rune.IsUpper(System.Text.Rune) +M:System.Text.Rune.IsValid(System.Int32) +M:System.Text.Rune.IsValid(System.UInt32) +M:System.Text.Rune.IsWhiteSpace(System.Text.Rune) +M:System.Text.Rune.op_Equality(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.op_Explicit(System.Char)~System.Text.Rune +M:System.Text.Rune.op_Explicit(System.Int32)~System.Text.Rune +M:System.Text.Rune.op_Explicit(System.UInt32)~System.Text.Rune +M:System.Text.Rune.op_GreaterThan(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.op_GreaterThanOrEqual(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.op_Inequality(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.op_LessThan(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.op_LessThanOrEqual(System.Text.Rune,System.Text.Rune) +M:System.Text.Rune.ToLower(System.Text.Rune,System.Globalization.CultureInfo) +M:System.Text.Rune.ToLowerInvariant(System.Text.Rune) +M:System.Text.Rune.ToString +M:System.Text.Rune.ToUpper(System.Text.Rune,System.Globalization.CultureInfo) +M:System.Text.Rune.ToUpperInvariant(System.Text.Rune) +M:System.Text.Rune.TryCreate(System.Char,System.Char,System.Text.Rune@) +M:System.Text.Rune.TryCreate(System.Char,System.Text.Rune@) +M:System.Text.Rune.TryCreate(System.Int32,System.Text.Rune@) +M:System.Text.Rune.TryCreate(System.UInt32,System.Text.Rune@) +M:System.Text.Rune.TryEncodeToUtf16(System.Span{System.Char},System.Int32@) +M:System.Text.Rune.TryEncodeToUtf8(System.Span{System.Byte},System.Int32@) +M:System.Text.Rune.TryGetRuneAt(System.String,System.Int32,System.Text.Rune@) +M:System.Text.StringBuilder.#ctor +M:System.Text.StringBuilder.#ctor(System.Int32) +M:System.Text.StringBuilder.#ctor(System.Int32,System.Int32) +M:System.Text.StringBuilder.#ctor(System.String) +M:System.Text.StringBuilder.#ctor(System.String,System.Int32) +M:System.Text.StringBuilder.#ctor(System.String,System.Int32,System.Int32,System.Int32) +M:System.Text.StringBuilder.Append(System.Boolean) +M:System.Text.StringBuilder.Append(System.Byte) +M:System.Text.StringBuilder.Append(System.Char) +M:System.Text.StringBuilder.Append(System.Char*,System.Int32) +M:System.Text.StringBuilder.Append(System.Char,System.Int32) +M:System.Text.StringBuilder.Append(System.Char[]) +M:System.Text.StringBuilder.Append(System.Char[],System.Int32,System.Int32) +M:System.Text.StringBuilder.Append(System.Decimal) +M:System.Text.StringBuilder.Append(System.Double) +M:System.Text.StringBuilder.Append(System.IFormatProvider,System.Text.StringBuilder.AppendInterpolatedStringHandler@) +M:System.Text.StringBuilder.Append(System.Int16) +M:System.Text.StringBuilder.Append(System.Int32) +M:System.Text.StringBuilder.Append(System.Int64) +M:System.Text.StringBuilder.Append(System.Object) +M:System.Text.StringBuilder.Append(System.ReadOnlyMemory{System.Char}) +M:System.Text.StringBuilder.Append(System.ReadOnlySpan{System.Char}) +M:System.Text.StringBuilder.Append(System.SByte) +M:System.Text.StringBuilder.Append(System.Single) +M:System.Text.StringBuilder.Append(System.String) +M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32) +M:System.Text.StringBuilder.Append(System.Text.StringBuilder) +M:System.Text.StringBuilder.Append(System.Text.StringBuilder,System.Int32,System.Int32) +M:System.Text.StringBuilder.Append(System.Text.StringBuilder.AppendInterpolatedStringHandler@) +M:System.Text.StringBuilder.Append(System.UInt16) +M:System.Text.StringBuilder.Append(System.UInt32) +M:System.Text.StringBuilder.Append(System.UInt64) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object,System.Object,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[]) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.Text.CompositeFormat,System.Object[]) +M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.Text.CompositeFormat,System.ReadOnlySpan{System.Object}) +M:System.Text.StringBuilder.AppendFormat(System.String,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.String,System.Object,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.String,System.Object,System.Object,System.Object) +M:System.Text.StringBuilder.AppendFormat(System.String,System.Object[]) +M:System.Text.StringBuilder.AppendFormat``1(System.IFormatProvider,System.Text.CompositeFormat,``0) +M:System.Text.StringBuilder.AppendFormat``2(System.IFormatProvider,System.Text.CompositeFormat,``0,``1) +M:System.Text.StringBuilder.AppendFormat``3(System.IFormatProvider,System.Text.CompositeFormat,``0,``1,``2) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Text.StringBuilder) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Text.StringBuilder,System.IFormatProvider) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(System.Object,System.Int32,System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char}) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char},System.Int32,System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted(System.String,System.Int32,System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32,System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0,System.String) +M:System.Text.StringBuilder.AppendInterpolatedStringHandler.AppendLiteral(System.String) +M:System.Text.StringBuilder.AppendJoin(System.Char,System.Object[]) +M:System.Text.StringBuilder.AppendJoin(System.Char,System.String[]) +M:System.Text.StringBuilder.AppendJoin(System.String,System.Object[]) +M:System.Text.StringBuilder.AppendJoin(System.String,System.String[]) +M:System.Text.StringBuilder.AppendJoin``1(System.Char,System.Collections.Generic.IEnumerable{``0}) +M:System.Text.StringBuilder.AppendJoin``1(System.String,System.Collections.Generic.IEnumerable{``0}) +M:System.Text.StringBuilder.AppendLine +M:System.Text.StringBuilder.AppendLine(System.IFormatProvider,System.Text.StringBuilder.AppendInterpolatedStringHandler@) +M:System.Text.StringBuilder.AppendLine(System.String) +M:System.Text.StringBuilder.AppendLine(System.Text.StringBuilder.AppendInterpolatedStringHandler@) +M:System.Text.StringBuilder.ChunkEnumerator.get_Current +M:System.Text.StringBuilder.ChunkEnumerator.GetEnumerator +M:System.Text.StringBuilder.ChunkEnumerator.MoveNext +M:System.Text.StringBuilder.Clear +M:System.Text.StringBuilder.CopyTo(System.Int32,System.Char[],System.Int32,System.Int32) +M:System.Text.StringBuilder.CopyTo(System.Int32,System.Span{System.Char},System.Int32) +M:System.Text.StringBuilder.EnsureCapacity(System.Int32) +M:System.Text.StringBuilder.Equals(System.ReadOnlySpan{System.Char}) +M:System.Text.StringBuilder.Equals(System.Text.StringBuilder) +M:System.Text.StringBuilder.get_Capacity +M:System.Text.StringBuilder.get_Chars(System.Int32) +M:System.Text.StringBuilder.get_Length +M:System.Text.StringBuilder.get_MaxCapacity +M:System.Text.StringBuilder.GetChunks +M:System.Text.StringBuilder.Insert(System.Int32,System.Boolean) +M:System.Text.StringBuilder.Insert(System.Int32,System.Byte) +M:System.Text.StringBuilder.Insert(System.Int32,System.Char) +M:System.Text.StringBuilder.Insert(System.Int32,System.Char[]) +M:System.Text.StringBuilder.Insert(System.Int32,System.Char[],System.Int32,System.Int32) +M:System.Text.StringBuilder.Insert(System.Int32,System.Decimal) +M:System.Text.StringBuilder.Insert(System.Int32,System.Double) +M:System.Text.StringBuilder.Insert(System.Int32,System.Int16) +M:System.Text.StringBuilder.Insert(System.Int32,System.Int32) +M:System.Text.StringBuilder.Insert(System.Int32,System.Int64) +M:System.Text.StringBuilder.Insert(System.Int32,System.Object) +M:System.Text.StringBuilder.Insert(System.Int32,System.ReadOnlySpan{System.Char}) +M:System.Text.StringBuilder.Insert(System.Int32,System.SByte) +M:System.Text.StringBuilder.Insert(System.Int32,System.Single) +M:System.Text.StringBuilder.Insert(System.Int32,System.String) +M:System.Text.StringBuilder.Insert(System.Int32,System.String,System.Int32) +M:System.Text.StringBuilder.Insert(System.Int32,System.UInt16) +M:System.Text.StringBuilder.Insert(System.Int32,System.UInt32) +M:System.Text.StringBuilder.Insert(System.Int32,System.UInt64) +M:System.Text.StringBuilder.Remove(System.Int32,System.Int32) +M:System.Text.StringBuilder.Replace(System.Char,System.Char) +M:System.Text.StringBuilder.Replace(System.Char,System.Char,System.Int32,System.Int32) +M:System.Text.StringBuilder.Replace(System.String,System.String) +M:System.Text.StringBuilder.Replace(System.String,System.String,System.Int32,System.Int32) +M:System.Text.StringBuilder.set_Capacity(System.Int32) +M:System.Text.StringBuilder.set_Chars(System.Int32,System.Char) +M:System.Text.StringBuilder.set_Length(System.Int32) +M:System.Text.StringBuilder.ToString +M:System.Text.StringBuilder.ToString(System.Int32,System.Int32) +M:System.Text.StringRuneEnumerator.get_Current +M:System.Text.StringRuneEnumerator.GetEnumerator +M:System.Text.StringRuneEnumerator.MoveNext +M:System.Text.Unicode.Utf8.FromUtf16(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@,System.Int32@,System.Boolean,System.Boolean) +M:System.Text.Unicode.Utf8.IsValid(System.ReadOnlySpan{System.Byte}) +M:System.Text.Unicode.Utf8.ToUtf16(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@,System.Int32@,System.Boolean,System.Boolean) +M:System.Text.Unicode.Utf8.TryWrite(System.Span{System.Byte},System.IFormatProvider,System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler@,System.Int32@) +M:System.Text.Unicode.Utf8.TryWrite(System.Span{System.Byte},System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler@,System.Int32@) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Span{System.Byte},System.Boolean@) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Span{System.Byte},System.IFormatProvider,System.Boolean@) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.Object,System.Int32,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Byte}) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Byte},System.Int32,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char}) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.ReadOnlySpan{System.Char},System.Int32,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted(System.String,System.Int32,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted``1(``0) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted``1(``0,System.Int32,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendFormatted``1(``0,System.String) +M:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler.AppendLiteral(System.String) +M:System.Threading.CancellationToken.#ctor(System.Boolean) +M:System.Threading.CancellationToken.Equals(System.Object) +M:System.Threading.CancellationToken.Equals(System.Threading.CancellationToken) +M:System.Threading.CancellationToken.get_CanBeCanceled +M:System.Threading.CancellationToken.get_IsCancellationRequested +M:System.Threading.CancellationToken.get_None +M:System.Threading.CancellationToken.get_WaitHandle +M:System.Threading.CancellationToken.GetHashCode +M:System.Threading.CancellationToken.op_Equality(System.Threading.CancellationToken,System.Threading.CancellationToken) +M:System.Threading.CancellationToken.op_Inequality(System.Threading.CancellationToken,System.Threading.CancellationToken) +M:System.Threading.CancellationToken.Register(System.Action) +M:System.Threading.CancellationToken.Register(System.Action,System.Boolean) +M:System.Threading.CancellationToken.Register(System.Action{System.Object,System.Threading.CancellationToken},System.Object) +M:System.Threading.CancellationToken.Register(System.Action{System.Object},System.Object) +M:System.Threading.CancellationToken.Register(System.Action{System.Object},System.Object,System.Boolean) +M:System.Threading.CancellationToken.ThrowIfCancellationRequested +M:System.Threading.CancellationToken.UnsafeRegister(System.Action{System.Object,System.Threading.CancellationToken},System.Object) +M:System.Threading.CancellationToken.UnsafeRegister(System.Action{System.Object},System.Object) +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.#ctor +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.#ctor(System.Threading.Tasks.TaskScheduler) +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.#ctor(System.Threading.Tasks.TaskScheduler,System.Int32) +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.#ctor(System.Threading.Tasks.TaskScheduler,System.Int32,System.Int32) +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.Complete +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.get_Completion +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.get_ConcurrentScheduler +M:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.get_ExclusiveScheduler +M:System.Threading.Tasks.Sources.IValueTaskSource.GetResult(System.Int16) +M:System.Threading.Tasks.Sources.IValueTaskSource.GetStatus(System.Int16) +M:System.Threading.Tasks.Sources.IValueTaskSource.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) +M:System.Threading.Tasks.Sources.IValueTaskSource`1.GetResult(System.Int16) +M:System.Threading.Tasks.Sources.IValueTaskSource`1.GetStatus(System.Int16) +M:System.Threading.Tasks.Sources.IValueTaskSource`1.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.get_RunContinuationsAsynchronously +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.get_Version +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetResult(System.Int16) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetStatus(System.Int16) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.Reset +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.set_RunContinuationsAsynchronously(System.Boolean) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.SetException(System.Exception) +M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.SetResult(`0) +M:System.Threading.Tasks.Task.ConfigureAwait(System.Boolean) +M:System.Threading.Tasks.Task.ConfigureAwait(System.Threading.Tasks.ConfigureAwaitOptions) +M:System.Threading.Tasks.Task.Dispose +M:System.Threading.Tasks.Task.Dispose(System.Boolean) +M:System.Threading.Tasks.Task.FromCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.Task.FromCanceled``1(System.Threading.CancellationToken) +M:System.Threading.Tasks.Task.FromException(System.Exception) +M:System.Threading.Tasks.Task.FromException``1(System.Exception) +M:System.Threading.Tasks.Task.FromResult``1(``0) +M:System.Threading.Tasks.Task.get_AsyncState +M:System.Threading.Tasks.Task.get_CompletedTask +M:System.Threading.Tasks.Task.get_CreationOptions +M:System.Threading.Tasks.Task.get_CurrentId +M:System.Threading.Tasks.Task.get_Exception +M:System.Threading.Tasks.Task.get_Factory +M:System.Threading.Tasks.Task.get_Id +M:System.Threading.Tasks.Task.get_IsCanceled +M:System.Threading.Tasks.Task.get_IsCompleted +M:System.Threading.Tasks.Task.get_IsCompletedSuccessfully +M:System.Threading.Tasks.Task.get_IsFaulted +M:System.Threading.Tasks.Task.get_Status +M:System.Threading.Tasks.Task.GetAwaiter +M:System.Threading.Tasks.Task`1.ConfigureAwait(System.Boolean) +M:System.Threading.Tasks.Task`1.ConfigureAwait(System.Threading.Tasks.ConfigureAwaitOptions) +M:System.Threading.Tasks.Task`1.get_Factory +M:System.Threading.Tasks.Task`1.get_Result +M:System.Threading.Tasks.Task`1.GetAwaiter +M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.ConfigureAwait(System.IAsyncDisposable,System.Boolean) +M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.ConfigureAwait``1(System.Collections.Generic.IAsyncEnumerable{``0},System.Boolean) +M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.ToBlockingEnumerable``1(System.Collections.Generic.IAsyncEnumerable{``0},System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.WithCancellation``1(System.Collections.Generic.IAsyncEnumerable{``0},System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCanceledException.#ctor +M:System.Threading.Tasks.TaskCanceledException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Threading.Tasks.TaskCanceledException.#ctor(System.String) +M:System.Threading.Tasks.TaskCanceledException.#ctor(System.String,System.Exception) +M:System.Threading.Tasks.TaskCanceledException.#ctor(System.String,System.Exception,System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCanceledException.#ctor(System.Threading.Tasks.Task) +M:System.Threading.Tasks.TaskCanceledException.get_Task +M:System.Threading.Tasks.TaskCompletionSource.#ctor +M:System.Threading.Tasks.TaskCompletionSource.#ctor(System.Object) +M:System.Threading.Tasks.TaskCompletionSource.#ctor(System.Object,System.Threading.Tasks.TaskCreationOptions) +M:System.Threading.Tasks.TaskCompletionSource.#ctor(System.Threading.Tasks.TaskCreationOptions) +M:System.Threading.Tasks.TaskCompletionSource.get_Task +M:System.Threading.Tasks.TaskCompletionSource.SetCanceled +M:System.Threading.Tasks.TaskCompletionSource.SetCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCompletionSource.SetException(System.Collections.Generic.IEnumerable{System.Exception}) +M:System.Threading.Tasks.TaskCompletionSource.SetException(System.Exception) +M:System.Threading.Tasks.TaskCompletionSource.SetResult +M:System.Threading.Tasks.TaskCompletionSource.TrySetCanceled +M:System.Threading.Tasks.TaskCompletionSource.TrySetCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCompletionSource.TrySetException(System.Collections.Generic.IEnumerable{System.Exception}) +M:System.Threading.Tasks.TaskCompletionSource.TrySetException(System.Exception) +M:System.Threading.Tasks.TaskCompletionSource.TrySetResult +M:System.Threading.Tasks.TaskCompletionSource`1.#ctor +M:System.Threading.Tasks.TaskCompletionSource`1.#ctor(System.Object) +M:System.Threading.Tasks.TaskCompletionSource`1.#ctor(System.Object,System.Threading.Tasks.TaskCreationOptions) +M:System.Threading.Tasks.TaskCompletionSource`1.#ctor(System.Threading.Tasks.TaskCreationOptions) +M:System.Threading.Tasks.TaskCompletionSource`1.get_Task +M:System.Threading.Tasks.TaskCompletionSource`1.SetCanceled +M:System.Threading.Tasks.TaskCompletionSource`1.SetCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCompletionSource`1.SetException(System.Collections.Generic.IEnumerable{System.Exception}) +M:System.Threading.Tasks.TaskCompletionSource`1.SetException(System.Exception) +M:System.Threading.Tasks.TaskCompletionSource`1.SetResult(`0) +M:System.Threading.Tasks.TaskCompletionSource`1.TrySetCanceled +M:System.Threading.Tasks.TaskCompletionSource`1.TrySetCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.TaskCompletionSource`1.TrySetException(System.Collections.Generic.IEnumerable{System.Exception}) +M:System.Threading.Tasks.TaskCompletionSource`1.TrySetException(System.Exception) +M:System.Threading.Tasks.TaskCompletionSource`1.TrySetResult(`0) +M:System.Threading.Tasks.TaskExtensions.Unwrap(System.Threading.Tasks.Task{System.Threading.Tasks.Task}) +M:System.Threading.Tasks.TaskExtensions.Unwrap``1(System.Threading.Tasks.Task{System.Threading.Tasks.Task{``0}}) +M:System.Threading.Tasks.TaskSchedulerException.#ctor +M:System.Threading.Tasks.TaskSchedulerException.#ctor(System.Exception) +M:System.Threading.Tasks.TaskSchedulerException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Threading.Tasks.TaskSchedulerException.#ctor(System.String) +M:System.Threading.Tasks.TaskSchedulerException.#ctor(System.String,System.Exception) +M:System.Threading.Tasks.TaskToAsyncResult.Begin(System.Threading.Tasks.Task,System.AsyncCallback,System.Object) +M:System.Threading.Tasks.TaskToAsyncResult.End(System.IAsyncResult) +M:System.Threading.Tasks.TaskToAsyncResult.End``1(System.IAsyncResult) +M:System.Threading.Tasks.TaskToAsyncResult.Unwrap(System.IAsyncResult) +M:System.Threading.Tasks.TaskToAsyncResult.Unwrap``1(System.IAsyncResult) +M:System.Threading.Tasks.UnobservedTaskExceptionEventArgs.#ctor(System.AggregateException) +M:System.Threading.Tasks.UnobservedTaskExceptionEventArgs.get_Exception +M:System.Threading.Tasks.UnobservedTaskExceptionEventArgs.get_Observed +M:System.Threading.Tasks.UnobservedTaskExceptionEventArgs.SetObserved +M:System.Threading.Tasks.ValueTask.#ctor(System.Threading.Tasks.Sources.IValueTaskSource,System.Int16) +M:System.Threading.Tasks.ValueTask.#ctor(System.Threading.Tasks.Task) +M:System.Threading.Tasks.ValueTask.AsTask +M:System.Threading.Tasks.ValueTask.ConfigureAwait(System.Boolean) +M:System.Threading.Tasks.ValueTask.Equals(System.Object) +M:System.Threading.Tasks.ValueTask.Equals(System.Threading.Tasks.ValueTask) +M:System.Threading.Tasks.ValueTask.FromCanceled(System.Threading.CancellationToken) +M:System.Threading.Tasks.ValueTask.FromCanceled``1(System.Threading.CancellationToken) +M:System.Threading.Tasks.ValueTask.FromException(System.Exception) +M:System.Threading.Tasks.ValueTask.FromException``1(System.Exception) +M:System.Threading.Tasks.ValueTask.FromResult``1(``0) +M:System.Threading.Tasks.ValueTask.get_CompletedTask +M:System.Threading.Tasks.ValueTask.get_IsCanceled +M:System.Threading.Tasks.ValueTask.get_IsCompleted +M:System.Threading.Tasks.ValueTask.get_IsCompletedSuccessfully +M:System.Threading.Tasks.ValueTask.get_IsFaulted +M:System.Threading.Tasks.ValueTask.GetAwaiter +M:System.Threading.Tasks.ValueTask.GetHashCode +M:System.Threading.Tasks.ValueTask.op_Equality(System.Threading.Tasks.ValueTask,System.Threading.Tasks.ValueTask) +M:System.Threading.Tasks.ValueTask.op_Inequality(System.Threading.Tasks.ValueTask,System.Threading.Tasks.ValueTask) +M:System.Threading.Tasks.ValueTask.Preserve +M:System.Threading.Tasks.ValueTask`1.#ctor(`0) +M:System.Threading.Tasks.ValueTask`1.#ctor(System.Threading.Tasks.Sources.IValueTaskSource{`0},System.Int16) +M:System.Threading.Tasks.ValueTask`1.#ctor(System.Threading.Tasks.Task{`0}) +M:System.Threading.Tasks.ValueTask`1.AsTask +M:System.Threading.Tasks.ValueTask`1.ConfigureAwait(System.Boolean) +M:System.Threading.Tasks.ValueTask`1.Equals(System.Object) +M:System.Threading.Tasks.ValueTask`1.Equals(System.Threading.Tasks.ValueTask{`0}) +M:System.Threading.Tasks.ValueTask`1.get_IsCanceled +M:System.Threading.Tasks.ValueTask`1.get_IsCompleted +M:System.Threading.Tasks.ValueTask`1.get_IsCompletedSuccessfully +M:System.Threading.Tasks.ValueTask`1.get_IsFaulted +M:System.Threading.Tasks.ValueTask`1.get_Result +M:System.Threading.Tasks.ValueTask`1.GetAwaiter +M:System.Threading.Tasks.ValueTask`1.GetHashCode +M:System.Threading.Tasks.ValueTask`1.op_Equality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0}) +M:System.Threading.Tasks.ValueTask`1.op_Inequality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0}) +M:System.Threading.Tasks.ValueTask`1.Preserve +M:System.Threading.Tasks.ValueTask`1.ToString +M:System.TimeOnly.#ctor(System.Int32,System.Int32) +M:System.TimeOnly.#ctor(System.Int32,System.Int32,System.Int32) +M:System.TimeOnly.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.TimeOnly.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.TimeOnly.#ctor(System.Int64) +M:System.TimeOnly.Add(System.TimeSpan) +M:System.TimeOnly.Add(System.TimeSpan,System.Int32@) +M:System.TimeOnly.AddHours(System.Double) +M:System.TimeOnly.AddHours(System.Double,System.Int32@) +M:System.TimeOnly.AddMinutes(System.Double) +M:System.TimeOnly.AddMinutes(System.Double,System.Int32@) +M:System.TimeOnly.CompareTo(System.Object) +M:System.TimeOnly.CompareTo(System.TimeOnly) +M:System.TimeOnly.Deconstruct(System.Int32@,System.Int32@) +M:System.TimeOnly.Deconstruct(System.Int32@,System.Int32@,System.Int32@) +M:System.TimeOnly.Deconstruct(System.Int32@,System.Int32@,System.Int32@,System.Int32@) +M:System.TimeOnly.Deconstruct(System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@) +M:System.TimeOnly.Equals(System.Object) +M:System.TimeOnly.Equals(System.TimeOnly) +M:System.TimeOnly.FromDateTime(System.DateTime) +M:System.TimeOnly.FromTimeSpan(System.TimeSpan) +M:System.TimeOnly.get_Hour +M:System.TimeOnly.get_MaxValue +M:System.TimeOnly.get_Microsecond +M:System.TimeOnly.get_Millisecond +M:System.TimeOnly.get_Minute +M:System.TimeOnly.get_MinValue +M:System.TimeOnly.get_Nanosecond +M:System.TimeOnly.get_Second +M:System.TimeOnly.get_Ticks +M:System.TimeOnly.GetHashCode +M:System.TimeOnly.IsBetween(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_Equality(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_GreaterThan(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_GreaterThanOrEqual(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_Inequality(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_LessThan(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_LessThanOrEqual(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.op_Subtraction(System.TimeOnly,System.TimeOnly) +M:System.TimeOnly.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeOnly.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.Parse(System.String) +M:System.TimeOnly.Parse(System.String,System.IFormatProvider) +M:System.TimeOnly.Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.ParseExact(System.ReadOnlySpan{System.Char},System.String[]) +M:System.TimeOnly.ParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.ParseExact(System.String,System.String) +M:System.TimeOnly.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.ParseExact(System.String,System.String[]) +M:System.TimeOnly.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles) +M:System.TimeOnly.ToLongTimeString +M:System.TimeOnly.ToShortTimeString +M:System.TimeOnly.ToString +M:System.TimeOnly.ToString(System.IFormatProvider) +M:System.TimeOnly.ToString(System.String) +M:System.TimeOnly.ToString(System.String,System.IFormatProvider) +M:System.TimeOnly.ToTimeSpan +M:System.TimeOnly.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeOnly.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeOnly.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.TimeOnly@) +M:System.TimeOnly.TryParse(System.ReadOnlySpan{System.Char},System.TimeOnly@) +M:System.TimeOnly.TryParse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParse(System.String,System.IFormatProvider,System.TimeOnly@) +M:System.TimeOnly.TryParse(System.String,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.String,System.String,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.DateTimeStyles,System.TimeOnly@) +M:System.TimeOnly.TryParseExact(System.String,System.String[],System.TimeOnly@) +M:System.TimeoutException.#ctor +M:System.TimeoutException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TimeoutException.#ctor(System.String) +M:System.TimeoutException.#ctor(System.String,System.Exception) +M:System.TimeProvider.#ctor +M:System.TimeProvider.CreateTimer(System.Threading.TimerCallback,System.Object,System.TimeSpan,System.TimeSpan) +M:System.TimeProvider.get_LocalTimeZone +M:System.TimeProvider.get_System +M:System.TimeProvider.get_TimestampFrequency +M:System.TimeProvider.GetElapsedTime(System.Int64) +M:System.TimeProvider.GetElapsedTime(System.Int64,System.Int64) +M:System.TimeProvider.GetLocalNow +M:System.TimeProvider.GetTimestamp +M:System.TimeProvider.GetUtcNow +M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32) +M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.TimeSpan.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) +M:System.TimeSpan.#ctor(System.Int64) +M:System.TimeSpan.Add(System.TimeSpan) +M:System.TimeSpan.Compare(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.CompareTo(System.Object) +M:System.TimeSpan.CompareTo(System.TimeSpan) +M:System.TimeSpan.Divide(System.Double) +M:System.TimeSpan.Divide(System.TimeSpan) +M:System.TimeSpan.Duration +M:System.TimeSpan.Equals(System.Object) +M:System.TimeSpan.Equals(System.TimeSpan) +M:System.TimeSpan.Equals(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.FromDays(System.Double) +M:System.TimeSpan.FromHours(System.Double) +M:System.TimeSpan.FromMicroseconds(System.Double) +M:System.TimeSpan.FromMilliseconds(System.Double) +M:System.TimeSpan.FromMinutes(System.Double) +M:System.TimeSpan.FromSeconds(System.Double) +M:System.TimeSpan.FromTicks(System.Int64) +M:System.TimeSpan.get_Days +M:System.TimeSpan.get_Hours +M:System.TimeSpan.get_Microseconds +M:System.TimeSpan.get_Milliseconds +M:System.TimeSpan.get_Minutes +M:System.TimeSpan.get_Nanoseconds +M:System.TimeSpan.get_Seconds +M:System.TimeSpan.get_Ticks +M:System.TimeSpan.get_TotalDays +M:System.TimeSpan.get_TotalHours +M:System.TimeSpan.get_TotalMicroseconds +M:System.TimeSpan.get_TotalMilliseconds +M:System.TimeSpan.get_TotalMinutes +M:System.TimeSpan.get_TotalNanoseconds +M:System.TimeSpan.get_TotalSeconds +M:System.TimeSpan.GetHashCode +M:System.TimeSpan.Multiply(System.Double) +M:System.TimeSpan.Negate +M:System.TimeSpan.op_Addition(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_Division(System.TimeSpan,System.Double) +M:System.TimeSpan.op_Division(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_Equality(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_GreaterThan(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_GreaterThanOrEqual(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_Inequality(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_LessThan(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_LessThanOrEqual(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_Multiply(System.Double,System.TimeSpan) +M:System.TimeSpan.op_Multiply(System.TimeSpan,System.Double) +M:System.TimeSpan.op_Subtraction(System.TimeSpan,System.TimeSpan) +M:System.TimeSpan.op_UnaryNegation(System.TimeSpan) +M:System.TimeSpan.op_UnaryPlus(System.TimeSpan) +M:System.TimeSpan.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeSpan.Parse(System.String) +M:System.TimeSpan.Parse(System.String,System.IFormatProvider) +M:System.TimeSpan.ParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.TimeSpanStyles) +M:System.TimeSpan.ParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.TimeSpanStyles) +M:System.TimeSpan.ParseExact(System.String,System.String,System.IFormatProvider) +M:System.TimeSpan.ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.TimeSpanStyles) +M:System.TimeSpan.ParseExact(System.String,System.String[],System.IFormatProvider) +M:System.TimeSpan.ParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.TimeSpanStyles) +M:System.TimeSpan.Subtract(System.TimeSpan) +M:System.TimeSpan.ToString +M:System.TimeSpan.ToString(System.String) +M:System.TimeSpan.ToString(System.String,System.IFormatProvider) +M:System.TimeSpan.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeSpan.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.TimeSpan.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.TimeSpan@) +M:System.TimeSpan.TryParse(System.ReadOnlySpan{System.Char},System.TimeSpan@) +M:System.TimeSpan.TryParse(System.String,System.IFormatProvider,System.TimeSpan@) +M:System.TimeSpan.TryParse(System.String,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.Globalization.TimeSpanStyles,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.IFormatProvider,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.Globalization.TimeSpanStyles,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.ReadOnlySpan{System.Char},System.String[],System.IFormatProvider,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.TimeSpanStyles,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.String,System.String,System.IFormatProvider,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.String,System.String[],System.IFormatProvider,System.Globalization.TimeSpanStyles,System.TimeSpan@) +M:System.TimeSpan.TryParseExact(System.String,System.String[],System.IFormatProvider,System.TimeSpan@) +M:System.TimeZone.#ctor +M:System.TimeZone.get_CurrentTimeZone +M:System.TimeZone.get_DaylightName +M:System.TimeZone.get_StandardName +M:System.TimeZone.GetDaylightChanges(System.Int32) +M:System.TimeZone.GetUtcOffset(System.DateTime) +M:System.TimeZone.IsDaylightSavingTime(System.DateTime) +M:System.TimeZone.IsDaylightSavingTime(System.DateTime,System.Globalization.DaylightTime) +M:System.TimeZone.ToLocalTime(System.DateTime) +M:System.TimeZone.ToUniversalTime(System.DateTime) +M:System.TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo.TransitionTime,System.TimeZoneInfo.TransitionTime) +M:System.TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo.TransitionTime,System.TimeZoneInfo.TransitionTime,System.TimeSpan) +M:System.TimeZoneInfo.AdjustmentRule.Equals(System.Object) +M:System.TimeZoneInfo.AdjustmentRule.Equals(System.TimeZoneInfo.AdjustmentRule) +M:System.TimeZoneInfo.AdjustmentRule.get_BaseUtcOffsetDelta +M:System.TimeZoneInfo.AdjustmentRule.get_DateEnd +M:System.TimeZoneInfo.AdjustmentRule.get_DateStart +M:System.TimeZoneInfo.AdjustmentRule.get_DaylightDelta +M:System.TimeZoneInfo.AdjustmentRule.get_DaylightTransitionEnd +M:System.TimeZoneInfo.AdjustmentRule.get_DaylightTransitionStart +M:System.TimeZoneInfo.AdjustmentRule.GetHashCode +M:System.TimeZoneInfo.ClearCachedData +M:System.TimeZoneInfo.ConvertTime(System.DateTime,System.TimeZoneInfo) +M:System.TimeZoneInfo.ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo) +M:System.TimeZoneInfo.ConvertTime(System.DateTimeOffset,System.TimeZoneInfo) +M:System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(System.DateTime,System.String) +M:System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(System.DateTime,System.String,System.String) +M:System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(System.DateTimeOffset,System.String) +M:System.TimeZoneInfo.ConvertTimeFromUtc(System.DateTime,System.TimeZoneInfo) +M:System.TimeZoneInfo.ConvertTimeToUtc(System.DateTime) +M:System.TimeZoneInfo.ConvertTimeToUtc(System.DateTime,System.TimeZoneInfo) +M:System.TimeZoneInfo.CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String) +M:System.TimeZoneInfo.CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo.AdjustmentRule[]) +M:System.TimeZoneInfo.CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo.AdjustmentRule[],System.Boolean) +M:System.TimeZoneInfo.Equals(System.Object) +M:System.TimeZoneInfo.Equals(System.TimeZoneInfo) +M:System.TimeZoneInfo.FindSystemTimeZoneById(System.String) +M:System.TimeZoneInfo.FromSerializedString(System.String) +M:System.TimeZoneInfo.get_BaseUtcOffset +M:System.TimeZoneInfo.get_DaylightName +M:System.TimeZoneInfo.get_DisplayName +M:System.TimeZoneInfo.get_HasIanaId +M:System.TimeZoneInfo.get_Id +M:System.TimeZoneInfo.get_Local +M:System.TimeZoneInfo.get_StandardName +M:System.TimeZoneInfo.get_SupportsDaylightSavingTime +M:System.TimeZoneInfo.get_Utc +M:System.TimeZoneInfo.GetAdjustmentRules +M:System.TimeZoneInfo.GetAmbiguousTimeOffsets(System.DateTime) +M:System.TimeZoneInfo.GetAmbiguousTimeOffsets(System.DateTimeOffset) +M:System.TimeZoneInfo.GetHashCode +M:System.TimeZoneInfo.GetSystemTimeZones +M:System.TimeZoneInfo.GetSystemTimeZones(System.Boolean) +M:System.TimeZoneInfo.GetUtcOffset(System.DateTime) +M:System.TimeZoneInfo.GetUtcOffset(System.DateTimeOffset) +M:System.TimeZoneInfo.HasSameRules(System.TimeZoneInfo) +M:System.TimeZoneInfo.IsAmbiguousTime(System.DateTime) +M:System.TimeZoneInfo.IsAmbiguousTime(System.DateTimeOffset) +M:System.TimeZoneInfo.IsDaylightSavingTime(System.DateTime) +M:System.TimeZoneInfo.IsDaylightSavingTime(System.DateTimeOffset) +M:System.TimeZoneInfo.IsInvalidTime(System.DateTime) +M:System.TimeZoneInfo.ToSerializedString +M:System.TimeZoneInfo.ToString +M:System.TimeZoneInfo.TransitionTime.CreateFixedDateRule(System.DateTime,System.Int32,System.Int32) +M:System.TimeZoneInfo.TransitionTime.CreateFloatingDateRule(System.DateTime,System.Int32,System.Int32,System.DayOfWeek) +M:System.TimeZoneInfo.TransitionTime.Equals(System.Object) +M:System.TimeZoneInfo.TransitionTime.Equals(System.TimeZoneInfo.TransitionTime) +M:System.TimeZoneInfo.TransitionTime.get_Day +M:System.TimeZoneInfo.TransitionTime.get_DayOfWeek +M:System.TimeZoneInfo.TransitionTime.get_IsFixedDateRule +M:System.TimeZoneInfo.TransitionTime.get_Month +M:System.TimeZoneInfo.TransitionTime.get_TimeOfDay +M:System.TimeZoneInfo.TransitionTime.get_Week +M:System.TimeZoneInfo.TransitionTime.GetHashCode +M:System.TimeZoneInfo.TransitionTime.op_Equality(System.TimeZoneInfo.TransitionTime,System.TimeZoneInfo.TransitionTime) +M:System.TimeZoneInfo.TransitionTime.op_Inequality(System.TimeZoneInfo.TransitionTime,System.TimeZoneInfo.TransitionTime) +M:System.TimeZoneInfo.TryConvertIanaIdToWindowsId(System.String,System.String@) +M:System.TimeZoneInfo.TryConvertWindowsIdToIanaId(System.String,System.String,System.String@) +M:System.TimeZoneInfo.TryConvertWindowsIdToIanaId(System.String,System.String@) +M:System.TimeZoneInfo.TryFindSystemTimeZoneById(System.String,System.TimeZoneInfo@) +M:System.TimeZoneNotFoundException.#ctor +M:System.TimeZoneNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TimeZoneNotFoundException.#ctor(System.String) +M:System.TimeZoneNotFoundException.#ctor(System.String,System.Exception) +M:System.Tuple.Create``1(``0) +M:System.Tuple.Create``2(``0,``1) +M:System.Tuple.Create``3(``0,``1,``2) +M:System.Tuple.Create``4(``0,``1,``2,``3) +M:System.Tuple.Create``5(``0,``1,``2,``3,``4) +M:System.Tuple.Create``6(``0,``1,``2,``3,``4,``5) +M:System.Tuple.Create``7(``0,``1,``2,``3,``4,``5,``6) +M:System.Tuple.Create``8(``0,``1,``2,``3,``4,``5,``6,``7) +M:System.Tuple`1.#ctor(`0) +M:System.Tuple`1.Equals(System.Object) +M:System.Tuple`1.get_Item1 +M:System.Tuple`1.GetHashCode +M:System.Tuple`1.ToString +M:System.Tuple`2.#ctor(`0,`1) +M:System.Tuple`2.Equals(System.Object) +M:System.Tuple`2.get_Item1 +M:System.Tuple`2.get_Item2 +M:System.Tuple`2.GetHashCode +M:System.Tuple`2.ToString +M:System.Tuple`3.#ctor(`0,`1,`2) +M:System.Tuple`3.Equals(System.Object) +M:System.Tuple`3.get_Item1 +M:System.Tuple`3.get_Item2 +M:System.Tuple`3.get_Item3 +M:System.Tuple`3.GetHashCode +M:System.Tuple`3.ToString +M:System.Tuple`4.#ctor(`0,`1,`2,`3) +M:System.Tuple`4.Equals(System.Object) +M:System.Tuple`4.get_Item1 +M:System.Tuple`4.get_Item2 +M:System.Tuple`4.get_Item3 +M:System.Tuple`4.get_Item4 +M:System.Tuple`4.GetHashCode +M:System.Tuple`4.ToString +M:System.Tuple`5.#ctor(`0,`1,`2,`3,`4) +M:System.Tuple`5.Equals(System.Object) +M:System.Tuple`5.get_Item1 +M:System.Tuple`5.get_Item2 +M:System.Tuple`5.get_Item3 +M:System.Tuple`5.get_Item4 +M:System.Tuple`5.get_Item5 +M:System.Tuple`5.GetHashCode +M:System.Tuple`5.ToString +M:System.Tuple`6.#ctor(`0,`1,`2,`3,`4,`5) +M:System.Tuple`6.Equals(System.Object) +M:System.Tuple`6.get_Item1 +M:System.Tuple`6.get_Item2 +M:System.Tuple`6.get_Item3 +M:System.Tuple`6.get_Item4 +M:System.Tuple`6.get_Item5 +M:System.Tuple`6.get_Item6 +M:System.Tuple`6.GetHashCode +M:System.Tuple`6.ToString +M:System.Tuple`7.#ctor(`0,`1,`2,`3,`4,`5,`6) +M:System.Tuple`7.Equals(System.Object) +M:System.Tuple`7.get_Item1 +M:System.Tuple`7.get_Item2 +M:System.Tuple`7.get_Item3 +M:System.Tuple`7.get_Item4 +M:System.Tuple`7.get_Item5 +M:System.Tuple`7.get_Item6 +M:System.Tuple`7.get_Item7 +M:System.Tuple`7.GetHashCode +M:System.Tuple`7.ToString +M:System.Tuple`8.#ctor(`0,`1,`2,`3,`4,`5,`6,`7) +M:System.Tuple`8.Equals(System.Object) +M:System.Tuple`8.get_Item1 +M:System.Tuple`8.get_Item2 +M:System.Tuple`8.get_Item3 +M:System.Tuple`8.get_Item4 +M:System.Tuple`8.get_Item5 +M:System.Tuple`8.get_Item6 +M:System.Tuple`8.get_Item7 +M:System.Tuple`8.get_Rest +M:System.Tuple`8.GetHashCode +M:System.Tuple`8.ToString +M:System.TupleExtensions.Deconstruct``1(System.Tuple{``0},``0@) +M:System.TupleExtensions.Deconstruct``10(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@) +M:System.TupleExtensions.Deconstruct``11(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@) +M:System.TupleExtensions.Deconstruct``12(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@) +M:System.TupleExtensions.Deconstruct``13(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@) +M:System.TupleExtensions.Deconstruct``14(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@) +M:System.TupleExtensions.Deconstruct``15(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@) +M:System.TupleExtensions.Deconstruct``16(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@) +M:System.TupleExtensions.Deconstruct``17(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@,``16@) +M:System.TupleExtensions.Deconstruct``18(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@,``16@,``17@) +M:System.TupleExtensions.Deconstruct``19(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@,``16@,``17@,``18@) +M:System.TupleExtensions.Deconstruct``2(System.Tuple{``0,``1},``0@,``1@) +M:System.TupleExtensions.Deconstruct``20(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18,``19}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@,``16@,``17@,``18@,``19@) +M:System.TupleExtensions.Deconstruct``21(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18,``19,``20}}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@,``9@,``10@,``11@,``12@,``13@,``14@,``15@,``16@,``17@,``18@,``19@,``20@) +M:System.TupleExtensions.Deconstruct``3(System.Tuple{``0,``1,``2},``0@,``1@,``2@) +M:System.TupleExtensions.Deconstruct``4(System.Tuple{``0,``1,``2,``3},``0@,``1@,``2@,``3@) +M:System.TupleExtensions.Deconstruct``5(System.Tuple{``0,``1,``2,``3,``4},``0@,``1@,``2@,``3@,``4@) +M:System.TupleExtensions.Deconstruct``6(System.Tuple{``0,``1,``2,``3,``4,``5},``0@,``1@,``2@,``3@,``4@,``5@) +M:System.TupleExtensions.Deconstruct``7(System.Tuple{``0,``1,``2,``3,``4,``5,``6},``0@,``1@,``2@,``3@,``4@,``5@,``6@) +M:System.TupleExtensions.Deconstruct``8(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@) +M:System.TupleExtensions.Deconstruct``9(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8}},``0@,``1@,``2@,``3@,``4@,``5@,``6@,``7@,``8@) +M:System.TupleExtensions.ToTuple``1(System.ValueTuple{``0}) +M:System.TupleExtensions.ToTuple``10(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9}}) +M:System.TupleExtensions.ToTuple``11(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10}}) +M:System.TupleExtensions.ToTuple``12(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11}}) +M:System.TupleExtensions.ToTuple``13(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12}}) +M:System.TupleExtensions.ToTuple``14(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13}}) +M:System.TupleExtensions.ToTuple``15(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14}}}) +M:System.TupleExtensions.ToTuple``16(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15}}}) +M:System.TupleExtensions.ToTuple``17(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15,``16}}}) +M:System.TupleExtensions.ToTuple``18(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15,``16,``17}}}) +M:System.TupleExtensions.ToTuple``19(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15,``16,``17,``18}}}) +M:System.TupleExtensions.ToTuple``2(System.ValueTuple{``0,``1}) +M:System.TupleExtensions.ToTuple``20(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15,``16,``17,``18,``19}}}) +M:System.TupleExtensions.ToTuple``21(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8,``9,``10,``11,``12,``13,System.ValueTuple{``14,``15,``16,``17,``18,``19,``20}}}) +M:System.TupleExtensions.ToTuple``3(System.ValueTuple{``0,``1,``2}) +M:System.TupleExtensions.ToTuple``4(System.ValueTuple{``0,``1,``2,``3}) +M:System.TupleExtensions.ToTuple``5(System.ValueTuple{``0,``1,``2,``3,``4}) +M:System.TupleExtensions.ToTuple``6(System.ValueTuple{``0,``1,``2,``3,``4,``5}) +M:System.TupleExtensions.ToTuple``7(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6}) +M:System.TupleExtensions.ToTuple``8(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7}}) +M:System.TupleExtensions.ToTuple``9(System.ValueTuple{``0,``1,``2,``3,``4,``5,``6,System.ValueTuple{``7,``8}}) +M:System.TupleExtensions.ToValueTuple``1(System.Tuple{``0}) +M:System.TupleExtensions.ToValueTuple``10(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9}}) +M:System.TupleExtensions.ToValueTuple``11(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10}}) +M:System.TupleExtensions.ToValueTuple``12(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11}}) +M:System.TupleExtensions.ToValueTuple``13(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12}}) +M:System.TupleExtensions.ToValueTuple``14(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13}}) +M:System.TupleExtensions.ToValueTuple``15(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14}}}) +M:System.TupleExtensions.ToValueTuple``16(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15}}}) +M:System.TupleExtensions.ToValueTuple``17(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16}}}) +M:System.TupleExtensions.ToValueTuple``18(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17}}}) +M:System.TupleExtensions.ToValueTuple``19(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18}}}) +M:System.TupleExtensions.ToValueTuple``2(System.Tuple{``0,``1}) +M:System.TupleExtensions.ToValueTuple``20(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18,``19}}}) +M:System.TupleExtensions.ToValueTuple``21(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8,``9,``10,``11,``12,``13,System.Tuple{``14,``15,``16,``17,``18,``19,``20}}}) +M:System.TupleExtensions.ToValueTuple``3(System.Tuple{``0,``1,``2}) +M:System.TupleExtensions.ToValueTuple``4(System.Tuple{``0,``1,``2,``3}) +M:System.TupleExtensions.ToValueTuple``5(System.Tuple{``0,``1,``2,``3,``4}) +M:System.TupleExtensions.ToValueTuple``6(System.Tuple{``0,``1,``2,``3,``4,``5}) +M:System.TupleExtensions.ToValueTuple``7(System.Tuple{``0,``1,``2,``3,``4,``5,``6}) +M:System.TupleExtensions.ToValueTuple``8(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7}}) +M:System.TupleExtensions.ToValueTuple``9(System.Tuple{``0,``1,``2,``3,``4,``5,``6,System.Tuple{``7,``8}}) +M:System.TypeAccessException.#ctor +M:System.TypeAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TypeAccessException.#ctor(System.String) +M:System.TypeAccessException.#ctor(System.String,System.Exception) +M:System.TypedReference.Equals(System.Object) +M:System.TypedReference.GetHashCode +M:System.TypedReference.GetTargetType(System.TypedReference) +M:System.TypedReference.MakeTypedReference(System.Object,System.Reflection.FieldInfo[]) +M:System.TypedReference.SetTypedReference(System.TypedReference,System.Object) +M:System.TypedReference.TargetTypeToken(System.TypedReference) +M:System.TypedReference.ToObject(System.TypedReference) +M:System.TypeInitializationException.#ctor(System.String,System.Exception) +M:System.TypeInitializationException.get_TypeName +M:System.TypeInitializationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TypeLoadException.#ctor +M:System.TypeLoadException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TypeLoadException.#ctor(System.String) +M:System.TypeLoadException.#ctor(System.String,System.Exception) +M:System.TypeLoadException.get_Message +M:System.TypeLoadException.get_TypeName +M:System.TypeLoadException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TypeUnloadedException.#ctor +M:System.TypeUnloadedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.TypeUnloadedException.#ctor(System.String) +M:System.TypeUnloadedException.#ctor(System.String,System.Exception) +M:System.UInt128.#ctor(System.UInt64,System.UInt64) +M:System.UInt128.Clamp(System.UInt128,System.UInt128,System.UInt128) +M:System.UInt128.CompareTo(System.Object) +M:System.UInt128.CompareTo(System.UInt128) +M:System.UInt128.CreateChecked``1(``0) +M:System.UInt128.CreateSaturating``1(``0) +M:System.UInt128.CreateTruncating``1(``0) +M:System.UInt128.DivRem(System.UInt128,System.UInt128) +M:System.UInt128.Equals(System.Object) +M:System.UInt128.Equals(System.UInt128) +M:System.UInt128.get_MaxValue +M:System.UInt128.get_MinValue +M:System.UInt128.get_One +M:System.UInt128.get_Zero +M:System.UInt128.GetHashCode +M:System.UInt128.IsEvenInteger(System.UInt128) +M:System.UInt128.IsOddInteger(System.UInt128) +M:System.UInt128.IsPow2(System.UInt128) +M:System.UInt128.LeadingZeroCount(System.UInt128) +M:System.UInt128.Log2(System.UInt128) +M:System.UInt128.Max(System.UInt128,System.UInt128) +M:System.UInt128.Min(System.UInt128,System.UInt128) +M:System.UInt128.op_Addition(System.UInt128,System.UInt128) +M:System.UInt128.op_BitwiseAnd(System.UInt128,System.UInt128) +M:System.UInt128.op_BitwiseOr(System.UInt128,System.UInt128) +M:System.UInt128.op_CheckedAddition(System.UInt128,System.UInt128) +M:System.UInt128.op_CheckedDecrement(System.UInt128) +M:System.UInt128.op_CheckedDivision(System.UInt128,System.UInt128) +M:System.UInt128.op_CheckedExplicit(System.Double)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.Int16)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.Int32)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.Int64)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.IntPtr)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.SByte)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.Single)~System.UInt128 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Byte +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Char +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Int128 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Int16 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Int32 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.Int64 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.IntPtr +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.SByte +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.UInt16 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.UInt32 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.UInt64 +M:System.UInt128.op_CheckedExplicit(System.UInt128)~System.UIntPtr +M:System.UInt128.op_CheckedIncrement(System.UInt128) +M:System.UInt128.op_CheckedMultiply(System.UInt128,System.UInt128) +M:System.UInt128.op_CheckedSubtraction(System.UInt128,System.UInt128) +M:System.UInt128.op_CheckedUnaryNegation(System.UInt128) +M:System.UInt128.op_Decrement(System.UInt128) +M:System.UInt128.op_Division(System.UInt128,System.UInt128) +M:System.UInt128.op_Equality(System.UInt128,System.UInt128) +M:System.UInt128.op_ExclusiveOr(System.UInt128,System.UInt128) +M:System.UInt128.op_Explicit(System.Decimal)~System.UInt128 +M:System.UInt128.op_Explicit(System.Double)~System.UInt128 +M:System.UInt128.op_Explicit(System.Int16)~System.UInt128 +M:System.UInt128.op_Explicit(System.Int32)~System.UInt128 +M:System.UInt128.op_Explicit(System.Int64)~System.UInt128 +M:System.UInt128.op_Explicit(System.IntPtr)~System.UInt128 +M:System.UInt128.op_Explicit(System.SByte)~System.UInt128 +M:System.UInt128.op_Explicit(System.Single)~System.UInt128 +M:System.UInt128.op_Explicit(System.UInt128)~System.Byte +M:System.UInt128.op_Explicit(System.UInt128)~System.Char +M:System.UInt128.op_Explicit(System.UInt128)~System.Decimal +M:System.UInt128.op_Explicit(System.UInt128)~System.Double +M:System.UInt128.op_Explicit(System.UInt128)~System.Half +M:System.UInt128.op_Explicit(System.UInt128)~System.Int128 +M:System.UInt128.op_Explicit(System.UInt128)~System.Int16 +M:System.UInt128.op_Explicit(System.UInt128)~System.Int32 +M:System.UInt128.op_Explicit(System.UInt128)~System.Int64 +M:System.UInt128.op_Explicit(System.UInt128)~System.IntPtr +M:System.UInt128.op_Explicit(System.UInt128)~System.SByte +M:System.UInt128.op_Explicit(System.UInt128)~System.Single +M:System.UInt128.op_Explicit(System.UInt128)~System.UInt16 +M:System.UInt128.op_Explicit(System.UInt128)~System.UInt32 +M:System.UInt128.op_Explicit(System.UInt128)~System.UInt64 +M:System.UInt128.op_Explicit(System.UInt128)~System.UIntPtr +M:System.UInt128.op_GreaterThan(System.UInt128,System.UInt128) +M:System.UInt128.op_GreaterThanOrEqual(System.UInt128,System.UInt128) +M:System.UInt128.op_Implicit(System.Byte)~System.UInt128 +M:System.UInt128.op_Implicit(System.Char)~System.UInt128 +M:System.UInt128.op_Implicit(System.UInt16)~System.UInt128 +M:System.UInt128.op_Implicit(System.UInt32)~System.UInt128 +M:System.UInt128.op_Implicit(System.UInt64)~System.UInt128 +M:System.UInt128.op_Implicit(System.UIntPtr)~System.UInt128 +M:System.UInt128.op_Increment(System.UInt128) +M:System.UInt128.op_Inequality(System.UInt128,System.UInt128) +M:System.UInt128.op_LeftShift(System.UInt128,System.Int32) +M:System.UInt128.op_LessThan(System.UInt128,System.UInt128) +M:System.UInt128.op_LessThanOrEqual(System.UInt128,System.UInt128) +M:System.UInt128.op_Modulus(System.UInt128,System.UInt128) +M:System.UInt128.op_Multiply(System.UInt128,System.UInt128) +M:System.UInt128.op_OnesComplement(System.UInt128) +M:System.UInt128.op_RightShift(System.UInt128,System.Int32) +M:System.UInt128.op_Subtraction(System.UInt128,System.UInt128) +M:System.UInt128.op_UnaryNegation(System.UInt128) +M:System.UInt128.op_UnaryPlus(System.UInt128) +M:System.UInt128.op_UnsignedRightShift(System.UInt128,System.Int32) +M:System.UInt128.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt128.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.UInt128.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt128.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt128.Parse(System.String) +M:System.UInt128.Parse(System.String,System.Globalization.NumberStyles) +M:System.UInt128.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt128.Parse(System.String,System.IFormatProvider) +M:System.UInt128.PopCount(System.UInt128) +M:System.UInt128.RotateLeft(System.UInt128,System.Int32) +M:System.UInt128.RotateRight(System.UInt128,System.Int32) +M:System.UInt128.Sign(System.UInt128) +M:System.UInt128.ToString +M:System.UInt128.ToString(System.IFormatProvider) +M:System.UInt128.ToString(System.String) +M:System.UInt128.ToString(System.String,System.IFormatProvider) +M:System.UInt128.TrailingZeroCount(System.UInt128) +M:System.UInt128.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt128.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Byte},System.UInt128@) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.ReadOnlySpan{System.Char},System.UInt128@) +M:System.UInt128.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.String,System.IFormatProvider,System.UInt128@) +M:System.UInt128.TryParse(System.String,System.UInt128@) +M:System.UInt16.Clamp(System.UInt16,System.UInt16,System.UInt16) +M:System.UInt16.CompareTo(System.Object) +M:System.UInt16.CompareTo(System.UInt16) +M:System.UInt16.CreateChecked``1(``0) +M:System.UInt16.CreateSaturating``1(``0) +M:System.UInt16.CreateTruncating``1(``0) +M:System.UInt16.DivRem(System.UInt16,System.UInt16) +M:System.UInt16.Equals(System.Object) +M:System.UInt16.Equals(System.UInt16) +M:System.UInt16.GetHashCode +M:System.UInt16.GetTypeCode +M:System.UInt16.IsEvenInteger(System.UInt16) +M:System.UInt16.IsOddInteger(System.UInt16) +M:System.UInt16.IsPow2(System.UInt16) +M:System.UInt16.LeadingZeroCount(System.UInt16) +M:System.UInt16.Log2(System.UInt16) +M:System.UInt16.Max(System.UInt16,System.UInt16) +M:System.UInt16.Min(System.UInt16,System.UInt16) +M:System.UInt16.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt16.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.UInt16.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt16.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt16.Parse(System.String) +M:System.UInt16.Parse(System.String,System.Globalization.NumberStyles) +M:System.UInt16.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt16.Parse(System.String,System.IFormatProvider) +M:System.UInt16.PopCount(System.UInt16) +M:System.UInt16.RotateLeft(System.UInt16,System.Int32) +M:System.UInt16.RotateRight(System.UInt16,System.Int32) +M:System.UInt16.Sign(System.UInt16) +M:System.UInt16.ToString +M:System.UInt16.ToString(System.IFormatProvider) +M:System.UInt16.ToString(System.String) +M:System.UInt16.ToString(System.String,System.IFormatProvider) +M:System.UInt16.TrailingZeroCount(System.UInt16) +M:System.UInt16.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt16.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Byte},System.UInt16@) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.ReadOnlySpan{System.Char},System.UInt16@) +M:System.UInt16.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.String,System.IFormatProvider,System.UInt16@) +M:System.UInt16.TryParse(System.String,System.UInt16@) +M:System.UInt32.Clamp(System.UInt32,System.UInt32,System.UInt32) +M:System.UInt32.CompareTo(System.Object) +M:System.UInt32.CompareTo(System.UInt32) +M:System.UInt32.CreateChecked``1(``0) +M:System.UInt32.CreateSaturating``1(``0) +M:System.UInt32.CreateTruncating``1(``0) +M:System.UInt32.DivRem(System.UInt32,System.UInt32) +M:System.UInt32.Equals(System.Object) +M:System.UInt32.Equals(System.UInt32) +M:System.UInt32.GetHashCode +M:System.UInt32.GetTypeCode +M:System.UInt32.IsEvenInteger(System.UInt32) +M:System.UInt32.IsOddInteger(System.UInt32) +M:System.UInt32.IsPow2(System.UInt32) +M:System.UInt32.LeadingZeroCount(System.UInt32) +M:System.UInt32.Log2(System.UInt32) +M:System.UInt32.Max(System.UInt32,System.UInt32) +M:System.UInt32.Min(System.UInt32,System.UInt32) +M:System.UInt32.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt32.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.UInt32.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt32.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt32.Parse(System.String) +M:System.UInt32.Parse(System.String,System.Globalization.NumberStyles) +M:System.UInt32.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt32.Parse(System.String,System.IFormatProvider) +M:System.UInt32.PopCount(System.UInt32) +M:System.UInt32.RotateLeft(System.UInt32,System.Int32) +M:System.UInt32.RotateRight(System.UInt32,System.Int32) +M:System.UInt32.Sign(System.UInt32) +M:System.UInt32.ToString +M:System.UInt32.ToString(System.IFormatProvider) +M:System.UInt32.ToString(System.String) +M:System.UInt32.ToString(System.String,System.IFormatProvider) +M:System.UInt32.TrailingZeroCount(System.UInt32) +M:System.UInt32.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt32.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Byte},System.UInt32@) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.ReadOnlySpan{System.Char},System.UInt32@) +M:System.UInt32.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.String,System.IFormatProvider,System.UInt32@) +M:System.UInt32.TryParse(System.String,System.UInt32@) +M:System.UInt64.Clamp(System.UInt64,System.UInt64,System.UInt64) +M:System.UInt64.CompareTo(System.Object) +M:System.UInt64.CompareTo(System.UInt64) +M:System.UInt64.CreateChecked``1(``0) +M:System.UInt64.CreateSaturating``1(``0) +M:System.UInt64.CreateTruncating``1(``0) +M:System.UInt64.DivRem(System.UInt64,System.UInt64) +M:System.UInt64.Equals(System.Object) +M:System.UInt64.Equals(System.UInt64) +M:System.UInt64.GetHashCode +M:System.UInt64.GetTypeCode +M:System.UInt64.IsEvenInteger(System.UInt64) +M:System.UInt64.IsOddInteger(System.UInt64) +M:System.UInt64.IsPow2(System.UInt64) +M:System.UInt64.LeadingZeroCount(System.UInt64) +M:System.UInt64.Log2(System.UInt64) +M:System.UInt64.Max(System.UInt64,System.UInt64) +M:System.UInt64.Min(System.UInt64,System.UInt64) +M:System.UInt64.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt64.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.UInt64.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt64.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt64.Parse(System.String) +M:System.UInt64.Parse(System.String,System.Globalization.NumberStyles) +M:System.UInt64.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UInt64.Parse(System.String,System.IFormatProvider) +M:System.UInt64.PopCount(System.UInt64) +M:System.UInt64.RotateLeft(System.UInt64,System.Int32) +M:System.UInt64.RotateRight(System.UInt64,System.Int32) +M:System.UInt64.Sign(System.UInt64) +M:System.UInt64.ToString +M:System.UInt64.ToString(System.IFormatProvider) +M:System.UInt64.ToString(System.String) +M:System.UInt64.ToString(System.String,System.IFormatProvider) +M:System.UInt64.TrailingZeroCount(System.UInt64) +M:System.UInt64.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt64.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Byte},System.UInt64@) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.ReadOnlySpan{System.Char},System.UInt64@) +M:System.UInt64.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.String,System.IFormatProvider,System.UInt64@) +M:System.UInt64.TryParse(System.String,System.UInt64@) +M:System.UIntPtr.#ctor(System.UInt32) +M:System.UIntPtr.#ctor(System.UInt64) +M:System.UIntPtr.#ctor(System.Void*) +M:System.UIntPtr.Add(System.UIntPtr,System.Int32) +M:System.UIntPtr.Clamp(System.UIntPtr,System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.CompareTo(System.Object) +M:System.UIntPtr.CompareTo(System.UIntPtr) +M:System.UIntPtr.CreateChecked``1(``0) +M:System.UIntPtr.CreateSaturating``1(``0) +M:System.UIntPtr.CreateTruncating``1(``0) +M:System.UIntPtr.DivRem(System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.Equals(System.Object) +M:System.UIntPtr.Equals(System.UIntPtr) +M:System.UIntPtr.get_MaxValue +M:System.UIntPtr.get_MinValue +M:System.UIntPtr.get_Size +M:System.UIntPtr.GetHashCode +M:System.UIntPtr.IsEvenInteger(System.UIntPtr) +M:System.UIntPtr.IsOddInteger(System.UIntPtr) +M:System.UIntPtr.IsPow2(System.UIntPtr) +M:System.UIntPtr.LeadingZeroCount(System.UIntPtr) +M:System.UIntPtr.Log2(System.UIntPtr) +M:System.UIntPtr.Max(System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.Min(System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.op_Addition(System.UIntPtr,System.Int32) +M:System.UIntPtr.op_Equality(System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.op_Explicit(System.UInt32)~System.UIntPtr +M:System.UIntPtr.op_Explicit(System.UInt64)~System.UIntPtr +M:System.UIntPtr.op_Explicit(System.UIntPtr)~System.UInt32 +M:System.UIntPtr.op_Explicit(System.UIntPtr)~System.UInt64 +M:System.UIntPtr.op_Explicit(System.UIntPtr)~System.Void* +M:System.UIntPtr.op_Explicit(System.Void*)~System.UIntPtr +M:System.UIntPtr.op_Inequality(System.UIntPtr,System.UIntPtr) +M:System.UIntPtr.op_Subtraction(System.UIntPtr,System.Int32) +M:System.UIntPtr.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UIntPtr.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) +M:System.UIntPtr.Parse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UIntPtr.Parse(System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UIntPtr.Parse(System.String) +M:System.UIntPtr.Parse(System.String,System.Globalization.NumberStyles) +M:System.UIntPtr.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) +M:System.UIntPtr.Parse(System.String,System.IFormatProvider) +M:System.UIntPtr.PopCount(System.UIntPtr) +M:System.UIntPtr.RotateLeft(System.UIntPtr,System.Int32) +M:System.UIntPtr.RotateRight(System.UIntPtr,System.Int32) +M:System.UIntPtr.Sign(System.UIntPtr) +M:System.UIntPtr.Subtract(System.UIntPtr,System.Int32) +M:System.UIntPtr.ToPointer +M:System.UIntPtr.ToString +M:System.UIntPtr.ToString(System.IFormatProvider) +M:System.UIntPtr.ToString(System.String) +M:System.UIntPtr.ToString(System.String,System.IFormatProvider) +M:System.UIntPtr.ToUInt32 +M:System.UIntPtr.ToUInt64 +M:System.UIntPtr.TrailingZeroCount(System.UIntPtr) +M:System.UIntPtr.TryFormat(System.Span{System.Byte},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UIntPtr.TryFormat(System.Span{System.Char},System.Int32@,System.ReadOnlySpan{System.Char},System.IFormatProvider) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Byte},System.UIntPtr@) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Char},System.Globalization.NumberStyles,System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Char},System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.ReadOnlySpan{System.Char},System.UIntPtr@) +M:System.UIntPtr.TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.String,System.IFormatProvider,System.UIntPtr@) +M:System.UIntPtr.TryParse(System.String,System.UIntPtr@) +M:System.UnauthorizedAccessException.#ctor +M:System.UnauthorizedAccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.UnauthorizedAccessException.#ctor(System.String) +M:System.UnauthorizedAccessException.#ctor(System.String,System.Exception) +M:System.UnhandledExceptionEventArgs.#ctor(System.Object,System.Boolean) +M:System.UnhandledExceptionEventArgs.get_ExceptionObject +M:System.UnhandledExceptionEventArgs.get_IsTerminating +M:System.UnhandledExceptionEventHandler.#ctor(System.Object,System.IntPtr) +M:System.UnhandledExceptionEventHandler.BeginInvoke(System.Object,System.UnhandledExceptionEventArgs,System.AsyncCallback,System.Object) +M:System.UnhandledExceptionEventHandler.EndInvoke(System.IAsyncResult) +M:System.UnhandledExceptionEventHandler.Invoke(System.Object,System.UnhandledExceptionEventArgs) +M:System.Uri.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Uri.#ctor(System.String) +M:System.Uri.#ctor(System.String,System.Boolean) +M:System.Uri.#ctor(System.String,System.UriCreationOptions@) +M:System.Uri.#ctor(System.String,System.UriKind) +M:System.Uri.#ctor(System.Uri,System.String) +M:System.Uri.#ctor(System.Uri,System.String,System.Boolean) +M:System.Uri.#ctor(System.Uri,System.Uri) +M:System.Uri.Canonicalize +M:System.Uri.CheckHostName(System.String) +M:System.Uri.CheckSchemeName(System.String) +M:System.Uri.CheckSecurity +M:System.Uri.Compare(System.Uri,System.Uri,System.UriComponents,System.UriFormat,System.StringComparison) +M:System.Uri.Equals(System.Object) +M:System.Uri.Escape +M:System.Uri.EscapeDataString(System.String) +M:System.Uri.EscapeString(System.String) +M:System.Uri.EscapeUriString(System.String) +M:System.Uri.FromHex(System.Char) +M:System.Uri.get_AbsolutePath +M:System.Uri.get_AbsoluteUri +M:System.Uri.get_Authority +M:System.Uri.get_DnsSafeHost +M:System.Uri.get_Fragment +M:System.Uri.get_Host +M:System.Uri.get_HostNameType +M:System.Uri.get_IdnHost +M:System.Uri.get_IsAbsoluteUri +M:System.Uri.get_IsDefaultPort +M:System.Uri.get_IsFile +M:System.Uri.get_IsLoopback +M:System.Uri.get_IsUnc +M:System.Uri.get_LocalPath +M:System.Uri.get_OriginalString +M:System.Uri.get_PathAndQuery +M:System.Uri.get_Port +M:System.Uri.get_Query +M:System.Uri.get_Scheme +M:System.Uri.get_Segments +M:System.Uri.get_UserEscaped +M:System.Uri.get_UserInfo +M:System.Uri.GetComponents(System.UriComponents,System.UriFormat) +M:System.Uri.GetHashCode +M:System.Uri.GetLeftPart(System.UriPartial) +M:System.Uri.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.Uri.HexEscape(System.Char) +M:System.Uri.HexUnescape(System.String,System.Int32@) +M:System.Uri.IsBadFileSystemCharacter(System.Char) +M:System.Uri.IsBaseOf(System.Uri) +M:System.Uri.IsExcludedCharacter(System.Char) +M:System.Uri.IsHexDigit(System.Char) +M:System.Uri.IsHexEncoding(System.String,System.Int32) +M:System.Uri.IsReservedCharacter(System.Char) +M:System.Uri.IsWellFormedOriginalString +M:System.Uri.IsWellFormedUriString(System.String,System.UriKind) +M:System.Uri.MakeRelative(System.Uri) +M:System.Uri.MakeRelativeUri(System.Uri) +M:System.Uri.op_Equality(System.Uri,System.Uri) +M:System.Uri.op_Inequality(System.Uri,System.Uri) +M:System.Uri.Parse +M:System.Uri.ToString +M:System.Uri.TryCreate(System.String,System.UriCreationOptions@,System.Uri@) +M:System.Uri.TryCreate(System.String,System.UriKind,System.Uri@) +M:System.Uri.TryCreate(System.Uri,System.String,System.Uri@) +M:System.Uri.TryCreate(System.Uri,System.Uri,System.Uri@) +M:System.Uri.TryFormat(System.Span{System.Char},System.Int32@) +M:System.Uri.Unescape(System.String) +M:System.Uri.UnescapeDataString(System.String) +M:System.UriBuilder.#ctor +M:System.UriBuilder.#ctor(System.String) +M:System.UriBuilder.#ctor(System.String,System.String) +M:System.UriBuilder.#ctor(System.String,System.String,System.Int32) +M:System.UriBuilder.#ctor(System.String,System.String,System.Int32,System.String) +M:System.UriBuilder.#ctor(System.String,System.String,System.Int32,System.String,System.String) +M:System.UriBuilder.#ctor(System.Uri) +M:System.UriBuilder.Equals(System.Object) +M:System.UriBuilder.get_Fragment +M:System.UriBuilder.get_Host +M:System.UriBuilder.get_Password +M:System.UriBuilder.get_Path +M:System.UriBuilder.get_Port +M:System.UriBuilder.get_Query +M:System.UriBuilder.get_Scheme +M:System.UriBuilder.get_Uri +M:System.UriBuilder.get_UserName +M:System.UriBuilder.GetHashCode +M:System.UriBuilder.set_Fragment(System.String) +M:System.UriBuilder.set_Host(System.String) +M:System.UriBuilder.set_Password(System.String) +M:System.UriBuilder.set_Path(System.String) +M:System.UriBuilder.set_Port(System.Int32) +M:System.UriBuilder.set_Query(System.String) +M:System.UriBuilder.set_Scheme(System.String) +M:System.UriBuilder.set_UserName(System.String) +M:System.UriBuilder.ToString +M:System.UriCreationOptions.get_DangerousDisablePathAndQueryCanonicalization +M:System.UriCreationOptions.set_DangerousDisablePathAndQueryCanonicalization(System.Boolean) +M:System.UriFormatException.#ctor +M:System.UriFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.UriFormatException.#ctor(System.String) +M:System.UriFormatException.#ctor(System.String,System.Exception) +M:System.UriParser.#ctor +M:System.UriParser.GetComponents(System.Uri,System.UriComponents,System.UriFormat) +M:System.UriParser.InitializeAndValidate(System.Uri,System.UriFormatException@) +M:System.UriParser.IsBaseOf(System.Uri,System.Uri) +M:System.UriParser.IsKnownScheme(System.String) +M:System.UriParser.IsWellFormedOriginalString(System.Uri) +M:System.UriParser.OnNewUri +M:System.UriParser.OnRegister(System.String,System.Int32) +M:System.UriParser.Register(System.UriParser,System.String,System.Int32) +M:System.UriParser.Resolve(System.Uri,System.Uri,System.UriFormatException@) +M:System.ValueTuple.CompareTo(System.ValueTuple) +M:System.ValueTuple.Create +M:System.ValueTuple.Create``1(``0) +M:System.ValueTuple.Create``2(``0,``1) +M:System.ValueTuple.Create``3(``0,``1,``2) +M:System.ValueTuple.Create``4(``0,``1,``2,``3) +M:System.ValueTuple.Create``5(``0,``1,``2,``3,``4) +M:System.ValueTuple.Create``6(``0,``1,``2,``3,``4,``5) +M:System.ValueTuple.Create``7(``0,``1,``2,``3,``4,``5,``6) +M:System.ValueTuple.Create``8(``0,``1,``2,``3,``4,``5,``6,``7) +M:System.ValueTuple.Equals(System.Object) +M:System.ValueTuple.Equals(System.ValueTuple) +M:System.ValueTuple.GetHashCode +M:System.ValueTuple.ToString +M:System.ValueTuple`1.#ctor(`0) +M:System.ValueTuple`1.CompareTo(System.ValueTuple{`0}) +M:System.ValueTuple`1.Equals(System.Object) +M:System.ValueTuple`1.Equals(System.ValueTuple{`0}) +M:System.ValueTuple`1.GetHashCode +M:System.ValueTuple`1.ToString +M:System.ValueTuple`2.#ctor(`0,`1) +M:System.ValueTuple`2.CompareTo(System.ValueTuple{`0,`1}) +M:System.ValueTuple`2.Equals(System.Object) +M:System.ValueTuple`2.Equals(System.ValueTuple{`0,`1}) +M:System.ValueTuple`2.GetHashCode +M:System.ValueTuple`2.ToString +M:System.ValueTuple`3.#ctor(`0,`1,`2) +M:System.ValueTuple`3.CompareTo(System.ValueTuple{`0,`1,`2}) +M:System.ValueTuple`3.Equals(System.Object) +M:System.ValueTuple`3.Equals(System.ValueTuple{`0,`1,`2}) +M:System.ValueTuple`3.GetHashCode +M:System.ValueTuple`3.ToString +M:System.ValueTuple`4.#ctor(`0,`1,`2,`3) +M:System.ValueTuple`4.CompareTo(System.ValueTuple{`0,`1,`2,`3}) +M:System.ValueTuple`4.Equals(System.Object) +M:System.ValueTuple`4.Equals(System.ValueTuple{`0,`1,`2,`3}) +M:System.ValueTuple`4.GetHashCode +M:System.ValueTuple`4.ToString +M:System.ValueTuple`5.#ctor(`0,`1,`2,`3,`4) +M:System.ValueTuple`5.CompareTo(System.ValueTuple{`0,`1,`2,`3,`4}) +M:System.ValueTuple`5.Equals(System.Object) +M:System.ValueTuple`5.Equals(System.ValueTuple{`0,`1,`2,`3,`4}) +M:System.ValueTuple`5.GetHashCode +M:System.ValueTuple`5.ToString +M:System.ValueTuple`6.#ctor(`0,`1,`2,`3,`4,`5) +M:System.ValueTuple`6.CompareTo(System.ValueTuple{`0,`1,`2,`3,`4,`5}) +M:System.ValueTuple`6.Equals(System.Object) +M:System.ValueTuple`6.Equals(System.ValueTuple{`0,`1,`2,`3,`4,`5}) +M:System.ValueTuple`6.GetHashCode +M:System.ValueTuple`6.ToString +M:System.ValueTuple`7.#ctor(`0,`1,`2,`3,`4,`5,`6) +M:System.ValueTuple`7.CompareTo(System.ValueTuple{`0,`1,`2,`3,`4,`5,`6}) +M:System.ValueTuple`7.Equals(System.Object) +M:System.ValueTuple`7.Equals(System.ValueTuple{`0,`1,`2,`3,`4,`5,`6}) +M:System.ValueTuple`7.GetHashCode +M:System.ValueTuple`7.ToString +M:System.ValueTuple`8.#ctor(`0,`1,`2,`3,`4,`5,`6,`7) +M:System.ValueTuple`8.CompareTo(System.ValueTuple{`0,`1,`2,`3,`4,`5,`6,`7}) +M:System.ValueTuple`8.Equals(System.Object) +M:System.ValueTuple`8.Equals(System.ValueTuple{`0,`1,`2,`3,`4,`5,`6,`7}) +M:System.ValueTuple`8.GetHashCode +M:System.ValueTuple`8.ToString +M:System.ValueType.#ctor +M:System.ValueType.Equals(System.Object) +M:System.ValueType.GetHashCode +M:System.ValueType.ToString +M:System.Version.#ctor +M:System.Version.#ctor(System.Int32,System.Int32) +M:System.Version.#ctor(System.Int32,System.Int32,System.Int32) +M:System.Version.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) +M:System.Version.#ctor(System.String) +M:System.Version.Clone +M:System.Version.CompareTo(System.Object) +M:System.Version.CompareTo(System.Version) +M:System.Version.Equals(System.Object) +M:System.Version.Equals(System.Version) +M:System.Version.get_Build +M:System.Version.get_Major +M:System.Version.get_MajorRevision +M:System.Version.get_Minor +M:System.Version.get_MinorRevision +M:System.Version.get_Revision +M:System.Version.GetHashCode +M:System.Version.op_Equality(System.Version,System.Version) +M:System.Version.op_GreaterThan(System.Version,System.Version) +M:System.Version.op_GreaterThanOrEqual(System.Version,System.Version) +M:System.Version.op_Inequality(System.Version,System.Version) +M:System.Version.op_LessThan(System.Version,System.Version) +M:System.Version.op_LessThanOrEqual(System.Version,System.Version) +M:System.Version.Parse(System.ReadOnlySpan{System.Char}) +M:System.Version.Parse(System.String) +M:System.Version.ToString +M:System.Version.ToString(System.Int32) +M:System.Version.TryFormat(System.Span{System.Byte},System.Int32,System.Int32@) +M:System.Version.TryFormat(System.Span{System.Byte},System.Int32@) +M:System.Version.TryFormat(System.Span{System.Char},System.Int32,System.Int32@) +M:System.Version.TryFormat(System.Span{System.Char},System.Int32@) +M:System.Version.TryParse(System.ReadOnlySpan{System.Char},System.Version@) +M:System.Version.TryParse(System.String,System.Version@) +M:System.WeakReference.#ctor(System.Object) +M:System.WeakReference.#ctor(System.Object,System.Boolean) +M:System.WeakReference.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.WeakReference.Finalize +M:System.WeakReference.get_IsAlive +M:System.WeakReference.get_Target +M:System.WeakReference.get_TrackResurrection +M:System.WeakReference.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.WeakReference.set_Target(System.Object) +M:System.WeakReference`1.#ctor(`0) +M:System.WeakReference`1.#ctor(`0,System.Boolean) +M:System.WeakReference`1.Finalize +M:System.WeakReference`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) +M:System.WeakReference`1.SetTarget(`0) +M:System.WeakReference`1.TryGetTarget(`0@) +T:System.AccessViolationException +T:System.Action +T:System.Action`1 +T:System.Action`10 +T:System.Action`11 +T:System.Action`12 +T:System.Action`13 +T:System.Action`14 +T:System.Action`15 +T:System.Action`16 +T:System.Action`2 +T:System.Action`3 +T:System.Action`4 +T:System.Action`5 +T:System.Action`6 +T:System.Action`7 +T:System.Action`8 +T:System.Action`9 +T:System.AggregateException +T:System.ApplicationException +T:System.ApplicationId +T:System.ArgIterator +T:System.ArgumentException +T:System.ArgumentNullException +T:System.ArgumentOutOfRangeException +T:System.ArithmeticException +T:System.Array +T:System.ArraySegment`1 +T:System.ArraySegment`1.Enumerator +T:System.ArrayTypeMismatchException +T:System.AsyncCallback +T:System.Attribute +T:System.AttributeTargets +T:System.AttributeUsageAttribute +T:System.BadImageFormatException +T:System.Base64FormattingOptions +T:System.BitConverter +T:System.Boolean +T:System.Buffer +T:System.Buffers.ArrayPool`1 +T:System.Buffers.IMemoryOwner`1 +T:System.Buffers.IPinnable +T:System.Buffers.MemoryHandle +T:System.Buffers.MemoryManager`1 +T:System.Buffers.OperationStatus +T:System.Buffers.ReadOnlySpanAction`2 +T:System.Buffers.SearchValues +T:System.Buffers.SearchValues`1 +T:System.Buffers.SpanAction`2 +T:System.Buffers.Text.Base64 +T:System.Byte +T:System.CannotUnloadAppDomainException +T:System.Char +T:System.CharEnumerator +T:System.CLSCompliantAttribute +T:System.CodeDom.Compiler.GeneratedCodeAttribute +T:System.CodeDom.Compiler.IndentedTextWriter +T:System.Collections.ArrayList +T:System.Collections.Comparer +T:System.Collections.DictionaryEntry +T:System.Collections.Generic.IAsyncEnumerable`1 +T:System.Collections.Generic.IAsyncEnumerator`1 +T:System.Collections.Generic.ICollection`1 +T:System.Collections.Generic.IComparer`1 +T:System.Collections.Generic.IDictionary`2 +T:System.Collections.Generic.IEnumerable`1 +T:System.Collections.Generic.IEnumerator`1 +T:System.Collections.Generic.IEqualityComparer`1 +T:System.Collections.Generic.IList`1 +T:System.Collections.Generic.IReadOnlyCollection`1 +T:System.Collections.Generic.IReadOnlyDictionary`2 +T:System.Collections.Generic.IReadOnlyList`1 +T:System.Collections.Generic.IReadOnlySet`1 +T:System.Collections.Generic.ISet`1 +T:System.Collections.Generic.KeyNotFoundException +T:System.Collections.Generic.KeyValuePair +T:System.Collections.Generic.KeyValuePair`2 +T:System.Collections.Hashtable +T:System.Collections.ICollection +T:System.Collections.IComparer +T:System.Collections.IDictionary +T:System.Collections.IDictionaryEnumerator +T:System.Collections.IEnumerable +T:System.Collections.IEnumerator +T:System.Collections.IEqualityComparer +T:System.Collections.IHashCodeProvider +T:System.Collections.IList +T:System.Collections.IStructuralComparable +T:System.Collections.IStructuralEquatable +T:System.Collections.ObjectModel.Collection`1 +T:System.Collections.ObjectModel.ReadOnlyCollection`1 +T:System.Collections.ObjectModel.ReadOnlyDictionary`2 +T:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection +T:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection +T:System.Comparison`1 +T:System.ComponentModel.DefaultValueAttribute +T:System.ComponentModel.EditorBrowsableAttribute +T:System.ComponentModel.EditorBrowsableState +T:System.Configuration.Assemblies.AssemblyHashAlgorithm +T:System.Configuration.Assemblies.AssemblyVersionCompatibility +T:System.ContextBoundObject +T:System.ContextMarshalException +T:System.ContextStaticAttribute +T:System.Convert +T:System.Converter`2 +T:System.DateOnly +T:System.DateTime +T:System.DateTimeKind +T:System.DateTimeOffset +T:System.DayOfWeek +T:System.DBNull +T:System.Decimal +T:System.Delegate +T:System.Diagnostics.CodeAnalysis.AllowNullAttribute +T:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute +T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute +T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute +T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute +T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute +T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes +T:System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute +T:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute +T:System.Diagnostics.CodeAnalysis.ExperimentalAttribute +T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute +T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute +T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute +T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute +T:System.Diagnostics.CodeAnalysis.NotNullAttribute +T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute +T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute +T:System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute +T:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute +T:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute +T:System.Diagnostics.CodeAnalysis.SetsRequiredMembersAttribute +T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute +T:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute +T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute +T:System.Diagnostics.CodeAnalysis.UnscopedRefAttribute +T:System.Diagnostics.ConditionalAttribute +T:System.Diagnostics.Debug +T:System.Diagnostics.Debug.AssertInterpolatedStringHandler +T:System.Diagnostics.Debug.WriteIfInterpolatedStringHandler +T:System.Diagnostics.DebuggableAttribute +T:System.Diagnostics.DebuggableAttribute.DebuggingModes +T:System.Diagnostics.DebuggerBrowsableAttribute +T:System.Diagnostics.DebuggerBrowsableState +T:System.Diagnostics.DebuggerDisplayAttribute +T:System.Diagnostics.DebuggerHiddenAttribute +T:System.Diagnostics.DebuggerNonUserCodeAttribute +T:System.Diagnostics.DebuggerStepperBoundaryAttribute +T:System.Diagnostics.DebuggerStepThroughAttribute +T:System.Diagnostics.DebuggerTypeProxyAttribute +T:System.Diagnostics.DebuggerVisualizerAttribute +T:System.Diagnostics.StackTraceHiddenAttribute +T:System.Diagnostics.Stopwatch +T:System.Diagnostics.UnreachableException +T:System.DivideByZeroException +T:System.Double +T:System.DuplicateWaitObjectException +T:System.EntryPointNotFoundException +T:System.Enum +T:System.Environment +T:System.EventArgs +T:System.EventHandler +T:System.EventHandler`1 +T:System.Exception +T:System.ExecutionEngineException +T:System.FieldAccessException +T:System.FileStyleUriParser +T:System.FlagsAttribute +T:System.FormatException +T:System.FormattableString +T:System.FtpStyleUriParser +T:System.Func`1 +T:System.Func`10 +T:System.Func`11 +T:System.Func`12 +T:System.Func`13 +T:System.Func`14 +T:System.Func`15 +T:System.Func`16 +T:System.Func`17 +T:System.Func`2 +T:System.Func`3 +T:System.Func`4 +T:System.Func`5 +T:System.Func`6 +T:System.Func`7 +T:System.Func`8 +T:System.Func`9 +T:System.GenericUriParser +T:System.GenericUriParserOptions +T:System.Globalization.Calendar +T:System.Globalization.CalendarAlgorithmType +T:System.Globalization.CalendarWeekRule +T:System.Globalization.CharUnicodeInfo +T:System.Globalization.ChineseLunisolarCalendar +T:System.Globalization.CompareInfo +T:System.Globalization.CompareOptions +T:System.Globalization.CultureInfo +T:System.Globalization.CultureNotFoundException +T:System.Globalization.CultureTypes +T:System.Globalization.DateTimeFormatInfo +T:System.Globalization.DateTimeStyles +T:System.Globalization.DaylightTime +T:System.Globalization.DigitShapes +T:System.Globalization.EastAsianLunisolarCalendar +T:System.Globalization.GlobalizationExtensions +T:System.Globalization.GregorianCalendar +T:System.Globalization.GregorianCalendarTypes +T:System.Globalization.HebrewCalendar +T:System.Globalization.HijriCalendar +T:System.Globalization.IdnMapping +T:System.Globalization.ISOWeek +T:System.Globalization.JapaneseCalendar +T:System.Globalization.JapaneseLunisolarCalendar +T:System.Globalization.JulianCalendar +T:System.Globalization.KoreanCalendar +T:System.Globalization.KoreanLunisolarCalendar +T:System.Globalization.NumberFormatInfo +T:System.Globalization.NumberStyles +T:System.Globalization.PersianCalendar +T:System.Globalization.RegionInfo +T:System.Globalization.SortKey +T:System.Globalization.SortVersion +T:System.Globalization.StringInfo +T:System.Globalization.TaiwanCalendar +T:System.Globalization.TaiwanLunisolarCalendar +T:System.Globalization.TextElementEnumerator +T:System.Globalization.TextInfo +T:System.Globalization.ThaiBuddhistCalendar +T:System.Globalization.TimeSpanStyles +T:System.Globalization.UmAlQuraCalendar +T:System.Globalization.UnicodeCategory +T:System.GopherStyleUriParser +T:System.Guid +T:System.Half +T:System.HashCode +T:System.HttpStyleUriParser +T:System.IAsyncDisposable +T:System.IAsyncResult +T:System.ICloneable +T:System.IComparable +T:System.IComparable`1 +T:System.IConvertible +T:System.ICustomFormatter +T:System.IDisposable +T:System.IEquatable`1 +T:System.IFormatProvider +T:System.IFormattable +T:System.Index +T:System.IndexOutOfRangeException +T:System.InsufficientExecutionStackException +T:System.InsufficientMemoryException +T:System.Int128 +T:System.Int16 +T:System.Int32 +T:System.Int64 +T:System.IntPtr +T:System.InvalidCastException +T:System.InvalidOperationException +T:System.InvalidProgramException +T:System.InvalidTimeZoneException +T:System.IObservable`1 +T:System.IObserver`1 +T:System.IParsable`1 +T:System.IProgress`1 +T:System.ISpanFormattable +T:System.ISpanParsable`1 +T:System.IUtf8SpanFormattable +T:System.IUtf8SpanParsable`1 +T:System.Lazy`1 +T:System.Lazy`2 +T:System.LdapStyleUriParser +T:System.Math +T:System.MathF +T:System.MemberAccessException +T:System.Memory`1 +T:System.MethodAccessException +T:System.MidpointRounding +T:System.MissingFieldException +T:System.MissingMemberException +T:System.MissingMethodException +T:System.ModuleHandle +T:System.MulticastDelegate +T:System.MulticastNotSupportedException +T:System.NetPipeStyleUriParser +T:System.NetTcpStyleUriParser +T:System.NewsStyleUriParser +T:System.NonSerializedAttribute +T:System.NotFiniteNumberException +T:System.NotImplementedException +T:System.NotSupportedException +T:System.Nullable +T:System.Nullable`1 +T:System.NullReferenceException +T:System.Numerics.BitOperations +T:System.Numerics.IAdditionOperators`3 +T:System.Numerics.IAdditiveIdentity`2 +T:System.Numerics.IBinaryFloatingPointIeee754`1 +T:System.Numerics.IBinaryInteger`1 +T:System.Numerics.IBinaryNumber`1 +T:System.Numerics.IBitwiseOperators`3 +T:System.Numerics.IComparisonOperators`3 +T:System.Numerics.IDecrementOperators`1 +T:System.Numerics.IDivisionOperators`3 +T:System.Numerics.IEqualityOperators`3 +T:System.Numerics.IExponentialFunctions`1 +T:System.Numerics.IFloatingPoint`1 +T:System.Numerics.IFloatingPointConstants`1 +T:System.Numerics.IFloatingPointIeee754`1 +T:System.Numerics.IHyperbolicFunctions`1 +T:System.Numerics.IIncrementOperators`1 +T:System.Numerics.ILogarithmicFunctions`1 +T:System.Numerics.IMinMaxValue`1 +T:System.Numerics.IModulusOperators`3 +T:System.Numerics.IMultiplicativeIdentity`2 +T:System.Numerics.IMultiplyOperators`3 +T:System.Numerics.INumber`1 +T:System.Numerics.INumberBase`1 +T:System.Numerics.IPowerFunctions`1 +T:System.Numerics.IRootFunctions`1 +T:System.Numerics.IShiftOperators`3 +T:System.Numerics.ISignedNumber`1 +T:System.Numerics.ISubtractionOperators`3 +T:System.Numerics.ITrigonometricFunctions`1 +T:System.Numerics.IUnaryNegationOperators`2 +T:System.Numerics.IUnaryPlusOperators`2 +T:System.Numerics.IUnsignedNumber`1 +T:System.Numerics.TotalOrderIeee754Comparer`1 +T:System.Object +T:System.ObjectDisposedException +T:System.ObsoleteAttribute +T:System.OperatingSystem +T:System.OperationCanceledException +T:System.OutOfMemoryException +T:System.OverflowException +T:System.ParamArrayAttribute +T:System.PlatformID +T:System.PlatformNotSupportedException +T:System.Predicate`1 +T:System.Progress`1 +T:System.Random +T:System.Range +T:System.RankException +T:System.ReadOnlyMemory`1 +T:System.ReadOnlySpan`1 +T:System.ReadOnlySpan`1.Enumerator +T:System.ResolveEventArgs +T:System.ResolveEventHandler +T:System.Runtime.CompilerServices.AccessedThroughPropertyAttribute +T:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder +T:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute +T:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute +T:System.Runtime.CompilerServices.AsyncStateMachineAttribute +T:System.Runtime.CompilerServices.AsyncTaskMethodBuilder +T:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 +T:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder +T:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1 +T:System.Runtime.CompilerServices.AsyncVoidMethodBuilder +T:System.Runtime.CompilerServices.CallConvCdecl +T:System.Runtime.CompilerServices.CallConvFastcall +T:System.Runtime.CompilerServices.CallConvMemberFunction +T:System.Runtime.CompilerServices.CallConvStdcall +T:System.Runtime.CompilerServices.CallConvSuppressGCTransition +T:System.Runtime.CompilerServices.CallConvThiscall +T:System.Runtime.CompilerServices.CallerArgumentExpressionAttribute +T:System.Runtime.CompilerServices.CallerFilePathAttribute +T:System.Runtime.CompilerServices.CallerLineNumberAttribute +T:System.Runtime.CompilerServices.CallerMemberNameAttribute +T:System.Runtime.CompilerServices.CollectionBuilderAttribute +T:System.Runtime.CompilerServices.CompilationRelaxations +T:System.Runtime.CompilerServices.CompilationRelaxationsAttribute +T:System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute +T:System.Runtime.CompilerServices.CompilerGeneratedAttribute +T:System.Runtime.CompilerServices.CompilerGlobalScopeAttribute +T:System.Runtime.CompilerServices.ConditionalWeakTable`2 +T:System.Runtime.CompilerServices.ConditionalWeakTable`2.CreateValueCallback +T:System.Runtime.CompilerServices.ConfiguredAsyncDisposable +T:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1 +T:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator +T:System.Runtime.CompilerServices.ConfiguredTaskAwaitable +T:System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter +T:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 +T:System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter +T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable +T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter +T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1 +T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter +T:System.Runtime.CompilerServices.CustomConstantAttribute +T:System.Runtime.CompilerServices.DateTimeConstantAttribute +T:System.Runtime.CompilerServices.DecimalConstantAttribute +T:System.Runtime.CompilerServices.DefaultDependencyAttribute +T:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler +T:System.Runtime.CompilerServices.DependencyAttribute +T:System.Runtime.CompilerServices.DisablePrivateReflectionAttribute +T:System.Runtime.CompilerServices.DisableRuntimeMarshallingAttribute +T:System.Runtime.CompilerServices.DiscardableAttribute +T:System.Runtime.CompilerServices.EnumeratorCancellationAttribute +T:System.Runtime.CompilerServices.ExtensionAttribute +T:System.Runtime.CompilerServices.FixedAddressValueTypeAttribute +T:System.Runtime.CompilerServices.FixedBufferAttribute +T:System.Runtime.CompilerServices.FormattableStringFactory +T:System.Runtime.CompilerServices.IAsyncStateMachine +T:System.Runtime.CompilerServices.ICriticalNotifyCompletion +T:System.Runtime.CompilerServices.IndexerNameAttribute +T:System.Runtime.CompilerServices.InlineArrayAttribute +T:System.Runtime.CompilerServices.INotifyCompletion +T:System.Runtime.CompilerServices.InternalsVisibleToAttribute +T:System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute +T:System.Runtime.CompilerServices.InterpolatedStringHandlerAttribute +T:System.Runtime.CompilerServices.IsByRefLikeAttribute +T:System.Runtime.CompilerServices.IsConst +T:System.Runtime.CompilerServices.IsExternalInit +T:System.Runtime.CompilerServices.IsReadOnlyAttribute +T:System.Runtime.CompilerServices.IStrongBox +T:System.Runtime.CompilerServices.IsUnmanagedAttribute +T:System.Runtime.CompilerServices.IsVolatile +T:System.Runtime.CompilerServices.IteratorStateMachineAttribute +T:System.Runtime.CompilerServices.ITuple +T:System.Runtime.CompilerServices.LoadHint +T:System.Runtime.CompilerServices.MethodCodeType +T:System.Runtime.CompilerServices.MethodImplAttribute +T:System.Runtime.CompilerServices.MethodImplOptions +T:System.Runtime.CompilerServices.ModuleInitializerAttribute +T:System.Runtime.CompilerServices.NullableAttribute +T:System.Runtime.CompilerServices.NullableContextAttribute +T:System.Runtime.CompilerServices.NullablePublicOnlyAttribute +T:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder +T:System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1 +T:System.Runtime.CompilerServices.PreserveBaseOverridesAttribute +T:System.Runtime.CompilerServices.ReferenceAssemblyAttribute +T:System.Runtime.CompilerServices.RefSafetyRulesAttribute +T:System.Runtime.CompilerServices.RequiredMemberAttribute +T:System.Runtime.CompilerServices.RequiresLocationAttribute +T:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute +T:System.Runtime.CompilerServices.RuntimeFeature +T:System.Runtime.CompilerServices.RuntimeHelpers +T:System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode +T:System.Runtime.CompilerServices.RuntimeHelpers.TryCode +T:System.Runtime.CompilerServices.RuntimeWrappedException +T:System.Runtime.CompilerServices.ScopedRefAttribute +T:System.Runtime.CompilerServices.SkipLocalsInitAttribute +T:System.Runtime.CompilerServices.SpecialNameAttribute +T:System.Runtime.CompilerServices.StateMachineAttribute +T:System.Runtime.CompilerServices.StringFreezingAttribute +T:System.Runtime.CompilerServices.StrongBox`1 +T:System.Runtime.CompilerServices.SuppressIldasmAttribute +T:System.Runtime.CompilerServices.SwitchExpressionException +T:System.Runtime.CompilerServices.TaskAwaiter +T:System.Runtime.CompilerServices.TaskAwaiter`1 +T:System.Runtime.CompilerServices.TupleElementNamesAttribute +T:System.Runtime.CompilerServices.TypeForwardedFromAttribute +T:System.Runtime.CompilerServices.TypeForwardedToAttribute +T:System.Runtime.CompilerServices.Unsafe +T:System.Runtime.CompilerServices.UnsafeAccessorAttribute +T:System.Runtime.CompilerServices.UnsafeAccessorKind +T:System.Runtime.CompilerServices.UnsafeValueTypeAttribute +T:System.Runtime.CompilerServices.ValueTaskAwaiter +T:System.Runtime.CompilerServices.ValueTaskAwaiter`1 +T:System.Runtime.CompilerServices.YieldAwaitable +T:System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter +T:System.RuntimeArgumentHandle +T:System.RuntimeFieldHandle +T:System.RuntimeMethodHandle +T:System.RuntimeTypeHandle +T:System.SByte +T:System.SerializableAttribute +T:System.Single +T:System.Span`1 +T:System.Span`1.Enumerator +T:System.StackOverflowException +T:System.String +T:System.StringComparer +T:System.StringComparison +T:System.StringNormalizationExtensions +T:System.StringSplitOptions +T:System.SystemException +T:System.Text.Ascii +T:System.Text.CompositeFormat +T:System.Text.Decoder +T:System.Text.DecoderExceptionFallback +T:System.Text.DecoderExceptionFallbackBuffer +T:System.Text.DecoderFallback +T:System.Text.DecoderFallbackBuffer +T:System.Text.DecoderFallbackException +T:System.Text.DecoderReplacementFallback +T:System.Text.DecoderReplacementFallbackBuffer +T:System.Text.Encoder +T:System.Text.EncoderExceptionFallback +T:System.Text.EncoderExceptionFallbackBuffer +T:System.Text.EncoderFallback +T:System.Text.EncoderFallbackBuffer +T:System.Text.EncoderFallbackException +T:System.Text.EncoderReplacementFallback +T:System.Text.EncoderReplacementFallbackBuffer +T:System.Text.Encoding +T:System.Text.EncodingInfo +T:System.Text.EncodingProvider +T:System.Text.NormalizationForm +T:System.Text.Rune +T:System.Text.StringBuilder +T:System.Text.StringBuilder.AppendInterpolatedStringHandler +T:System.Text.StringBuilder.ChunkEnumerator +T:System.Text.StringRuneEnumerator +T:System.Text.Unicode.Utf8 +T:System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler +T:System.Threading.CancellationToken +T:System.Threading.Tasks.ConcurrentExclusiveSchedulerPair +T:System.Threading.Tasks.ConfigureAwaitOptions +T:System.Threading.Tasks.Sources.IValueTaskSource +T:System.Threading.Tasks.Sources.IValueTaskSource`1 +T:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1 +T:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags +T:System.Threading.Tasks.Sources.ValueTaskSourceStatus +T:System.Threading.Tasks.Task +T:System.Threading.Tasks.Task`1 +T:System.Threading.Tasks.TaskAsyncEnumerableExtensions +T:System.Threading.Tasks.TaskCanceledException +T:System.Threading.Tasks.TaskCompletionSource +T:System.Threading.Tasks.TaskCompletionSource`1 +T:System.Threading.Tasks.TaskContinuationOptions +T:System.Threading.Tasks.TaskCreationOptions +T:System.Threading.Tasks.TaskExtensions +T:System.Threading.Tasks.TaskSchedulerException +T:System.Threading.Tasks.TaskStatus +T:System.Threading.Tasks.TaskToAsyncResult +T:System.Threading.Tasks.UnobservedTaskExceptionEventArgs +T:System.Threading.Tasks.ValueTask +T:System.Threading.Tasks.ValueTask`1 +T:System.TimeOnly +T:System.TimeoutException +T:System.TimeProvider +T:System.TimeSpan +T:System.TimeZone +T:System.TimeZoneInfo +T:System.TimeZoneInfo.AdjustmentRule +T:System.TimeZoneInfo.TransitionTime +T:System.TimeZoneNotFoundException +T:System.Tuple +T:System.Tuple`1 +T:System.Tuple`2 +T:System.Tuple`3 +T:System.Tuple`4 +T:System.Tuple`5 +T:System.Tuple`6 +T:System.Tuple`7 +T:System.Tuple`8 +T:System.TupleExtensions +T:System.Type +T:System.TypeAccessException +T:System.TypeCode +T:System.TypedReference +T:System.TypeInitializationException +T:System.TypeLoadException +T:System.TypeUnloadedException +T:System.UInt128 +T:System.UInt16 +T:System.UInt32 +T:System.UInt64 +T:System.UIntPtr +T:System.UnauthorizedAccessException +T:System.UnhandledExceptionEventArgs +T:System.UnhandledExceptionEventHandler +T:System.Uri +T:System.UriBuilder +T:System.UriComponents +T:System.UriCreationOptions +T:System.UriFormat +T:System.UriFormatException +T:System.UriHostNameType +T:System.UriKind +T:System.UriParser +T:System.UriPartial +T:System.ValueTuple +T:System.ValueTuple`1 +T:System.ValueTuple`2 +T:System.ValueTuple`3 +T:System.ValueTuple`4 +T:System.ValueTuple`5 +T:System.ValueTuple`6 +T:System.ValueTuple`7 +T:System.ValueTuple`8 +T:System.ValueType +T:System.Version +T:System.Void +T:System.WeakReference +T:System.WeakReference`1 \ No newline at end of file diff --git a/src/Tools/SemanticSearch/ReferenceAssemblies/SemanticSearch.ReferenceAssemblies.csproj b/src/Tools/SemanticSearch/ReferenceAssemblies/SemanticSearch.ReferenceAssemblies.csproj index 12f985c4d121b..ab5bd6ea50f71 100644 --- a/src/Tools/SemanticSearch/ReferenceAssemblies/SemanticSearch.ReferenceAssemblies.csproj +++ b/src/Tools/SemanticSearch/ReferenceAssemblies/SemanticSearch.ReferenceAssemblies.csproj @@ -6,6 +6,7 @@ <_BuildTaskTfm Condition="'$(MSBuildRuntimeType)' != 'Core'">net472 <_BuildTaskTfm Condition="'$(MSBuildRuntimeType)' == 'Core'">$(NetRoslyn) <_BuildTaskAssemblyFile>$(ArtifactsBinDir)SemanticSearch.BuildTask\$(Configuration)\$(_BuildTaskTfm)\SemanticSearch.BuildTask.dll + <_ApisDir>$(MSBuildThisFileDirectory)Apis\ @@ -19,6 +20,7 @@ +